mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
Move Object format code to lib/BinaryFormat.
This creates a new library called BinaryFormat that has all of the headers from llvm/Support containing structure and layout definitions for various types of binary formats like dwarf, coff, elf, etc as well as the code for identifying a file from its magic. Differential Revision: https://reviews.llvm.org/D33843 llvm-svn: 304864
This commit is contained in:
parent
31c82f6b25
commit
c5632126fc
@ -49,7 +49,7 @@
|
|||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "llvm/ADT/STLExtras.h"
|
#include "llvm/ADT/STLExtras.h"
|
||||||
#include "llvm/IR/Verifier.h"
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/ExecutionEngine/MCJIT.h"
|
#include "llvm/ExecutionEngine/MCJIT.h"
|
||||||
#include "llvm/ExecutionEngine/SectionMemoryManager.h"
|
#include "llvm/ExecutionEngine/SectionMemoryManager.h"
|
||||||
#include "llvm/IR/DataLayout.h"
|
#include "llvm/IR/DataLayout.h"
|
||||||
@ -59,7 +59,7 @@
|
|||||||
#include "llvm/IR/LLVMContext.h"
|
#include "llvm/IR/LLVMContext.h"
|
||||||
#include "llvm/IR/LegacyPassManager.h"
|
#include "llvm/IR/LegacyPassManager.h"
|
||||||
#include "llvm/IR/Module.h"
|
#include "llvm/IR/Module.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
#include "llvm/IR/Verifier.h"
|
||||||
#include "llvm/Support/TargetSelect.h"
|
#include "llvm/Support/TargetSelect.h"
|
||||||
#include "llvm/Target/TargetOptions.h"
|
#include "llvm/Target/TargetOptions.h"
|
||||||
#include "llvm/Transforms/Scalar.h"
|
#include "llvm/Transforms/Scalar.h"
|
||||||
|
713
include/llvm/BinaryFormat/COFF.h
Normal file
713
include/llvm/BinaryFormat/COFF.h
Normal file
@ -0,0 +1,713 @@
|
|||||||
|
//===-- llvm/BinaryFormat/COFF.h --------------------------------*- C++ -*-===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is distributed under the University of Illinois Open Source
|
||||||
|
// License. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// This file contains an definitions used in Windows COFF Files.
|
||||||
|
//
|
||||||
|
// Structures and enums defined within this file where created using
|
||||||
|
// information from Microsoft's publicly available PE/COFF format document:
|
||||||
|
//
|
||||||
|
// Microsoft Portable Executable and Common Object File Format Specification
|
||||||
|
// Revision 8.1 - February 15, 2008
|
||||||
|
//
|
||||||
|
// As of 5/2/2010, hosted by Microsoft at:
|
||||||
|
// http://www.microsoft.com/whdc/system/platform/firmware/pecoff.mspx
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
#ifndef LLVM_BINARYFORMAT_COFF_H
|
||||||
|
#define LLVM_BINARYFORMAT_COFF_H
|
||||||
|
|
||||||
|
#include "llvm/Support/DataTypes.h"
|
||||||
|
#include <cassert>
|
||||||
|
#include <cstring>
|
||||||
|
|
||||||
|
namespace llvm {
|
||||||
|
namespace COFF {
|
||||||
|
|
||||||
|
// The maximum number of sections that a COFF object can have (inclusive).
|
||||||
|
const int32_t MaxNumberOfSections16 = 65279;
|
||||||
|
|
||||||
|
// The PE signature bytes that follows the DOS stub header.
|
||||||
|
static const char PEMagic[] = {'P', 'E', '\0', '\0'};
|
||||||
|
|
||||||
|
static const char BigObjMagic[] = {
|
||||||
|
'\xc7', '\xa1', '\xba', '\xd1', '\xee', '\xba', '\xa9', '\x4b',
|
||||||
|
'\xaf', '\x20', '\xfa', '\xf6', '\x6a', '\xa4', '\xdc', '\xb8',
|
||||||
|
};
|
||||||
|
|
||||||
|
static const char ClGlObjMagic[] = {
|
||||||
|
'\x38', '\xfe', '\xb3', '\x0c', '\xa5', '\xd9', '\xab', '\x4d',
|
||||||
|
'\xac', '\x9b', '\xd6', '\xb6', '\x22', '\x26', '\x53', '\xc2',
|
||||||
|
};
|
||||||
|
|
||||||
|
// Sizes in bytes of various things in the COFF format.
|
||||||
|
enum {
|
||||||
|
Header16Size = 20,
|
||||||
|
Header32Size = 56,
|
||||||
|
NameSize = 8,
|
||||||
|
Symbol16Size = 18,
|
||||||
|
Symbol32Size = 20,
|
||||||
|
SectionSize = 40,
|
||||||
|
RelocationSize = 10
|
||||||
|
};
|
||||||
|
|
||||||
|
struct header {
|
||||||
|
uint16_t Machine;
|
||||||
|
int32_t NumberOfSections;
|
||||||
|
uint32_t TimeDateStamp;
|
||||||
|
uint32_t PointerToSymbolTable;
|
||||||
|
uint32_t NumberOfSymbols;
|
||||||
|
uint16_t SizeOfOptionalHeader;
|
||||||
|
uint16_t Characteristics;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct BigObjHeader {
|
||||||
|
enum : uint16_t { MinBigObjectVersion = 2 };
|
||||||
|
|
||||||
|
uint16_t Sig1; ///< Must be IMAGE_FILE_MACHINE_UNKNOWN (0).
|
||||||
|
uint16_t Sig2; ///< Must be 0xFFFF.
|
||||||
|
uint16_t Version;
|
||||||
|
uint16_t Machine;
|
||||||
|
uint32_t TimeDateStamp;
|
||||||
|
uint8_t UUID[16];
|
||||||
|
uint32_t unused1;
|
||||||
|
uint32_t unused2;
|
||||||
|
uint32_t unused3;
|
||||||
|
uint32_t unused4;
|
||||||
|
uint32_t NumberOfSections;
|
||||||
|
uint32_t PointerToSymbolTable;
|
||||||
|
uint32_t NumberOfSymbols;
|
||||||
|
};
|
||||||
|
|
||||||
|
enum MachineTypes {
|
||||||
|
MT_Invalid = 0xffff,
|
||||||
|
|
||||||
|
IMAGE_FILE_MACHINE_UNKNOWN = 0x0,
|
||||||
|
IMAGE_FILE_MACHINE_AM33 = 0x13,
|
||||||
|
IMAGE_FILE_MACHINE_AMD64 = 0x8664,
|
||||||
|
IMAGE_FILE_MACHINE_ARM = 0x1C0,
|
||||||
|
IMAGE_FILE_MACHINE_ARMNT = 0x1C4,
|
||||||
|
IMAGE_FILE_MACHINE_ARM64 = 0xAA64,
|
||||||
|
IMAGE_FILE_MACHINE_EBC = 0xEBC,
|
||||||
|
IMAGE_FILE_MACHINE_I386 = 0x14C,
|
||||||
|
IMAGE_FILE_MACHINE_IA64 = 0x200,
|
||||||
|
IMAGE_FILE_MACHINE_M32R = 0x9041,
|
||||||
|
IMAGE_FILE_MACHINE_MIPS16 = 0x266,
|
||||||
|
IMAGE_FILE_MACHINE_MIPSFPU = 0x366,
|
||||||
|
IMAGE_FILE_MACHINE_MIPSFPU16 = 0x466,
|
||||||
|
IMAGE_FILE_MACHINE_POWERPC = 0x1F0,
|
||||||
|
IMAGE_FILE_MACHINE_POWERPCFP = 0x1F1,
|
||||||
|
IMAGE_FILE_MACHINE_R4000 = 0x166,
|
||||||
|
IMAGE_FILE_MACHINE_SH3 = 0x1A2,
|
||||||
|
IMAGE_FILE_MACHINE_SH3DSP = 0x1A3,
|
||||||
|
IMAGE_FILE_MACHINE_SH4 = 0x1A6,
|
||||||
|
IMAGE_FILE_MACHINE_SH5 = 0x1A8,
|
||||||
|
IMAGE_FILE_MACHINE_THUMB = 0x1C2,
|
||||||
|
IMAGE_FILE_MACHINE_WCEMIPSV2 = 0x169
|
||||||
|
};
|
||||||
|
|
||||||
|
enum Characteristics {
|
||||||
|
C_Invalid = 0,
|
||||||
|
|
||||||
|
/// The file does not contain base relocations and must be loaded at its
|
||||||
|
/// preferred base. If this cannot be done, the loader will error.
|
||||||
|
IMAGE_FILE_RELOCS_STRIPPED = 0x0001,
|
||||||
|
/// The file is valid and can be run.
|
||||||
|
IMAGE_FILE_EXECUTABLE_IMAGE = 0x0002,
|
||||||
|
/// COFF line numbers have been stripped. This is deprecated and should be
|
||||||
|
/// 0.
|
||||||
|
IMAGE_FILE_LINE_NUMS_STRIPPED = 0x0004,
|
||||||
|
/// COFF symbol table entries for local symbols have been removed. This is
|
||||||
|
/// deprecated and should be 0.
|
||||||
|
IMAGE_FILE_LOCAL_SYMS_STRIPPED = 0x0008,
|
||||||
|
/// Aggressively trim working set. This is deprecated and must be 0.
|
||||||
|
IMAGE_FILE_AGGRESSIVE_WS_TRIM = 0x0010,
|
||||||
|
/// Image can handle > 2GiB addresses.
|
||||||
|
IMAGE_FILE_LARGE_ADDRESS_AWARE = 0x0020,
|
||||||
|
/// Little endian: the LSB precedes the MSB in memory. This is deprecated
|
||||||
|
/// and should be 0.
|
||||||
|
IMAGE_FILE_BYTES_REVERSED_LO = 0x0080,
|
||||||
|
/// Machine is based on a 32bit word architecture.
|
||||||
|
IMAGE_FILE_32BIT_MACHINE = 0x0100,
|
||||||
|
/// Debugging info has been removed.
|
||||||
|
IMAGE_FILE_DEBUG_STRIPPED = 0x0200,
|
||||||
|
/// If the image is on removable media, fully load it and copy it to swap.
|
||||||
|
IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP = 0x0400,
|
||||||
|
/// If the image is on network media, fully load it and copy it to swap.
|
||||||
|
IMAGE_FILE_NET_RUN_FROM_SWAP = 0x0800,
|
||||||
|
/// The image file is a system file, not a user program.
|
||||||
|
IMAGE_FILE_SYSTEM = 0x1000,
|
||||||
|
/// The image file is a DLL.
|
||||||
|
IMAGE_FILE_DLL = 0x2000,
|
||||||
|
/// This file should only be run on a uniprocessor machine.
|
||||||
|
IMAGE_FILE_UP_SYSTEM_ONLY = 0x4000,
|
||||||
|
/// Big endian: the MSB precedes the LSB in memory. This is deprecated
|
||||||
|
/// and should be 0.
|
||||||
|
IMAGE_FILE_BYTES_REVERSED_HI = 0x8000
|
||||||
|
};
|
||||||
|
|
||||||
|
enum ResourceTypeID {
|
||||||
|
RID_Cursor = 1,
|
||||||
|
RID_Bitmap = 2,
|
||||||
|
RID_Icon = 3,
|
||||||
|
RID_Menu = 4,
|
||||||
|
RID_Dialog = 5,
|
||||||
|
RID_String = 6,
|
||||||
|
RID_FontDir = 7,
|
||||||
|
RID_Font = 8,
|
||||||
|
RID_Accelerator = 9,
|
||||||
|
RID_RCData = 10,
|
||||||
|
RID_MessageTable = 11,
|
||||||
|
RID_Group_Cursor = 12,
|
||||||
|
RID_Group_Icon = 14,
|
||||||
|
RID_Version = 16,
|
||||||
|
RID_DLGInclude = 17,
|
||||||
|
RID_PlugPlay = 19,
|
||||||
|
RID_VXD = 20,
|
||||||
|
RID_AniCursor = 21,
|
||||||
|
RID_AniIcon = 22,
|
||||||
|
RID_HTML = 23,
|
||||||
|
RID_Manifest = 24,
|
||||||
|
};
|
||||||
|
|
||||||
|
struct symbol {
|
||||||
|
char Name[NameSize];
|
||||||
|
uint32_t Value;
|
||||||
|
int32_t SectionNumber;
|
||||||
|
uint16_t Type;
|
||||||
|
uint8_t StorageClass;
|
||||||
|
uint8_t NumberOfAuxSymbols;
|
||||||
|
};
|
||||||
|
|
||||||
|
enum SymbolSectionNumber : int32_t {
|
||||||
|
IMAGE_SYM_DEBUG = -2,
|
||||||
|
IMAGE_SYM_ABSOLUTE = -1,
|
||||||
|
IMAGE_SYM_UNDEFINED = 0
|
||||||
|
};
|
||||||
|
|
||||||
|
/// Storage class tells where and what the symbol represents
|
||||||
|
enum SymbolStorageClass {
|
||||||
|
SSC_Invalid = 0xff,
|
||||||
|
|
||||||
|
IMAGE_SYM_CLASS_END_OF_FUNCTION = -1, ///< Physical end of function
|
||||||
|
IMAGE_SYM_CLASS_NULL = 0, ///< No symbol
|
||||||
|
IMAGE_SYM_CLASS_AUTOMATIC = 1, ///< Stack variable
|
||||||
|
IMAGE_SYM_CLASS_EXTERNAL = 2, ///< External symbol
|
||||||
|
IMAGE_SYM_CLASS_STATIC = 3, ///< Static
|
||||||
|
IMAGE_SYM_CLASS_REGISTER = 4, ///< Register variable
|
||||||
|
IMAGE_SYM_CLASS_EXTERNAL_DEF = 5, ///< External definition
|
||||||
|
IMAGE_SYM_CLASS_LABEL = 6, ///< Label
|
||||||
|
IMAGE_SYM_CLASS_UNDEFINED_LABEL = 7, ///< Undefined label
|
||||||
|
IMAGE_SYM_CLASS_MEMBER_OF_STRUCT = 8, ///< Member of structure
|
||||||
|
IMAGE_SYM_CLASS_ARGUMENT = 9, ///< Function argument
|
||||||
|
IMAGE_SYM_CLASS_STRUCT_TAG = 10, ///< Structure tag
|
||||||
|
IMAGE_SYM_CLASS_MEMBER_OF_UNION = 11, ///< Member of union
|
||||||
|
IMAGE_SYM_CLASS_UNION_TAG = 12, ///< Union tag
|
||||||
|
IMAGE_SYM_CLASS_TYPE_DEFINITION = 13, ///< Type definition
|
||||||
|
IMAGE_SYM_CLASS_UNDEFINED_STATIC = 14, ///< Undefined static
|
||||||
|
IMAGE_SYM_CLASS_ENUM_TAG = 15, ///< Enumeration tag
|
||||||
|
IMAGE_SYM_CLASS_MEMBER_OF_ENUM = 16, ///< Member of enumeration
|
||||||
|
IMAGE_SYM_CLASS_REGISTER_PARAM = 17, ///< Register parameter
|
||||||
|
IMAGE_SYM_CLASS_BIT_FIELD = 18, ///< Bit field
|
||||||
|
/// ".bb" or ".eb" - beginning or end of block
|
||||||
|
IMAGE_SYM_CLASS_BLOCK = 100,
|
||||||
|
/// ".bf" or ".ef" - beginning or end of function
|
||||||
|
IMAGE_SYM_CLASS_FUNCTION = 101,
|
||||||
|
IMAGE_SYM_CLASS_END_OF_STRUCT = 102, ///< End of structure
|
||||||
|
IMAGE_SYM_CLASS_FILE = 103, ///< File name
|
||||||
|
/// Line number, reformatted as symbol
|
||||||
|
IMAGE_SYM_CLASS_SECTION = 104,
|
||||||
|
IMAGE_SYM_CLASS_WEAK_EXTERNAL = 105, ///< Duplicate tag
|
||||||
|
/// External symbol in dmert public lib
|
||||||
|
IMAGE_SYM_CLASS_CLR_TOKEN = 107
|
||||||
|
};
|
||||||
|
|
||||||
|
enum SymbolBaseType {
|
||||||
|
IMAGE_SYM_TYPE_NULL = 0, ///< No type information or unknown base type.
|
||||||
|
IMAGE_SYM_TYPE_VOID = 1, ///< Used with void pointers and functions.
|
||||||
|
IMAGE_SYM_TYPE_CHAR = 2, ///< A character (signed byte).
|
||||||
|
IMAGE_SYM_TYPE_SHORT = 3, ///< A 2-byte signed integer.
|
||||||
|
IMAGE_SYM_TYPE_INT = 4, ///< A natural integer type on the target.
|
||||||
|
IMAGE_SYM_TYPE_LONG = 5, ///< A 4-byte signed integer.
|
||||||
|
IMAGE_SYM_TYPE_FLOAT = 6, ///< A 4-byte floating-point number.
|
||||||
|
IMAGE_SYM_TYPE_DOUBLE = 7, ///< An 8-byte floating-point number.
|
||||||
|
IMAGE_SYM_TYPE_STRUCT = 8, ///< A structure.
|
||||||
|
IMAGE_SYM_TYPE_UNION = 9, ///< An union.
|
||||||
|
IMAGE_SYM_TYPE_ENUM = 10, ///< An enumerated type.
|
||||||
|
IMAGE_SYM_TYPE_MOE = 11, ///< A member of enumeration (a specific value).
|
||||||
|
IMAGE_SYM_TYPE_BYTE = 12, ///< A byte; unsigned 1-byte integer.
|
||||||
|
IMAGE_SYM_TYPE_WORD = 13, ///< A word; unsigned 2-byte integer.
|
||||||
|
IMAGE_SYM_TYPE_UINT = 14, ///< An unsigned integer of natural size.
|
||||||
|
IMAGE_SYM_TYPE_DWORD = 15 ///< An unsigned 4-byte integer.
|
||||||
|
};
|
||||||
|
|
||||||
|
enum SymbolComplexType {
|
||||||
|
IMAGE_SYM_DTYPE_NULL = 0, ///< No complex type; simple scalar variable.
|
||||||
|
IMAGE_SYM_DTYPE_POINTER = 1, ///< A pointer to base type.
|
||||||
|
IMAGE_SYM_DTYPE_FUNCTION = 2, ///< A function that returns a base type.
|
||||||
|
IMAGE_SYM_DTYPE_ARRAY = 3, ///< An array of base type.
|
||||||
|
|
||||||
|
/// Type is formed as (base + (derived << SCT_COMPLEX_TYPE_SHIFT))
|
||||||
|
SCT_COMPLEX_TYPE_SHIFT = 4
|
||||||
|
};
|
||||||
|
|
||||||
|
enum AuxSymbolType { IMAGE_AUX_SYMBOL_TYPE_TOKEN_DEF = 1 };
|
||||||
|
|
||||||
|
struct section {
|
||||||
|
char Name[NameSize];
|
||||||
|
uint32_t VirtualSize;
|
||||||
|
uint32_t VirtualAddress;
|
||||||
|
uint32_t SizeOfRawData;
|
||||||
|
uint32_t PointerToRawData;
|
||||||
|
uint32_t PointerToRelocations;
|
||||||
|
uint32_t PointerToLineNumbers;
|
||||||
|
uint16_t NumberOfRelocations;
|
||||||
|
uint16_t NumberOfLineNumbers;
|
||||||
|
uint32_t Characteristics;
|
||||||
|
};
|
||||||
|
|
||||||
|
enum SectionCharacteristics : uint32_t {
|
||||||
|
SC_Invalid = 0xffffffff,
|
||||||
|
|
||||||
|
IMAGE_SCN_TYPE_NOLOAD = 0x00000002,
|
||||||
|
IMAGE_SCN_TYPE_NO_PAD = 0x00000008,
|
||||||
|
IMAGE_SCN_CNT_CODE = 0x00000020,
|
||||||
|
IMAGE_SCN_CNT_INITIALIZED_DATA = 0x00000040,
|
||||||
|
IMAGE_SCN_CNT_UNINITIALIZED_DATA = 0x00000080,
|
||||||
|
IMAGE_SCN_LNK_OTHER = 0x00000100,
|
||||||
|
IMAGE_SCN_LNK_INFO = 0x00000200,
|
||||||
|
IMAGE_SCN_LNK_REMOVE = 0x00000800,
|
||||||
|
IMAGE_SCN_LNK_COMDAT = 0x00001000,
|
||||||
|
IMAGE_SCN_GPREL = 0x00008000,
|
||||||
|
IMAGE_SCN_MEM_PURGEABLE = 0x00020000,
|
||||||
|
IMAGE_SCN_MEM_16BIT = 0x00020000,
|
||||||
|
IMAGE_SCN_MEM_LOCKED = 0x00040000,
|
||||||
|
IMAGE_SCN_MEM_PRELOAD = 0x00080000,
|
||||||
|
IMAGE_SCN_ALIGN_1BYTES = 0x00100000,
|
||||||
|
IMAGE_SCN_ALIGN_2BYTES = 0x00200000,
|
||||||
|
IMAGE_SCN_ALIGN_4BYTES = 0x00300000,
|
||||||
|
IMAGE_SCN_ALIGN_8BYTES = 0x00400000,
|
||||||
|
IMAGE_SCN_ALIGN_16BYTES = 0x00500000,
|
||||||
|
IMAGE_SCN_ALIGN_32BYTES = 0x00600000,
|
||||||
|
IMAGE_SCN_ALIGN_64BYTES = 0x00700000,
|
||||||
|
IMAGE_SCN_ALIGN_128BYTES = 0x00800000,
|
||||||
|
IMAGE_SCN_ALIGN_256BYTES = 0x00900000,
|
||||||
|
IMAGE_SCN_ALIGN_512BYTES = 0x00A00000,
|
||||||
|
IMAGE_SCN_ALIGN_1024BYTES = 0x00B00000,
|
||||||
|
IMAGE_SCN_ALIGN_2048BYTES = 0x00C00000,
|
||||||
|
IMAGE_SCN_ALIGN_4096BYTES = 0x00D00000,
|
||||||
|
IMAGE_SCN_ALIGN_8192BYTES = 0x00E00000,
|
||||||
|
IMAGE_SCN_LNK_NRELOC_OVFL = 0x01000000,
|
||||||
|
IMAGE_SCN_MEM_DISCARDABLE = 0x02000000,
|
||||||
|
IMAGE_SCN_MEM_NOT_CACHED = 0x04000000,
|
||||||
|
IMAGE_SCN_MEM_NOT_PAGED = 0x08000000,
|
||||||
|
IMAGE_SCN_MEM_SHARED = 0x10000000,
|
||||||
|
IMAGE_SCN_MEM_EXECUTE = 0x20000000,
|
||||||
|
IMAGE_SCN_MEM_READ = 0x40000000,
|
||||||
|
IMAGE_SCN_MEM_WRITE = 0x80000000
|
||||||
|
};
|
||||||
|
|
||||||
|
struct relocation {
|
||||||
|
uint32_t VirtualAddress;
|
||||||
|
uint32_t SymbolTableIndex;
|
||||||
|
uint16_t Type;
|
||||||
|
};
|
||||||
|
|
||||||
|
enum RelocationTypeI386 {
|
||||||
|
IMAGE_REL_I386_ABSOLUTE = 0x0000,
|
||||||
|
IMAGE_REL_I386_DIR16 = 0x0001,
|
||||||
|
IMAGE_REL_I386_REL16 = 0x0002,
|
||||||
|
IMAGE_REL_I386_DIR32 = 0x0006,
|
||||||
|
IMAGE_REL_I386_DIR32NB = 0x0007,
|
||||||
|
IMAGE_REL_I386_SEG12 = 0x0009,
|
||||||
|
IMAGE_REL_I386_SECTION = 0x000A,
|
||||||
|
IMAGE_REL_I386_SECREL = 0x000B,
|
||||||
|
IMAGE_REL_I386_TOKEN = 0x000C,
|
||||||
|
IMAGE_REL_I386_SECREL7 = 0x000D,
|
||||||
|
IMAGE_REL_I386_REL32 = 0x0014
|
||||||
|
};
|
||||||
|
|
||||||
|
enum RelocationTypeAMD64 {
|
||||||
|
IMAGE_REL_AMD64_ABSOLUTE = 0x0000,
|
||||||
|
IMAGE_REL_AMD64_ADDR64 = 0x0001,
|
||||||
|
IMAGE_REL_AMD64_ADDR32 = 0x0002,
|
||||||
|
IMAGE_REL_AMD64_ADDR32NB = 0x0003,
|
||||||
|
IMAGE_REL_AMD64_REL32 = 0x0004,
|
||||||
|
IMAGE_REL_AMD64_REL32_1 = 0x0005,
|
||||||
|
IMAGE_REL_AMD64_REL32_2 = 0x0006,
|
||||||
|
IMAGE_REL_AMD64_REL32_3 = 0x0007,
|
||||||
|
IMAGE_REL_AMD64_REL32_4 = 0x0008,
|
||||||
|
IMAGE_REL_AMD64_REL32_5 = 0x0009,
|
||||||
|
IMAGE_REL_AMD64_SECTION = 0x000A,
|
||||||
|
IMAGE_REL_AMD64_SECREL = 0x000B,
|
||||||
|
IMAGE_REL_AMD64_SECREL7 = 0x000C,
|
||||||
|
IMAGE_REL_AMD64_TOKEN = 0x000D,
|
||||||
|
IMAGE_REL_AMD64_SREL32 = 0x000E,
|
||||||
|
IMAGE_REL_AMD64_PAIR = 0x000F,
|
||||||
|
IMAGE_REL_AMD64_SSPAN32 = 0x0010
|
||||||
|
};
|
||||||
|
|
||||||
|
enum RelocationTypesARM {
|
||||||
|
IMAGE_REL_ARM_ABSOLUTE = 0x0000,
|
||||||
|
IMAGE_REL_ARM_ADDR32 = 0x0001,
|
||||||
|
IMAGE_REL_ARM_ADDR32NB = 0x0002,
|
||||||
|
IMAGE_REL_ARM_BRANCH24 = 0x0003,
|
||||||
|
IMAGE_REL_ARM_BRANCH11 = 0x0004,
|
||||||
|
IMAGE_REL_ARM_TOKEN = 0x0005,
|
||||||
|
IMAGE_REL_ARM_BLX24 = 0x0008,
|
||||||
|
IMAGE_REL_ARM_BLX11 = 0x0009,
|
||||||
|
IMAGE_REL_ARM_SECTION = 0x000E,
|
||||||
|
IMAGE_REL_ARM_SECREL = 0x000F,
|
||||||
|
IMAGE_REL_ARM_MOV32A = 0x0010,
|
||||||
|
IMAGE_REL_ARM_MOV32T = 0x0011,
|
||||||
|
IMAGE_REL_ARM_BRANCH20T = 0x0012,
|
||||||
|
IMAGE_REL_ARM_BRANCH24T = 0x0014,
|
||||||
|
IMAGE_REL_ARM_BLX23T = 0x0015
|
||||||
|
};
|
||||||
|
|
||||||
|
enum RelocationTypesARM64 {
|
||||||
|
IMAGE_REL_ARM64_ABSOLUTE = 0x0000,
|
||||||
|
IMAGE_REL_ARM64_ADDR32 = 0x0001,
|
||||||
|
IMAGE_REL_ARM64_ADDR32NB = 0x0002,
|
||||||
|
IMAGE_REL_ARM64_BRANCH26 = 0x0003,
|
||||||
|
IMAGE_REL_ARM64_PAGEBASE_REL2 = 0x0004,
|
||||||
|
IMAGE_REL_ARM64_REL21 = 0x0005,
|
||||||
|
IMAGE_REL_ARM64_PAGEOFFSET_12A = 0x0006,
|
||||||
|
IMAGE_REL_ARM64_PAGEOFFSET_12L = 0x0007,
|
||||||
|
IMAGE_REL_ARM64_SECREL = 0x0008,
|
||||||
|
IMAGE_REL_ARM64_SECREL_LOW12A = 0x0009,
|
||||||
|
IMAGE_REL_ARM64_SECREL_HIGH12A = 0x000A,
|
||||||
|
IMAGE_REL_ARM64_SECREL_LOW12L = 0x000B,
|
||||||
|
IMAGE_REL_ARM64_TOKEN = 0x000C,
|
||||||
|
IMAGE_REL_ARM64_SECTION = 0x000D,
|
||||||
|
IMAGE_REL_ARM64_ADDR64 = 0x000E,
|
||||||
|
IMAGE_REL_ARM64_BRANCH19 = 0x000F,
|
||||||
|
IMAGE_REL_ARM64_BRANCH14 = 0x0010,
|
||||||
|
};
|
||||||
|
|
||||||
|
enum COMDATType {
|
||||||
|
IMAGE_COMDAT_SELECT_NODUPLICATES = 1,
|
||||||
|
IMAGE_COMDAT_SELECT_ANY,
|
||||||
|
IMAGE_COMDAT_SELECT_SAME_SIZE,
|
||||||
|
IMAGE_COMDAT_SELECT_EXACT_MATCH,
|
||||||
|
IMAGE_COMDAT_SELECT_ASSOCIATIVE,
|
||||||
|
IMAGE_COMDAT_SELECT_LARGEST,
|
||||||
|
IMAGE_COMDAT_SELECT_NEWEST
|
||||||
|
};
|
||||||
|
|
||||||
|
// Auxiliary Symbol Formats
|
||||||
|
struct AuxiliaryFunctionDefinition {
|
||||||
|
uint32_t TagIndex;
|
||||||
|
uint32_t TotalSize;
|
||||||
|
uint32_t PointerToLinenumber;
|
||||||
|
uint32_t PointerToNextFunction;
|
||||||
|
char unused[2];
|
||||||
|
};
|
||||||
|
|
||||||
|
struct AuxiliarybfAndefSymbol {
|
||||||
|
uint8_t unused1[4];
|
||||||
|
uint16_t Linenumber;
|
||||||
|
uint8_t unused2[6];
|
||||||
|
uint32_t PointerToNextFunction;
|
||||||
|
uint8_t unused3[2];
|
||||||
|
};
|
||||||
|
|
||||||
|
struct AuxiliaryWeakExternal {
|
||||||
|
uint32_t TagIndex;
|
||||||
|
uint32_t Characteristics;
|
||||||
|
uint8_t unused[10];
|
||||||
|
};
|
||||||
|
|
||||||
|
enum WeakExternalCharacteristics {
|
||||||
|
IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY = 1,
|
||||||
|
IMAGE_WEAK_EXTERN_SEARCH_LIBRARY = 2,
|
||||||
|
IMAGE_WEAK_EXTERN_SEARCH_ALIAS = 3
|
||||||
|
};
|
||||||
|
|
||||||
|
struct AuxiliarySectionDefinition {
|
||||||
|
uint32_t Length;
|
||||||
|
uint16_t NumberOfRelocations;
|
||||||
|
uint16_t NumberOfLinenumbers;
|
||||||
|
uint32_t CheckSum;
|
||||||
|
uint32_t Number;
|
||||||
|
uint8_t Selection;
|
||||||
|
char unused;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct AuxiliaryCLRToken {
|
||||||
|
uint8_t AuxType;
|
||||||
|
uint8_t unused1;
|
||||||
|
uint32_t SymbolTableIndex;
|
||||||
|
char unused2[12];
|
||||||
|
};
|
||||||
|
|
||||||
|
union Auxiliary {
|
||||||
|
AuxiliaryFunctionDefinition FunctionDefinition;
|
||||||
|
AuxiliarybfAndefSymbol bfAndefSymbol;
|
||||||
|
AuxiliaryWeakExternal WeakExternal;
|
||||||
|
AuxiliarySectionDefinition SectionDefinition;
|
||||||
|
};
|
||||||
|
|
||||||
|
/// @brief The Import Directory Table.
|
||||||
|
///
|
||||||
|
/// There is a single array of these and one entry per imported DLL.
|
||||||
|
struct ImportDirectoryTableEntry {
|
||||||
|
uint32_t ImportLookupTableRVA;
|
||||||
|
uint32_t TimeDateStamp;
|
||||||
|
uint32_t ForwarderChain;
|
||||||
|
uint32_t NameRVA;
|
||||||
|
uint32_t ImportAddressTableRVA;
|
||||||
|
};
|
||||||
|
|
||||||
|
/// @brief The PE32 Import Lookup Table.
|
||||||
|
///
|
||||||
|
/// There is an array of these for each imported DLL. It represents either
|
||||||
|
/// the ordinal to import from the target DLL, or a name to lookup and import
|
||||||
|
/// from the target DLL.
|
||||||
|
///
|
||||||
|
/// This also happens to be the same format used by the Import Address Table
|
||||||
|
/// when it is initially written out to the image.
|
||||||
|
struct ImportLookupTableEntry32 {
|
||||||
|
uint32_t data;
|
||||||
|
|
||||||
|
/// @brief Is this entry specified by ordinal, or name?
|
||||||
|
bool isOrdinal() const { return data & 0x80000000; }
|
||||||
|
|
||||||
|
/// @brief Get the ordinal value of this entry. isOrdinal must be true.
|
||||||
|
uint16_t getOrdinal() const {
|
||||||
|
assert(isOrdinal() && "ILT entry is not an ordinal!");
|
||||||
|
return data & 0xFFFF;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// @brief Set the ordinal value and set isOrdinal to true.
|
||||||
|
void setOrdinal(uint16_t o) {
|
||||||
|
data = o;
|
||||||
|
data |= 0x80000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// @brief Get the Hint/Name entry RVA. isOrdinal must be false.
|
||||||
|
uint32_t getHintNameRVA() const {
|
||||||
|
assert(!isOrdinal() && "ILT entry is not a Hint/Name RVA!");
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// @brief Set the Hint/Name entry RVA and set isOrdinal to false.
|
||||||
|
void setHintNameRVA(uint32_t rva) { data = rva; }
|
||||||
|
};
|
||||||
|
|
||||||
|
/// @brief The DOS compatible header at the front of all PEs.
|
||||||
|
struct DOSHeader {
|
||||||
|
uint16_t Magic;
|
||||||
|
uint16_t UsedBytesInTheLastPage;
|
||||||
|
uint16_t FileSizeInPages;
|
||||||
|
uint16_t NumberOfRelocationItems;
|
||||||
|
uint16_t HeaderSizeInParagraphs;
|
||||||
|
uint16_t MinimumExtraParagraphs;
|
||||||
|
uint16_t MaximumExtraParagraphs;
|
||||||
|
uint16_t InitialRelativeSS;
|
||||||
|
uint16_t InitialSP;
|
||||||
|
uint16_t Checksum;
|
||||||
|
uint16_t InitialIP;
|
||||||
|
uint16_t InitialRelativeCS;
|
||||||
|
uint16_t AddressOfRelocationTable;
|
||||||
|
uint16_t OverlayNumber;
|
||||||
|
uint16_t Reserved[4];
|
||||||
|
uint16_t OEMid;
|
||||||
|
uint16_t OEMinfo;
|
||||||
|
uint16_t Reserved2[10];
|
||||||
|
uint32_t AddressOfNewExeHeader;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct PE32Header {
|
||||||
|
enum { PE32 = 0x10b, PE32_PLUS = 0x20b };
|
||||||
|
|
||||||
|
uint16_t Magic;
|
||||||
|
uint8_t MajorLinkerVersion;
|
||||||
|
uint8_t MinorLinkerVersion;
|
||||||
|
uint32_t SizeOfCode;
|
||||||
|
uint32_t SizeOfInitializedData;
|
||||||
|
uint32_t SizeOfUninitializedData;
|
||||||
|
uint32_t AddressOfEntryPoint; // RVA
|
||||||
|
uint32_t BaseOfCode; // RVA
|
||||||
|
uint32_t BaseOfData; // RVA
|
||||||
|
uint32_t ImageBase;
|
||||||
|
uint32_t SectionAlignment;
|
||||||
|
uint32_t FileAlignment;
|
||||||
|
uint16_t MajorOperatingSystemVersion;
|
||||||
|
uint16_t MinorOperatingSystemVersion;
|
||||||
|
uint16_t MajorImageVersion;
|
||||||
|
uint16_t MinorImageVersion;
|
||||||
|
uint16_t MajorSubsystemVersion;
|
||||||
|
uint16_t MinorSubsystemVersion;
|
||||||
|
uint32_t Win32VersionValue;
|
||||||
|
uint32_t SizeOfImage;
|
||||||
|
uint32_t SizeOfHeaders;
|
||||||
|
uint32_t CheckSum;
|
||||||
|
uint16_t Subsystem;
|
||||||
|
// FIXME: This should be DllCharacteristics to match the COFF spec.
|
||||||
|
uint16_t DLLCharacteristics;
|
||||||
|
uint32_t SizeOfStackReserve;
|
||||||
|
uint32_t SizeOfStackCommit;
|
||||||
|
uint32_t SizeOfHeapReserve;
|
||||||
|
uint32_t SizeOfHeapCommit;
|
||||||
|
uint32_t LoaderFlags;
|
||||||
|
// FIXME: This should be NumberOfRvaAndSizes to match the COFF spec.
|
||||||
|
uint32_t NumberOfRvaAndSize;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct DataDirectory {
|
||||||
|
uint32_t RelativeVirtualAddress;
|
||||||
|
uint32_t Size;
|
||||||
|
};
|
||||||
|
|
||||||
|
enum DataDirectoryIndex {
|
||||||
|
EXPORT_TABLE = 0,
|
||||||
|
IMPORT_TABLE,
|
||||||
|
RESOURCE_TABLE,
|
||||||
|
EXCEPTION_TABLE,
|
||||||
|
CERTIFICATE_TABLE,
|
||||||
|
BASE_RELOCATION_TABLE,
|
||||||
|
DEBUG_DIRECTORY,
|
||||||
|
ARCHITECTURE,
|
||||||
|
GLOBAL_PTR,
|
||||||
|
TLS_TABLE,
|
||||||
|
LOAD_CONFIG_TABLE,
|
||||||
|
BOUND_IMPORT,
|
||||||
|
IAT,
|
||||||
|
DELAY_IMPORT_DESCRIPTOR,
|
||||||
|
CLR_RUNTIME_HEADER,
|
||||||
|
|
||||||
|
NUM_DATA_DIRECTORIES
|
||||||
|
};
|
||||||
|
|
||||||
|
enum WindowsSubsystem {
|
||||||
|
IMAGE_SUBSYSTEM_UNKNOWN = 0, ///< An unknown subsystem.
|
||||||
|
IMAGE_SUBSYSTEM_NATIVE = 1, ///< Device drivers and native Windows processes
|
||||||
|
IMAGE_SUBSYSTEM_WINDOWS_GUI = 2, ///< The Windows GUI subsystem.
|
||||||
|
IMAGE_SUBSYSTEM_WINDOWS_CUI = 3, ///< The Windows character subsystem.
|
||||||
|
IMAGE_SUBSYSTEM_OS2_CUI = 5, ///< The OS/2 character subsytem.
|
||||||
|
IMAGE_SUBSYSTEM_POSIX_CUI = 7, ///< The POSIX character subsystem.
|
||||||
|
IMAGE_SUBSYSTEM_NATIVE_WINDOWS = 8, ///< Native Windows 9x driver.
|
||||||
|
IMAGE_SUBSYSTEM_WINDOWS_CE_GUI = 9, ///< Windows CE.
|
||||||
|
IMAGE_SUBSYSTEM_EFI_APPLICATION = 10, ///< An EFI application.
|
||||||
|
IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER = 11, ///< An EFI driver with boot
|
||||||
|
/// services.
|
||||||
|
IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER = 12, ///< An EFI driver with run-time
|
||||||
|
/// services.
|
||||||
|
IMAGE_SUBSYSTEM_EFI_ROM = 13, ///< An EFI ROM image.
|
||||||
|
IMAGE_SUBSYSTEM_XBOX = 14, ///< XBOX.
|
||||||
|
IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION = 16 ///< A BCD application.
|
||||||
|
};
|
||||||
|
|
||||||
|
enum DLLCharacteristics {
|
||||||
|
/// ASLR with 64 bit address space.
|
||||||
|
IMAGE_DLL_CHARACTERISTICS_HIGH_ENTROPY_VA = 0x0020,
|
||||||
|
/// DLL can be relocated at load time.
|
||||||
|
IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE = 0x0040,
|
||||||
|
/// Code integrity checks are enforced.
|
||||||
|
IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY = 0x0080,
|
||||||
|
///< Image is NX compatible.
|
||||||
|
IMAGE_DLL_CHARACTERISTICS_NX_COMPAT = 0x0100,
|
||||||
|
/// Isolation aware, but do not isolate the image.
|
||||||
|
IMAGE_DLL_CHARACTERISTICS_NO_ISOLATION = 0x0200,
|
||||||
|
/// Does not use structured exception handling (SEH). No SEH handler may be
|
||||||
|
/// called in this image.
|
||||||
|
IMAGE_DLL_CHARACTERISTICS_NO_SEH = 0x0400,
|
||||||
|
/// Do not bind the image.
|
||||||
|
IMAGE_DLL_CHARACTERISTICS_NO_BIND = 0x0800,
|
||||||
|
///< Image should execute in an AppContainer.
|
||||||
|
IMAGE_DLL_CHARACTERISTICS_APPCONTAINER = 0x1000,
|
||||||
|
///< A WDM driver.
|
||||||
|
IMAGE_DLL_CHARACTERISTICS_WDM_DRIVER = 0x2000,
|
||||||
|
///< Image supports Control Flow Guard.
|
||||||
|
IMAGE_DLL_CHARACTERISTICS_GUARD_CF = 0x4000,
|
||||||
|
/// Terminal Server aware.
|
||||||
|
IMAGE_DLL_CHARACTERISTICS_TERMINAL_SERVER_AWARE = 0x8000
|
||||||
|
};
|
||||||
|
|
||||||
|
enum DebugType {
|
||||||
|
IMAGE_DEBUG_TYPE_UNKNOWN = 0,
|
||||||
|
IMAGE_DEBUG_TYPE_COFF = 1,
|
||||||
|
IMAGE_DEBUG_TYPE_CODEVIEW = 2,
|
||||||
|
IMAGE_DEBUG_TYPE_FPO = 3,
|
||||||
|
IMAGE_DEBUG_TYPE_MISC = 4,
|
||||||
|
IMAGE_DEBUG_TYPE_EXCEPTION = 5,
|
||||||
|
IMAGE_DEBUG_TYPE_FIXUP = 6,
|
||||||
|
IMAGE_DEBUG_TYPE_OMAP_TO_SRC = 7,
|
||||||
|
IMAGE_DEBUG_TYPE_OMAP_FROM_SRC = 8,
|
||||||
|
IMAGE_DEBUG_TYPE_BORLAND = 9,
|
||||||
|
IMAGE_DEBUG_TYPE_RESERVED10 = 10,
|
||||||
|
IMAGE_DEBUG_TYPE_CLSID = 11,
|
||||||
|
IMAGE_DEBUG_TYPE_VC_FEATURE = 12,
|
||||||
|
IMAGE_DEBUG_TYPE_POGO = 13,
|
||||||
|
IMAGE_DEBUG_TYPE_ILTCG = 14,
|
||||||
|
IMAGE_DEBUG_TYPE_MPX = 15,
|
||||||
|
IMAGE_DEBUG_TYPE_REPRO = 16,
|
||||||
|
};
|
||||||
|
|
||||||
|
enum BaseRelocationType {
|
||||||
|
IMAGE_REL_BASED_ABSOLUTE = 0,
|
||||||
|
IMAGE_REL_BASED_HIGH = 1,
|
||||||
|
IMAGE_REL_BASED_LOW = 2,
|
||||||
|
IMAGE_REL_BASED_HIGHLOW = 3,
|
||||||
|
IMAGE_REL_BASED_HIGHADJ = 4,
|
||||||
|
IMAGE_REL_BASED_MIPS_JMPADDR = 5,
|
||||||
|
IMAGE_REL_BASED_ARM_MOV32A = 5,
|
||||||
|
IMAGE_REL_BASED_ARM_MOV32T = 7,
|
||||||
|
IMAGE_REL_BASED_MIPS_JMPADDR16 = 9,
|
||||||
|
IMAGE_REL_BASED_DIR64 = 10
|
||||||
|
};
|
||||||
|
|
||||||
|
enum ImportType { IMPORT_CODE = 0, IMPORT_DATA = 1, IMPORT_CONST = 2 };
|
||||||
|
|
||||||
|
enum ImportNameType {
|
||||||
|
/// Import is by ordinal. This indicates that the value in the Ordinal/Hint
|
||||||
|
/// field of the import header is the import's ordinal. If this constant is
|
||||||
|
/// not specified, then the Ordinal/Hint field should always be interpreted
|
||||||
|
/// as the import's hint.
|
||||||
|
IMPORT_ORDINAL = 0,
|
||||||
|
/// The import name is identical to the public symbol name
|
||||||
|
IMPORT_NAME = 1,
|
||||||
|
/// The import name is the public symbol name, but skipping the leading ?,
|
||||||
|
/// @, or optionally _.
|
||||||
|
IMPORT_NAME_NOPREFIX = 2,
|
||||||
|
/// The import name is the public symbol name, but skipping the leading ?,
|
||||||
|
/// @, or optionally _, and truncating at the first @.
|
||||||
|
IMPORT_NAME_UNDECORATE = 3
|
||||||
|
};
|
||||||
|
|
||||||
|
struct ImportHeader {
|
||||||
|
uint16_t Sig1; ///< Must be IMAGE_FILE_MACHINE_UNKNOWN (0).
|
||||||
|
uint16_t Sig2; ///< Must be 0xFFFF.
|
||||||
|
uint16_t Version;
|
||||||
|
uint16_t Machine;
|
||||||
|
uint32_t TimeDateStamp;
|
||||||
|
uint32_t SizeOfData;
|
||||||
|
uint16_t OrdinalHint;
|
||||||
|
uint16_t TypeInfo;
|
||||||
|
|
||||||
|
ImportType getType() const { return static_cast<ImportType>(TypeInfo & 0x3); }
|
||||||
|
|
||||||
|
ImportNameType getNameType() const {
|
||||||
|
return static_cast<ImportNameType>((TypeInfo & 0x1C) >> 2);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
enum CodeViewIdentifiers {
|
||||||
|
DEBUG_SECTION_MAGIC = 0x4,
|
||||||
|
};
|
||||||
|
|
||||||
|
inline bool isReservedSectionNumber(int32_t SectionNumber) {
|
||||||
|
return SectionNumber <= 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
} // End namespace COFF.
|
||||||
|
} // End namespace llvm.
|
||||||
|
|
||||||
|
#endif
|
@ -1,4 +1,4 @@
|
|||||||
//===-- llvm/Support/Dwarf.h ---Dwarf Constants------------------*- C++ -*-===//
|
//===-- llvm/BinaryFormat/Dwarf.h ---Dwarf Constants-------------*- C++ -*-===//
|
||||||
//
|
//
|
||||||
// The LLVM Compiler Infrastructure
|
// The LLVM Compiler Infrastructure
|
||||||
//
|
//
|
||||||
@ -17,8 +17,8 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#ifndef LLVM_SUPPORT_DWARF_H
|
#ifndef LLVM_BINARYFORMAT_DWARF_H
|
||||||
#define LLVM_SUPPORT_DWARF_H
|
#define LLVM_BINARYFORMAT_DWARF_H
|
||||||
|
|
||||||
#include "llvm/Support/Compiler.h"
|
#include "llvm/Support/Compiler.h"
|
||||||
#include "llvm/Support/DataTypes.h"
|
#include "llvm/Support/DataTypes.h"
|
||||||
@ -37,7 +37,7 @@ namespace dwarf {
|
|||||||
// enumeration base type.
|
// enumeration base type.
|
||||||
|
|
||||||
enum LLVMConstants : uint32_t {
|
enum LLVMConstants : uint32_t {
|
||||||
// LLVM mock tags (see also llvm/Support/Dwarf.def).
|
// LLVM mock tags (see also llvm/BinaryFormat/Dwarf.def).
|
||||||
DW_TAG_invalid = ~0U, // Tag for invalid results.
|
DW_TAG_invalid = ~0U, // Tag for invalid results.
|
||||||
DW_VIRTUALITY_invalid = ~0U, // Virtuality for invalid results.
|
DW_VIRTUALITY_invalid = ~0U, // Virtuality for invalid results.
|
||||||
DW_MACINFO_invalid = ~0U, // Macinfo type for invalid results.
|
DW_MACINFO_invalid = ~0U, // Macinfo type for invalid results.
|
||||||
@ -48,7 +48,7 @@ enum LLVMConstants : uint32_t {
|
|||||||
DW_PUBNAMES_VERSION = 2, // Section version number for .debug_pubnames.
|
DW_PUBNAMES_VERSION = 2, // Section version number for .debug_pubnames.
|
||||||
DW_ARANGES_VERSION = 2, // Section version number for .debug_aranges.
|
DW_ARANGES_VERSION = 2, // Section version number for .debug_aranges.
|
||||||
// Identifiers we use to distinguish vendor extensions.
|
// Identifiers we use to distinguish vendor extensions.
|
||||||
DWARF_VENDOR_DWARF = 0, // Defined in v2 or later of the DWARF standard.
|
DWARF_VENDOR_DWARF = 0, // Defined in v2 or later of the DWARF standard.
|
||||||
DWARF_VENDOR_APPLE = 1,
|
DWARF_VENDOR_APPLE = 1,
|
||||||
DWARF_VENDOR_BORLAND = 2,
|
DWARF_VENDOR_BORLAND = 2,
|
||||||
DWARF_VENDOR_GNU = 3,
|
DWARF_VENDOR_GNU = 3,
|
||||||
@ -64,7 +64,7 @@ const uint64_t DW64_CIE_ID = UINT64_MAX;
|
|||||||
|
|
||||||
enum Tag : uint16_t {
|
enum Tag : uint16_t {
|
||||||
#define HANDLE_DW_TAG(ID, NAME, VERSION, VENDOR) DW_TAG_##NAME = ID,
|
#define HANDLE_DW_TAG(ID, NAME, VERSION, VENDOR) DW_TAG_##NAME = ID,
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
DW_TAG_lo_user = 0x4080,
|
DW_TAG_lo_user = 0x4080,
|
||||||
DW_TAG_hi_user = 0xffff,
|
DW_TAG_hi_user = 0xffff,
|
||||||
DW_TAG_user_base = 0x1000 // Recommended base for user tags.
|
DW_TAG_user_base = 0x1000 // Recommended base for user tags.
|
||||||
@ -101,20 +101,20 @@ inline bool isType(Tag T) {
|
|||||||
/// Attributes.
|
/// Attributes.
|
||||||
enum Attribute : uint16_t {
|
enum Attribute : uint16_t {
|
||||||
#define HANDLE_DW_AT(ID, NAME, VERSION, VENDOR) DW_AT_##NAME = ID,
|
#define HANDLE_DW_AT(ID, NAME, VERSION, VENDOR) DW_AT_##NAME = ID,
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
DW_AT_lo_user = 0x2000,
|
DW_AT_lo_user = 0x2000,
|
||||||
DW_AT_hi_user = 0x3fff,
|
DW_AT_hi_user = 0x3fff,
|
||||||
};
|
};
|
||||||
|
|
||||||
enum Form : uint16_t {
|
enum Form : uint16_t {
|
||||||
#define HANDLE_DW_FORM(ID, NAME, VERSION, VENDOR) DW_FORM_##NAME = ID,
|
#define HANDLE_DW_FORM(ID, NAME, VERSION, VENDOR) DW_FORM_##NAME = ID,
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
DW_FORM_lo_user = 0x1f00, ///< Not specified by DWARF.
|
DW_FORM_lo_user = 0x1f00, ///< Not specified by DWARF.
|
||||||
};
|
};
|
||||||
|
|
||||||
enum LocationAtom {
|
enum LocationAtom {
|
||||||
#define HANDLE_DW_OP(ID, NAME, VERSION, VENDOR) DW_OP_##NAME = ID,
|
#define HANDLE_DW_OP(ID, NAME, VERSION, VENDOR) DW_OP_##NAME = ID,
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
DW_OP_lo_user = 0xe0,
|
DW_OP_lo_user = 0xe0,
|
||||||
DW_OP_hi_user = 0xff,
|
DW_OP_hi_user = 0xff,
|
||||||
DW_OP_LLVM_fragment = 0x1000 ///< Only used in LLVM metadata.
|
DW_OP_LLVM_fragment = 0x1000 ///< Only used in LLVM metadata.
|
||||||
@ -122,7 +122,7 @@ enum LocationAtom {
|
|||||||
|
|
||||||
enum TypeKind {
|
enum TypeKind {
|
||||||
#define HANDLE_DW_ATE(ID, NAME, VERSION, VENDOR) DW_ATE_##NAME = ID,
|
#define HANDLE_DW_ATE(ID, NAME, VERSION, VENDOR) DW_ATE_##NAME = ID,
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
DW_ATE_lo_user = 0x80,
|
DW_ATE_lo_user = 0x80,
|
||||||
DW_ATE_hi_user = 0xff
|
DW_ATE_hi_user = 0xff
|
||||||
};
|
};
|
||||||
@ -161,19 +161,19 @@ enum VisibilityAttribute {
|
|||||||
|
|
||||||
enum VirtualityAttribute {
|
enum VirtualityAttribute {
|
||||||
#define HANDLE_DW_VIRTUALITY(ID, NAME) DW_VIRTUALITY_##NAME = ID,
|
#define HANDLE_DW_VIRTUALITY(ID, NAME) DW_VIRTUALITY_##NAME = ID,
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
DW_VIRTUALITY_max = 0x02
|
DW_VIRTUALITY_max = 0x02
|
||||||
};
|
};
|
||||||
|
|
||||||
enum DefaultedMemberAttribute {
|
enum DefaultedMemberAttribute {
|
||||||
#define HANDLE_DW_DEFAULTED(ID, NAME) DW_DEFAULTED_##NAME = ID,
|
#define HANDLE_DW_DEFAULTED(ID, NAME) DW_DEFAULTED_##NAME = ID,
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
DW_DEFAULTED_max = 0x02
|
DW_DEFAULTED_max = 0x02
|
||||||
};
|
};
|
||||||
|
|
||||||
enum SourceLanguage {
|
enum SourceLanguage {
|
||||||
#define HANDLE_DW_LANG(ID, NAME, VERSION, VENDOR) DW_LANG_##NAME = ID,
|
#define HANDLE_DW_LANG(ID, NAME, VERSION, VENDOR) DW_LANG_##NAME = ID,
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
DW_LANG_lo_user = 0x8000,
|
DW_LANG_lo_user = 0x8000,
|
||||||
DW_LANG_hi_user = 0xffff
|
DW_LANG_hi_user = 0xffff
|
||||||
};
|
};
|
||||||
@ -187,9 +187,9 @@ enum CaseSensitivity {
|
|||||||
};
|
};
|
||||||
|
|
||||||
enum CallingConvention {
|
enum CallingConvention {
|
||||||
// Calling convention codes
|
// Calling convention codes
|
||||||
#define HANDLE_DW_CC(ID, NAME) DW_CC_##NAME = ID,
|
#define HANDLE_DW_CC(ID, NAME) DW_CC_##NAME = ID,
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
DW_CC_lo_user = 0x40,
|
DW_CC_lo_user = 0x40,
|
||||||
DW_CC_hi_user = 0xff
|
DW_CC_hi_user = 0xff
|
||||||
};
|
};
|
||||||
@ -217,20 +217,20 @@ enum DiscriminantList {
|
|||||||
/// Line Number Standard Opcode Encodings.
|
/// Line Number Standard Opcode Encodings.
|
||||||
enum LineNumberOps : uint8_t {
|
enum LineNumberOps : uint8_t {
|
||||||
#define HANDLE_DW_LNS(ID, NAME) DW_LNS_##NAME = ID,
|
#define HANDLE_DW_LNS(ID, NAME) DW_LNS_##NAME = ID,
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Line Number Extended Opcode Encodings.
|
/// Line Number Extended Opcode Encodings.
|
||||||
enum LineNumberExtendedOps {
|
enum LineNumberExtendedOps {
|
||||||
#define HANDLE_DW_LNE(ID, NAME) DW_LNE_##NAME = ID,
|
#define HANDLE_DW_LNE(ID, NAME) DW_LNE_##NAME = ID,
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
DW_LNE_lo_user = 0x80,
|
DW_LNE_lo_user = 0x80,
|
||||||
DW_LNE_hi_user = 0xff
|
DW_LNE_hi_user = 0xff
|
||||||
};
|
};
|
||||||
|
|
||||||
enum LineNumberEntryFormat {
|
enum LineNumberEntryFormat {
|
||||||
#define HANDLE_DW_LNCT(ID, NAME) DW_LNCT_##NAME = ID,
|
#define HANDLE_DW_LNCT(ID, NAME) DW_LNCT_##NAME = ID,
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
DW_LNCT_lo_user = 0x2000,
|
DW_LNCT_lo_user = 0x2000,
|
||||||
DW_LNCT_hi_user = 0x3fff,
|
DW_LNCT_hi_user = 0x3fff,
|
||||||
};
|
};
|
||||||
@ -247,7 +247,7 @@ enum MacinfoRecordType {
|
|||||||
/// DWARF v5 macro information entry type encodings.
|
/// DWARF v5 macro information entry type encodings.
|
||||||
enum MacroEntryType {
|
enum MacroEntryType {
|
||||||
#define HANDLE_DW_MACRO(ID, NAME) DW_MACRO_##NAME = ID,
|
#define HANDLE_DW_MACRO(ID, NAME) DW_MACRO_##NAME = ID,
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
DW_MACRO_lo_user = 0xe0,
|
DW_MACRO_lo_user = 0xe0,
|
||||||
DW_MACRO_hi_user = 0xff
|
DW_MACRO_hi_user = 0xff
|
||||||
};
|
};
|
||||||
@ -255,14 +255,13 @@ enum MacroEntryType {
|
|||||||
/// DWARF v5 range list entry encoding values.
|
/// DWARF v5 range list entry encoding values.
|
||||||
enum RangeListEntries {
|
enum RangeListEntries {
|
||||||
#define HANDLE_DW_RLE(ID, NAME) DW_RLE_##NAME = ID,
|
#define HANDLE_DW_RLE(ID, NAME) DW_RLE_##NAME = ID,
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/// Call frame instruction encodings.
|
/// Call frame instruction encodings.
|
||||||
enum CallFrameInfo {
|
enum CallFrameInfo {
|
||||||
#define HANDLE_DW_CFA(ID, NAME) DW_CFA_##NAME = ID,
|
#define HANDLE_DW_CFA(ID, NAME) DW_CFA_##NAME = ID,
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
DW_CFA_extended = 0x00,
|
DW_CFA_extended = 0x00,
|
||||||
|
|
||||||
DW_CFA_lo_user = 0x1c,
|
DW_CFA_lo_user = 0x1c,
|
||||||
@ -310,13 +309,13 @@ enum LocationListEntry : unsigned char {
|
|||||||
/// Keep this list in sync with clang's DeclSpec.h ObjCPropertyAttributeKind!
|
/// Keep this list in sync with clang's DeclSpec.h ObjCPropertyAttributeKind!
|
||||||
enum ApplePropertyAttributes {
|
enum ApplePropertyAttributes {
|
||||||
#define HANDLE_DW_APPLE_PROPERTY(ID, NAME) DW_APPLE_PROPERTY_##NAME = ID,
|
#define HANDLE_DW_APPLE_PROPERTY(ID, NAME) DW_APPLE_PROPERTY_##NAME = ID,
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Constants for unit types in DWARF v5.
|
/// Constants for unit types in DWARF v5.
|
||||||
enum UnitType : unsigned char {
|
enum UnitType : unsigned char {
|
||||||
#define HANDLE_DW_UT(ID, NAME) DW_UT_##NAME = ID,
|
#define HANDLE_DW_UT(ID, NAME) DW_UT_##NAME = ID,
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
DW_UT_lo_user = 0x80,
|
DW_UT_lo_user = 0x80,
|
||||||
DW_UT_hi_user = 0xff
|
DW_UT_hi_user = 0xff
|
||||||
};
|
};
|
||||||
@ -355,10 +354,7 @@ enum GDBIndexEntryKind {
|
|||||||
GIEK_UNUSED7
|
GIEK_UNUSED7
|
||||||
};
|
};
|
||||||
|
|
||||||
enum GDBIndexEntryLinkage {
|
enum GDBIndexEntryLinkage { GIEL_EXTERNAL, GIEL_STATIC };
|
||||||
GIEL_EXTERNAL,
|
|
||||||
GIEL_STATIC
|
|
||||||
};
|
|
||||||
|
|
||||||
/// \defgroup DwarfConstantsDumping Dwarf constants dumping functions
|
/// \defgroup DwarfConstantsDumping Dwarf constants dumping functions
|
||||||
///
|
///
|
||||||
@ -470,8 +466,8 @@ struct PubIndexEntryDescriptor {
|
|||||||
/* implicit */ PubIndexEntryDescriptor(GDBIndexEntryKind Kind)
|
/* implicit */ PubIndexEntryDescriptor(GDBIndexEntryKind Kind)
|
||||||
: Kind(Kind), Linkage(GIEL_EXTERNAL) {}
|
: Kind(Kind), Linkage(GIEL_EXTERNAL) {}
|
||||||
explicit PubIndexEntryDescriptor(uint8_t Value)
|
explicit PubIndexEntryDescriptor(uint8_t Value)
|
||||||
: Kind(static_cast<GDBIndexEntryKind>((Value & KIND_MASK) >>
|
: Kind(
|
||||||
KIND_OFFSET)),
|
static_cast<GDBIndexEntryKind>((Value & KIND_MASK) >> KIND_OFFSET)),
|
||||||
Linkage(static_cast<GDBIndexEntryLinkage>((Value & LINKAGE_MASK) >>
|
Linkage(static_cast<GDBIndexEntryLinkage>((Value & LINKAGE_MASK) >>
|
||||||
LINKAGE_OFFSET)) {}
|
LINKAGE_OFFSET)) {}
|
||||||
uint8_t toBits() const {
|
uint8_t toBits() const {
|
@ -1,4 +1,4 @@
|
|||||||
//===-- llvm/Support/ELF.h - ELF constants and data structures --*- C++ -*-===//
|
//===-- llvm/BinaryFormat/ELF.h - ELF constants and structures --*- C++ -*-===//
|
||||||
//
|
//
|
||||||
// The LLVM Compiler Infrastructure
|
// The LLVM Compiler Infrastructure
|
||||||
//
|
//
|
||||||
@ -17,8 +17,8 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#ifndef LLVM_SUPPORT_ELF_H
|
#ifndef LLVM_BINARYFORMAT_ELF_H
|
||||||
#define LLVM_SUPPORT_ELF_H
|
#define LLVM_BINARYFORMAT_ELF_H
|
||||||
|
|
||||||
#include "llvm/Support/Compiler.h"
|
#include "llvm/Support/Compiler.h"
|
||||||
#include "llvm/Support/DataTypes.h"
|
#include "llvm/Support/DataTypes.h"
|
1984
include/llvm/BinaryFormat/MachO.h
Normal file
1984
include/llvm/BinaryFormat/MachO.h
Normal file
File diff suppressed because it is too large
Load Diff
71
include/llvm/BinaryFormat/Magic.h
Normal file
71
include/llvm/BinaryFormat/Magic.h
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
//===- llvm/BinaryFormat/Magic.h - File magic identification ----*- C++ -*-===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is distributed under the University of Illinois Open Source
|
||||||
|
// License. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
#ifndef LLVM_BINARYFORMAT_MAGIC_H
|
||||||
|
#define LLVM_BINARYFORMAT_MAGIC_H
|
||||||
|
|
||||||
|
#include "llvm/ADT/StringRef.h"
|
||||||
|
#include "llvm/ADT/Twine.h"
|
||||||
|
|
||||||
|
namespace llvm {
|
||||||
|
/// file_magic - An "enum class" enumeration of file types based on magic (the
|
||||||
|
/// first N bytes of the file).
|
||||||
|
struct file_magic {
|
||||||
|
enum Impl {
|
||||||
|
unknown = 0, ///< Unrecognized file
|
||||||
|
bitcode, ///< Bitcode file
|
||||||
|
archive, ///< ar style archive file
|
||||||
|
elf, ///< ELF Unknown type
|
||||||
|
elf_relocatable, ///< ELF Relocatable object file
|
||||||
|
elf_executable, ///< ELF Executable image
|
||||||
|
elf_shared_object, ///< ELF dynamically linked shared lib
|
||||||
|
elf_core, ///< ELF core image
|
||||||
|
macho_object, ///< Mach-O Object file
|
||||||
|
macho_executable, ///< Mach-O Executable
|
||||||
|
macho_fixed_virtual_memory_shared_lib, ///< Mach-O Shared Lib, FVM
|
||||||
|
macho_core, ///< Mach-O Core File
|
||||||
|
macho_preload_executable, ///< Mach-O Preloaded Executable
|
||||||
|
macho_dynamically_linked_shared_lib, ///< Mach-O dynlinked shared lib
|
||||||
|
macho_dynamic_linker, ///< The Mach-O dynamic linker
|
||||||
|
macho_bundle, ///< Mach-O Bundle file
|
||||||
|
macho_dynamically_linked_shared_lib_stub, ///< Mach-O Shared lib stub
|
||||||
|
macho_dsym_companion, ///< Mach-O dSYM companion file
|
||||||
|
macho_kext_bundle, ///< Mach-O kext bundle file
|
||||||
|
macho_universal_binary, ///< Mach-O universal binary
|
||||||
|
coff_cl_gl_object, ///< Microsoft cl.exe's intermediate code file
|
||||||
|
coff_object, ///< COFF object file
|
||||||
|
coff_import_library, ///< COFF import library
|
||||||
|
pecoff_executable, ///< PECOFF executable file
|
||||||
|
windows_resource, ///< Windows compiled resource file (.res)
|
||||||
|
wasm_object ///< WebAssembly Object file
|
||||||
|
};
|
||||||
|
|
||||||
|
bool is_object() const { return V != unknown; }
|
||||||
|
|
||||||
|
file_magic() = default;
|
||||||
|
file_magic(Impl V) : V(V) {}
|
||||||
|
operator Impl() const { return V; }
|
||||||
|
|
||||||
|
private:
|
||||||
|
Impl V = unknown;
|
||||||
|
};
|
||||||
|
|
||||||
|
/// @brief Identify the type of a binary file based on how magical it is.
|
||||||
|
file_magic identify_magic(StringRef magic);
|
||||||
|
|
||||||
|
/// @brief Get and identify \a path's type based on its content.
|
||||||
|
///
|
||||||
|
/// @param path Input path.
|
||||||
|
/// @param result Set to the type of file, or file_magic::unknown.
|
||||||
|
/// @returns errc::success if result has been successfully set, otherwise a
|
||||||
|
/// platform-specific error_code.
|
||||||
|
std::error_code identify_magic(const Twine &path, file_magic &result);
|
||||||
|
} // namespace llvm
|
||||||
|
|
||||||
|
#endif
|
@ -12,8 +12,8 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#ifndef LLVM_SUPPORT_WASM_H
|
#ifndef LLVM_BINARYFORMAT_WASM_H
|
||||||
#define LLVM_SUPPORT_WASM_H
|
#define LLVM_BINARYFORMAT_WASM_H
|
||||||
|
|
||||||
#include "llvm/ADT/ArrayRef.h"
|
#include "llvm/ADT/ArrayRef.h"
|
||||||
|
|
||||||
@ -106,10 +106,10 @@ struct WasmElemSegment {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct WasmRelocation {
|
struct WasmRelocation {
|
||||||
uint32_t Type; // The type of the relocation.
|
uint32_t Type; // The type of the relocation.
|
||||||
int32_t Index; // Index into function to global index space.
|
int32_t Index; // Index into function to global index space.
|
||||||
uint64_t Offset; // Offset from the start of the section.
|
uint64_t Offset; // Offset from the start of the section.
|
||||||
int64_t Addend; // A value to add to the symbol.
|
int64_t Addend; // A value to add to the symbol.
|
||||||
};
|
};
|
||||||
|
|
||||||
enum : unsigned {
|
enum : unsigned {
|
||||||
@ -129,36 +129,36 @@ enum : unsigned {
|
|||||||
|
|
||||||
// Type immediate encodings used in various contexts.
|
// Type immediate encodings used in various contexts.
|
||||||
enum {
|
enum {
|
||||||
WASM_TYPE_I32 = -0x01,
|
WASM_TYPE_I32 = -0x01,
|
||||||
WASM_TYPE_I64 = -0x02,
|
WASM_TYPE_I64 = -0x02,
|
||||||
WASM_TYPE_F32 = -0x03,
|
WASM_TYPE_F32 = -0x03,
|
||||||
WASM_TYPE_F64 = -0x04,
|
WASM_TYPE_F64 = -0x04,
|
||||||
WASM_TYPE_ANYFUNC = -0x10,
|
WASM_TYPE_ANYFUNC = -0x10,
|
||||||
WASM_TYPE_FUNC = -0x20,
|
WASM_TYPE_FUNC = -0x20,
|
||||||
WASM_TYPE_NORESULT = -0x40, // for blocks with no result values
|
WASM_TYPE_NORESULT = -0x40, // for blocks with no result values
|
||||||
};
|
};
|
||||||
|
|
||||||
// Kinds of externals (for imports and exports).
|
// Kinds of externals (for imports and exports).
|
||||||
enum : unsigned {
|
enum : unsigned {
|
||||||
WASM_EXTERNAL_FUNCTION = 0x0,
|
WASM_EXTERNAL_FUNCTION = 0x0,
|
||||||
WASM_EXTERNAL_TABLE = 0x1,
|
WASM_EXTERNAL_TABLE = 0x1,
|
||||||
WASM_EXTERNAL_MEMORY = 0x2,
|
WASM_EXTERNAL_MEMORY = 0x2,
|
||||||
WASM_EXTERNAL_GLOBAL = 0x3,
|
WASM_EXTERNAL_GLOBAL = 0x3,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Opcodes used in initializer expressions.
|
// Opcodes used in initializer expressions.
|
||||||
enum : unsigned {
|
enum : unsigned {
|
||||||
WASM_OPCODE_END = 0x0b,
|
WASM_OPCODE_END = 0x0b,
|
||||||
WASM_OPCODE_GET_GLOBAL = 0x23,
|
WASM_OPCODE_GET_GLOBAL = 0x23,
|
||||||
WASM_OPCODE_I32_CONST = 0x41,
|
WASM_OPCODE_I32_CONST = 0x41,
|
||||||
WASM_OPCODE_I64_CONST = 0x42,
|
WASM_OPCODE_I64_CONST = 0x42,
|
||||||
WASM_OPCODE_F32_CONST = 0x43,
|
WASM_OPCODE_F32_CONST = 0x43,
|
||||||
WASM_OPCODE_F64_CONST = 0x44,
|
WASM_OPCODE_F64_CONST = 0x44,
|
||||||
};
|
};
|
||||||
|
|
||||||
enum : unsigned {
|
enum : unsigned {
|
||||||
WASM_NAMES_FUNCTION = 0x1,
|
WASM_NAMES_FUNCTION = 0x1,
|
||||||
WASM_NAMES_LOCAL = 0x2,
|
WASM_NAMES_LOCAL = 0x2,
|
||||||
};
|
};
|
||||||
|
|
||||||
enum : unsigned {
|
enum : unsigned {
|
@ -21,10 +21,10 @@
|
|||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
#include "llvm/ADT/iterator.h"
|
#include "llvm/ADT/iterator.h"
|
||||||
#include "llvm/ADT/iterator_range.h"
|
#include "llvm/ADT/iterator_range.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/CodeGen/DwarfStringPoolEntry.h"
|
#include "llvm/CodeGen/DwarfStringPoolEntry.h"
|
||||||
#include "llvm/Support/AlignOf.h"
|
#include "llvm/Support/AlignOf.h"
|
||||||
#include "llvm/Support/Allocator.h"
|
#include "llvm/Support/Allocator.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
@ -15,9 +15,9 @@
|
|||||||
#ifndef LLVM_CODEGEN_MACHINEMODULEINFOIMPLS_H
|
#ifndef LLVM_CODEGEN_MACHINEMODULEINFOIMPLS_H
|
||||||
#define LLVM_CODEGEN_MACHINEMODULEINFOIMPLS_H
|
#define LLVM_CODEGEN_MACHINEMODULEINFOIMPLS_H
|
||||||
|
|
||||||
|
#include "llvm/BinaryFormat/Wasm.h"
|
||||||
#include "llvm/CodeGen/MachineModuleInfo.h"
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
||||||
#include "llvm/CodeGen/ValueTypes.h"
|
#include "llvm/CodeGen/ValueTypes.h"
|
||||||
#include "llvm/Support/Wasm.h"
|
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
class MCSymbol;
|
class MCSymbol;
|
||||||
|
@ -11,8 +11,8 @@
|
|||||||
#define LLVM_DEBUGINFO_CODEVIEW_ENUMTABLES_H
|
#define LLVM_DEBUGINFO_CODEVIEW_ENUMTABLES_H
|
||||||
|
|
||||||
#include "llvm/ADT/ArrayRef.h"
|
#include "llvm/ADT/ArrayRef.h"
|
||||||
|
#include "llvm/BinaryFormat/COFF.h"
|
||||||
#include "llvm/DebugInfo/CodeView/CodeView.h"
|
#include "llvm/DebugInfo/CodeView/CodeView.h"
|
||||||
#include "llvm/Support/COFF.h"
|
|
||||||
#include "llvm/Support/ScopedPrinter.h"
|
#include "llvm/Support/ScopedPrinter.h"
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
@ -13,8 +13,8 @@
|
|||||||
#include "llvm/ADT/Optional.h"
|
#include "llvm/ADT/Optional.h"
|
||||||
#include "llvm/ADT/SmallVector.h"
|
#include "llvm/ADT/SmallVector.h"
|
||||||
#include "llvm/ADT/iterator_range.h"
|
#include "llvm/ADT/iterator_range.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/Support/DataExtractor.h"
|
#include "llvm/Support/DataExtractor.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
@ -11,9 +11,9 @@
|
|||||||
#define LLVM_DEBUGINFO_DWARFACCELERATORTABLE_H
|
#define LLVM_DEBUGINFO_DWARFACCELERATORTABLE_H
|
||||||
|
|
||||||
#include "llvm/ADT/SmallVector.h"
|
#include "llvm/ADT/SmallVector.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFRelocMap.h"
|
#include "llvm/DebugInfo/DWARF/DWARFRelocMap.h"
|
||||||
#include "llvm/Support/DataExtractor.h"
|
#include "llvm/Support/DataExtractor.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
|
||||||
|
@ -10,8 +10,8 @@
|
|||||||
#ifndef LLVM_DEBUGINFO_DWARFATTRIBUTE_H
|
#ifndef LLVM_DEBUGINFO_DWARFATTRIBUTE_H
|
||||||
#define LLVM_DEBUGINFO_DWARFATTRIBUTE_H
|
#define LLVM_DEBUGINFO_DWARFATTRIBUTE_H
|
||||||
|
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
|
#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
@ -10,8 +10,8 @@
|
|||||||
#ifndef LLVM_DEBUGINFO_DWARFDEBUGINFOENTRY_H
|
#ifndef LLVM_DEBUGINFO_DWARFDEBUGINFOENTRY_H
|
||||||
#define LLVM_DEBUGINFO_DWARFDEBUGINFOENTRY_H
|
#define LLVM_DEBUGINFO_DWARFDEBUGINFOENTRY_H
|
||||||
|
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h"
|
#include "llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
#include "llvm/ADT/ArrayRef.h"
|
#include "llvm/ADT/ArrayRef.h"
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
@ -14,11 +14,11 @@
|
|||||||
#include "llvm/ADT/Optional.h"
|
#include "llvm/ADT/Optional.h"
|
||||||
#include "llvm/ADT/iterator.h"
|
#include "llvm/ADT/iterator.h"
|
||||||
#include "llvm/ADT/iterator_range.h"
|
#include "llvm/ADT/iterator_range.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/DebugInfo/DIContext.h"
|
#include "llvm/DebugInfo/DIContext.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFAttribute.h"
|
#include "llvm/DebugInfo/DWARF/DWARFAttribute.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h"
|
#include "llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFDebugRangeList.h"
|
#include "llvm/DebugInfo/DWARF/DWARFDebugRangeList.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
|
@ -13,8 +13,8 @@
|
|||||||
#include "llvm/ADT/ArrayRef.h"
|
#include "llvm/ADT/ArrayRef.h"
|
||||||
#include "llvm/ADT/None.h"
|
#include "llvm/ADT/None.h"
|
||||||
#include "llvm/ADT/Optional.h"
|
#include "llvm/ADT/Optional.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/Support/DataExtractor.h"
|
#include "llvm/Support/DataExtractor.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
#include "llvm/ADT/SmallVector.h"
|
#include "llvm/ADT/SmallVector.h"
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
#include "llvm/ADT/iterator_range.h"
|
#include "llvm/ADT/iterator_range.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h"
|
#include "llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFDebugRangeList.h"
|
#include "llvm/DebugInfo/DWARF/DWARFDebugRangeList.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFDie.h"
|
#include "llvm/DebugInfo/DWARF/DWARFDie.h"
|
||||||
@ -24,7 +25,6 @@
|
|||||||
#include "llvm/Object/Binary.h"
|
#include "llvm/Object/Binary.h"
|
||||||
#include "llvm/Object/ObjectFile.h"
|
#include "llvm/Object/ObjectFile.h"
|
||||||
#include "llvm/Support/DataExtractor.h"
|
#include "llvm/Support/DataExtractor.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
|
@ -22,9 +22,9 @@
|
|||||||
#include "llvm/ADT/SmallVector.h"
|
#include "llvm/ADT/SmallVector.h"
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
#include "llvm/ADT/iterator_range.h"
|
#include "llvm/ADT/iterator_range.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/IR/Metadata.h"
|
#include "llvm/IR/Metadata.h"
|
||||||
#include "llvm/Support/Casting.h"
|
#include "llvm/Support/Casting.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <climits>
|
#include <climits>
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
@ -148,7 +148,7 @@ public:
|
|||||||
/// Tagged DWARF-like metadata node.
|
/// Tagged DWARF-like metadata node.
|
||||||
///
|
///
|
||||||
/// A metadata node with a DWARF tag (i.e., a constant named \c DW_TAG_*,
|
/// A metadata node with a DWARF tag (i.e., a constant named \c DW_TAG_*,
|
||||||
/// defined in llvm/Support/Dwarf.h). Called \a DINode because it's
|
/// defined in llvm/BinaryFormat/Dwarf.h). Called \a DINode because it's
|
||||||
/// potentially used for non-DWARF output.
|
/// potentially used for non-DWARF output.
|
||||||
class DINode : public MDNode {
|
class DINode : public MDNode {
|
||||||
friend class LLVMContextImpl;
|
friend class LLVMContextImpl;
|
||||||
@ -2642,7 +2642,8 @@ public:
|
|||||||
/// Macro Info DWARF-like metadata node.
|
/// Macro Info DWARF-like metadata node.
|
||||||
///
|
///
|
||||||
/// A metadata node with a DWARF macro info (i.e., a constant named
|
/// A metadata node with a DWARF macro info (i.e., a constant named
|
||||||
/// \c DW_MACINFO_*, defined in llvm/Support/Dwarf.h). Called \a DIMacroNode
|
/// \c DW_MACINFO_*, defined in llvm/BinaryFormat/Dwarf.h). Called \a
|
||||||
|
/// DIMacroNode
|
||||||
/// because it's potentially used for non-DWARF output.
|
/// because it's potentially used for non-DWARF output.
|
||||||
class DIMacroNode : public MDNode {
|
class DIMacroNode : public MDNode {
|
||||||
friend class LLVMContextImpl;
|
friend class LLVMContextImpl;
|
||||||
|
@ -16,13 +16,13 @@
|
|||||||
#ifndef LLVM_LINKALLIR_H
|
#ifndef LLVM_LINKALLIR_H
|
||||||
#define LLVM_LINKALLIR_H
|
#define LLVM_LINKALLIR_H
|
||||||
|
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/IR/InlineAsm.h"
|
#include "llvm/IR/InlineAsm.h"
|
||||||
#include "llvm/IR/Instructions.h"
|
#include "llvm/IR/Instructions.h"
|
||||||
#include "llvm/IR/IntrinsicInst.h"
|
#include "llvm/IR/IntrinsicInst.h"
|
||||||
#include "llvm/IR/LLVMContext.h"
|
#include "llvm/IR/LLVMContext.h"
|
||||||
#include "llvm/IR/Module.h"
|
#include "llvm/IR/Module.h"
|
||||||
#include "llvm/IR/Verifier.h"
|
#include "llvm/IR/Verifier.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/DynamicLibrary.h"
|
#include "llvm/Support/DynamicLibrary.h"
|
||||||
#include "llvm/Support/MathExtras.h"
|
#include "llvm/Support/MathExtras.h"
|
||||||
#include "llvm/Support/Memory.h"
|
#include "llvm/Support/Memory.h"
|
||||||
|
@ -17,12 +17,12 @@
|
|||||||
#include "llvm/ADT/StringMap.h"
|
#include "llvm/ADT/StringMap.h"
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
#include "llvm/ADT/Twine.h"
|
#include "llvm/ADT/Twine.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/MC/MCDwarf.h"
|
#include "llvm/MC/MCDwarf.h"
|
||||||
#include "llvm/MC/MCSubtargetInfo.h"
|
#include "llvm/MC/MCSubtargetInfo.h"
|
||||||
#include "llvm/MC/SectionKind.h"
|
#include "llvm/MC/SectionKind.h"
|
||||||
#include "llvm/Support/Allocator.h"
|
#include "llvm/Support/Allocator.h"
|
||||||
#include "llvm/Support/Compiler.h"
|
#include "llvm/Support/Compiler.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
@ -11,8 +11,8 @@
|
|||||||
#define LLVM_MC_MCELFOBJECTWRITER_H
|
#define LLVM_MC_MCELFOBJECTWRITER_H
|
||||||
|
|
||||||
#include "llvm/ADT/Triple.h"
|
#include "llvm/ADT/Triple.h"
|
||||||
|
#include "llvm/BinaryFormat/ELF.h"
|
||||||
#include "llvm/Support/Casting.h"
|
#include "llvm/Support/Casting.h"
|
||||||
#include "llvm/Support/ELF.h"
|
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
@ -12,11 +12,11 @@
|
|||||||
|
|
||||||
#include "llvm/ADT/DenseMap.h"
|
#include "llvm/ADT/DenseMap.h"
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
|
#include "llvm/BinaryFormat/MachO.h"
|
||||||
#include "llvm/MC/MCExpr.h"
|
#include "llvm/MC/MCExpr.h"
|
||||||
#include "llvm/MC/MCObjectWriter.h"
|
#include "llvm/MC/MCObjectWriter.h"
|
||||||
#include "llvm/MC/MCSection.h"
|
#include "llvm/MC/MCSection.h"
|
||||||
#include "llvm/MC/StringTableBuilder.h"
|
#include "llvm/MC/StringTableBuilder.h"
|
||||||
#include "llvm/Support/MachO.h"
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
@ -15,8 +15,8 @@
|
|||||||
#define LLVM_MC_MCSECTIONMACHO_H
|
#define LLVM_MC_MCSECTIONMACHO_H
|
||||||
|
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
|
#include "llvm/BinaryFormat/MachO.h"
|
||||||
#include "llvm/MC/MCSection.h"
|
#include "llvm/MC/MCSection.h"
|
||||||
#include "llvm/Support/MachO.h"
|
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
|
||||||
|
@ -9,8 +9,8 @@
|
|||||||
#ifndef LLVM_MC_MCSYMBOLWASM_H
|
#ifndef LLVM_MC_MCSYMBOLWASM_H
|
||||||
#define LLVM_MC_MCSYMBOLWASM_H
|
#define LLVM_MC_MCSYMBOLWASM_H
|
||||||
|
|
||||||
|
#include "llvm/BinaryFormat/Wasm.h"
|
||||||
#include "llvm/MC/MCSymbol.h"
|
#include "llvm/MC/MCSymbol.h"
|
||||||
#include "llvm/Support/Wasm.h"
|
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
class MCSymbolWasm : public MCSymbol {
|
class MCSymbolWasm : public MCSymbol {
|
||||||
|
@ -11,10 +11,10 @@
|
|||||||
#define LLVM_MC_MCWASMOBJECTWRITER_H
|
#define LLVM_MC_MCWASMOBJECTWRITER_H
|
||||||
|
|
||||||
#include "llvm/ADT/Triple.h"
|
#include "llvm/ADT/Triple.h"
|
||||||
|
#include "llvm/BinaryFormat/Wasm.h"
|
||||||
#include "llvm/MC/MCValue.h"
|
#include "llvm/MC/MCValue.h"
|
||||||
#include "llvm/Support/DataTypes.h"
|
#include "llvm/Support/DataTypes.h"
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
#include "llvm/Support/Wasm.h"
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
@ -15,13 +15,13 @@
|
|||||||
#define LLVM_OBJECT_COFF_H
|
#define LLVM_OBJECT_COFF_H
|
||||||
|
|
||||||
#include "llvm/ADT/iterator_range.h"
|
#include "llvm/ADT/iterator_range.h"
|
||||||
|
#include "llvm/BinaryFormat/COFF.h"
|
||||||
#include "llvm/DebugInfo/CodeView/CVDebugRecord.h"
|
#include "llvm/DebugInfo/CodeView/CVDebugRecord.h"
|
||||||
#include "llvm/MC/SubtargetFeature.h"
|
#include "llvm/MC/SubtargetFeature.h"
|
||||||
#include "llvm/Object/Binary.h"
|
#include "llvm/Object/Binary.h"
|
||||||
#include "llvm/Object/Error.h"
|
#include "llvm/Object/Error.h"
|
||||||
#include "llvm/Object/ObjectFile.h"
|
#include "llvm/Object/ObjectFile.h"
|
||||||
#include "llvm/Support/BinaryByteStream.h"
|
#include "llvm/Support/BinaryByteStream.h"
|
||||||
#include "llvm/Support/COFF.h"
|
|
||||||
#include "llvm/Support/ConvertUTF.h"
|
#include "llvm/Support/ConvertUTF.h"
|
||||||
#include "llvm/Support/Endian.h"
|
#include "llvm/Support/Endian.h"
|
||||||
#include "llvm/Support/ErrorHandling.h"
|
#include "llvm/Support/ErrorHandling.h"
|
||||||
|
@ -17,9 +17,9 @@
|
|||||||
#include "llvm/ADT/ArrayRef.h"
|
#include "llvm/ADT/ArrayRef.h"
|
||||||
#include "llvm/ADT/SmallVector.h"
|
#include "llvm/ADT/SmallVector.h"
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
|
#include "llvm/BinaryFormat/ELF.h"
|
||||||
#include "llvm/Object/ELFTypes.h"
|
#include "llvm/Object/ELFTypes.h"
|
||||||
#include "llvm/Object/Error.h"
|
#include "llvm/Object/Error.h"
|
||||||
#include "llvm/Support/ELF.h"
|
|
||||||
#include "llvm/Support/Endian.h"
|
#include "llvm/Support/Endian.h"
|
||||||
#include "llvm/Support/Error.h"
|
#include "llvm/Support/Error.h"
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
#include "llvm/ADT/Triple.h"
|
#include "llvm/ADT/Triple.h"
|
||||||
#include "llvm/ADT/iterator_range.h"
|
#include "llvm/ADT/iterator_range.h"
|
||||||
|
#include "llvm/BinaryFormat/ELF.h"
|
||||||
#include "llvm/MC/SubtargetFeature.h"
|
#include "llvm/MC/SubtargetFeature.h"
|
||||||
#include "llvm/Object/Binary.h"
|
#include "llvm/Object/Binary.h"
|
||||||
#include "llvm/Object/ELF.h"
|
#include "llvm/Object/ELF.h"
|
||||||
@ -29,7 +30,6 @@
|
|||||||
#include "llvm/Support/ARMAttributeParser.h"
|
#include "llvm/Support/ARMAttributeParser.h"
|
||||||
#include "llvm/Support/ARMBuildAttributes.h"
|
#include "llvm/Support/ARMBuildAttributes.h"
|
||||||
#include "llvm/Support/Casting.h"
|
#include "llvm/Support/Casting.h"
|
||||||
#include "llvm/Support/ELF.h"
|
|
||||||
#include "llvm/Support/Endian.h"
|
#include "llvm/Support/Endian.h"
|
||||||
#include "llvm/Support/Error.h"
|
#include "llvm/Support/Error.h"
|
||||||
#include "llvm/Support/ErrorHandling.h"
|
#include "llvm/Support/ErrorHandling.h"
|
||||||
|
@ -12,8 +12,8 @@
|
|||||||
|
|
||||||
#include "llvm/ADT/ArrayRef.h"
|
#include "llvm/ADT/ArrayRef.h"
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
|
#include "llvm/BinaryFormat/ELF.h"
|
||||||
#include "llvm/Object/Error.h"
|
#include "llvm/Object/Error.h"
|
||||||
#include "llvm/Support/ELF.h"
|
|
||||||
#include "llvm/Support/Endian.h"
|
#include "llvm/Support/Endian.h"
|
||||||
#include "llvm/Support/Error.h"
|
#include "llvm/Support/Error.h"
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
@ -22,13 +22,13 @@
|
|||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
#include "llvm/ADT/Triple.h"
|
#include "llvm/ADT/Triple.h"
|
||||||
#include "llvm/ADT/iterator_range.h"
|
#include "llvm/ADT/iterator_range.h"
|
||||||
|
#include "llvm/BinaryFormat/MachO.h"
|
||||||
#include "llvm/MC/SubtargetFeature.h"
|
#include "llvm/MC/SubtargetFeature.h"
|
||||||
#include "llvm/Object/Binary.h"
|
#include "llvm/Object/Binary.h"
|
||||||
#include "llvm/Object/ObjectFile.h"
|
#include "llvm/Object/ObjectFile.h"
|
||||||
#include "llvm/Object/SymbolicFile.h"
|
#include "llvm/Object/SymbolicFile.h"
|
||||||
#include "llvm/Support/Error.h"
|
#include "llvm/Support/Error.h"
|
||||||
#include "llvm/Support/Format.h"
|
#include "llvm/Support/Format.h"
|
||||||
#include "llvm/Support/MachO.h"
|
|
||||||
#include "llvm/Support/MemoryBuffer.h"
|
#include "llvm/Support/MemoryBuffer.h"
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
@ -16,10 +16,10 @@
|
|||||||
|
|
||||||
#include "llvm/ADT/Triple.h"
|
#include "llvm/ADT/Triple.h"
|
||||||
#include "llvm/ADT/iterator_range.h"
|
#include "llvm/ADT/iterator_range.h"
|
||||||
|
#include "llvm/BinaryFormat/MachO.h"
|
||||||
#include "llvm/Object/Archive.h"
|
#include "llvm/Object/Archive.h"
|
||||||
#include "llvm/Object/Binary.h"
|
#include "llvm/Object/Binary.h"
|
||||||
#include "llvm/Object/MachO.h"
|
#include "llvm/Object/MachO.h"
|
||||||
#include "llvm/Support/MachO.h"
|
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
class StringRef;
|
class StringRef;
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
#include "llvm/ADT/iterator_range.h"
|
#include "llvm/ADT/iterator_range.h"
|
||||||
|
#include "llvm/BinaryFormat/Magic.h"
|
||||||
#include "llvm/MC/SubtargetFeature.h"
|
#include "llvm/MC/SubtargetFeature.h"
|
||||||
#include "llvm/Object/Binary.h"
|
#include "llvm/Object/Binary.h"
|
||||||
#include "llvm/Object/Error.h"
|
#include "llvm/Object/Error.h"
|
||||||
@ -306,10 +307,10 @@ public:
|
|||||||
createObjectFile(StringRef ObjectPath);
|
createObjectFile(StringRef ObjectPath);
|
||||||
|
|
||||||
static Expected<std::unique_ptr<ObjectFile>>
|
static Expected<std::unique_ptr<ObjectFile>>
|
||||||
createObjectFile(MemoryBufferRef Object, sys::fs::file_magic Type);
|
createObjectFile(MemoryBufferRef Object, llvm::file_magic Type);
|
||||||
static Expected<std::unique_ptr<ObjectFile>>
|
static Expected<std::unique_ptr<ObjectFile>>
|
||||||
createObjectFile(MemoryBufferRef Object) {
|
createObjectFile(MemoryBufferRef Object) {
|
||||||
return createObjectFile(Object, sys::fs::file_magic::unknown);
|
return createObjectFile(Object, llvm::file_magic::unknown);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline bool classof(const Binary *v) {
|
static inline bool classof(const Binary *v) {
|
||||||
|
@ -17,15 +17,15 @@
|
|||||||
#define LLVM_OBJECT_RELOCVISITOR_H
|
#define LLVM_OBJECT_RELOCVISITOR_H
|
||||||
|
|
||||||
#include "llvm/ADT/Triple.h"
|
#include "llvm/ADT/Triple.h"
|
||||||
|
#include "llvm/BinaryFormat/ELF.h"
|
||||||
|
#include "llvm/BinaryFormat/MachO.h"
|
||||||
#include "llvm/Object/COFF.h"
|
#include "llvm/Object/COFF.h"
|
||||||
#include "llvm/Object/ELFObjectFile.h"
|
#include "llvm/Object/ELFObjectFile.h"
|
||||||
#include "llvm/Object/MachO.h"
|
#include "llvm/Object/MachO.h"
|
||||||
#include "llvm/Object/ObjectFile.h"
|
#include "llvm/Object/ObjectFile.h"
|
||||||
#include "llvm/Support/Casting.h"
|
#include "llvm/Support/Casting.h"
|
||||||
#include "llvm/Support/ELF.h"
|
|
||||||
#include "llvm/Support/ErrorHandling.h"
|
#include "llvm/Support/ErrorHandling.h"
|
||||||
#include "llvm/Support/ErrorOr.h"
|
#include "llvm/Support/ErrorOr.h"
|
||||||
#include "llvm/Support/MachO.h"
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <system_error>
|
#include <system_error>
|
||||||
|
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
|
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
#include "llvm/ADT/iterator_range.h"
|
#include "llvm/ADT/iterator_range.h"
|
||||||
|
#include "llvm/BinaryFormat/Magic.h"
|
||||||
#include "llvm/Object/Binary.h"
|
#include "llvm/Object/Binary.h"
|
||||||
#include "llvm/Support/Error.h"
|
#include "llvm/Support/Error.h"
|
||||||
#include "llvm/Support/FileSystem.h"
|
#include "llvm/Support/FileSystem.h"
|
||||||
@ -162,12 +163,12 @@ public:
|
|||||||
|
|
||||||
// construction aux.
|
// construction aux.
|
||||||
static Expected<std::unique_ptr<SymbolicFile>>
|
static Expected<std::unique_ptr<SymbolicFile>>
|
||||||
createSymbolicFile(MemoryBufferRef Object, sys::fs::file_magic Type,
|
createSymbolicFile(MemoryBufferRef Object, llvm::file_magic Type,
|
||||||
LLVMContext *Context);
|
LLVMContext *Context);
|
||||||
|
|
||||||
static Expected<std::unique_ptr<SymbolicFile>>
|
static Expected<std::unique_ptr<SymbolicFile>>
|
||||||
createSymbolicFile(MemoryBufferRef Object) {
|
createSymbolicFile(MemoryBufferRef Object) {
|
||||||
return createSymbolicFile(Object, sys::fs::file_magic::unknown, nullptr);
|
return createSymbolicFile(Object, llvm::file_magic::unknown, nullptr);
|
||||||
}
|
}
|
||||||
static Expected<OwningBinary<SymbolicFile>>
|
static Expected<OwningBinary<SymbolicFile>>
|
||||||
createSymbolicFile(StringRef ObjectPath);
|
createSymbolicFile(StringRef ObjectPath);
|
||||||
|
@ -19,11 +19,11 @@
|
|||||||
|
|
||||||
#include "llvm/ADT/ArrayRef.h"
|
#include "llvm/ADT/ArrayRef.h"
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
|
#include "llvm/BinaryFormat/Wasm.h"
|
||||||
#include "llvm/Object/Binary.h"
|
#include "llvm/Object/Binary.h"
|
||||||
#include "llvm/Object/ObjectFile.h"
|
#include "llvm/Object/ObjectFile.h"
|
||||||
#include "llvm/Support/Error.h"
|
#include "llvm/Support/Error.h"
|
||||||
#include "llvm/Support/MemoryBuffer.h"
|
#include "llvm/Support/MemoryBuffer.h"
|
||||||
#include "llvm/Support/Wasm.h"
|
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
@ -31,11 +31,11 @@
|
|||||||
|
|
||||||
#include "llvm/ADT/ArrayRef.h"
|
#include "llvm/ADT/ArrayRef.h"
|
||||||
#include "llvm/ADT/STLExtras.h"
|
#include "llvm/ADT/STLExtras.h"
|
||||||
|
#include "llvm/BinaryFormat/COFF.h"
|
||||||
#include "llvm/Object/Binary.h"
|
#include "llvm/Object/Binary.h"
|
||||||
#include "llvm/Object/Error.h"
|
#include "llvm/Object/Error.h"
|
||||||
#include "llvm/Support/BinaryByteStream.h"
|
#include "llvm/Support/BinaryByteStream.h"
|
||||||
#include "llvm/Support/BinaryStreamReader.h"
|
#include "llvm/Support/BinaryStreamReader.h"
|
||||||
#include "llvm/Support/COFF.h"
|
|
||||||
#include "llvm/Support/ConvertUTF.h"
|
#include "llvm/Support/ConvertUTF.h"
|
||||||
#include "llvm/Support/Endian.h"
|
#include "llvm/Support/Endian.h"
|
||||||
#include "llvm/Support/Error.h"
|
#include "llvm/Support/Error.h"
|
||||||
|
@ -15,8 +15,8 @@
|
|||||||
#define LLVM_OBJECTYAML_COFFYAML_H
|
#define LLVM_OBJECTYAML_COFFYAML_H
|
||||||
|
|
||||||
#include "llvm/ADT/Optional.h"
|
#include "llvm/ADT/Optional.h"
|
||||||
|
#include "llvm/BinaryFormat/COFF.h"
|
||||||
#include "llvm/ObjectYAML/YAML.h"
|
#include "llvm/ObjectYAML/YAML.h"
|
||||||
#include "llvm/Support/COFF.h"
|
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
|
||||||
|
@ -16,8 +16,8 @@
|
|||||||
#ifndef LLVM_OBJECTYAML_DWARFYAML_H
|
#ifndef LLVM_OBJECTYAML_DWARFYAML_H
|
||||||
#define LLVM_OBJECTYAML_DWARFYAML_H
|
#define LLVM_OBJECTYAML_DWARFYAML_H
|
||||||
|
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/ObjectYAML/YAML.h"
|
#include "llvm/ObjectYAML/YAML.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
namespace DWARFYAML {
|
namespace DWARFYAML {
|
||||||
@ -241,7 +241,7 @@ template <> struct MappingTraits<DWARFYAML::InitialLength> {
|
|||||||
|
|
||||||
template <> struct ScalarEnumerationTraits<dwarf::Tag> {
|
template <> struct ScalarEnumerationTraits<dwarf::Tag> {
|
||||||
static void enumeration(IO &io, dwarf::Tag &value) {
|
static void enumeration(IO &io, dwarf::Tag &value) {
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
io.enumFallback<Hex16>(value);
|
io.enumFallback<Hex16>(value);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -251,7 +251,7 @@ template <> struct ScalarEnumerationTraits<dwarf::Tag> {
|
|||||||
|
|
||||||
template <> struct ScalarEnumerationTraits<dwarf::LineNumberOps> {
|
template <> struct ScalarEnumerationTraits<dwarf::LineNumberOps> {
|
||||||
static void enumeration(IO &io, dwarf::LineNumberOps &value) {
|
static void enumeration(IO &io, dwarf::LineNumberOps &value) {
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
io.enumFallback<Hex8>(value);
|
io.enumFallback<Hex8>(value);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -261,7 +261,7 @@ template <> struct ScalarEnumerationTraits<dwarf::LineNumberOps> {
|
|||||||
|
|
||||||
template <> struct ScalarEnumerationTraits<dwarf::LineNumberExtendedOps> {
|
template <> struct ScalarEnumerationTraits<dwarf::LineNumberExtendedOps> {
|
||||||
static void enumeration(IO &io, dwarf::LineNumberExtendedOps &value) {
|
static void enumeration(IO &io, dwarf::LineNumberExtendedOps &value) {
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
io.enumFallback<Hex16>(value);
|
io.enumFallback<Hex16>(value);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -271,7 +271,7 @@ template <> struct ScalarEnumerationTraits<dwarf::LineNumberExtendedOps> {
|
|||||||
|
|
||||||
template <> struct ScalarEnumerationTraits<dwarf::Attribute> {
|
template <> struct ScalarEnumerationTraits<dwarf::Attribute> {
|
||||||
static void enumeration(IO &io, dwarf::Attribute &value) {
|
static void enumeration(IO &io, dwarf::Attribute &value) {
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
io.enumFallback<Hex16>(value);
|
io.enumFallback<Hex16>(value);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -281,7 +281,7 @@ template <> struct ScalarEnumerationTraits<dwarf::Attribute> {
|
|||||||
|
|
||||||
template <> struct ScalarEnumerationTraits<dwarf::Form> {
|
template <> struct ScalarEnumerationTraits<dwarf::Form> {
|
||||||
static void enumeration(IO &io, dwarf::Form &value) {
|
static void enumeration(IO &io, dwarf::Form &value) {
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
io.enumFallback<Hex16>(value);
|
io.enumFallback<Hex16>(value);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -291,7 +291,7 @@ template <> struct ScalarEnumerationTraits<dwarf::Form> {
|
|||||||
|
|
||||||
template <> struct ScalarEnumerationTraits<dwarf::UnitType> {
|
template <> struct ScalarEnumerationTraits<dwarf::UnitType> {
|
||||||
static void enumeration(IO &io, dwarf::UnitType &value) {
|
static void enumeration(IO &io, dwarf::UnitType &value) {
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
io.enumFallback<Hex8>(value);
|
io.enumFallback<Hex8>(value);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -16,8 +16,8 @@
|
|||||||
#ifndef LLVM_OBJECTYAML_ELFYAML_H
|
#ifndef LLVM_OBJECTYAML_ELFYAML_H
|
||||||
#define LLVM_OBJECTYAML_ELFYAML_H
|
#define LLVM_OBJECTYAML_ELFYAML_H
|
||||||
|
|
||||||
|
#include "llvm/BinaryFormat/ELF.h"
|
||||||
#include "llvm/ObjectYAML/YAML.h"
|
#include "llvm/ObjectYAML/YAML.h"
|
||||||
#include "llvm/Support/ELF.h"
|
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
namespace ELFYAML {
|
namespace ELFYAML {
|
||||||
|
@ -16,9 +16,9 @@
|
|||||||
#ifndef LLVM_OBJECTYAML_MACHOYAML_H
|
#ifndef LLVM_OBJECTYAML_MACHOYAML_H
|
||||||
#define LLVM_OBJECTYAML_MACHOYAML_H
|
#define LLVM_OBJECTYAML_MACHOYAML_H
|
||||||
|
|
||||||
|
#include "llvm/BinaryFormat/MachO.h"
|
||||||
#include "llvm/ObjectYAML/DWARFYAML.h"
|
#include "llvm/ObjectYAML/DWARFYAML.h"
|
||||||
#include "llvm/ObjectYAML/YAML.h"
|
#include "llvm/ObjectYAML/YAML.h"
|
||||||
#include "llvm/Support/MachO.h"
|
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
namespace MachOYAML {
|
namespace MachOYAML {
|
||||||
@ -209,7 +209,7 @@ template <> struct MappingTraits<MachO::build_tool_version> {
|
|||||||
|
|
||||||
template <> struct ScalarEnumerationTraits<MachO::LoadCommandType> {
|
template <> struct ScalarEnumerationTraits<MachO::LoadCommandType> {
|
||||||
static void enumeration(IO &io, MachO::LoadCommandType &value) {
|
static void enumeration(IO &io, MachO::LoadCommandType &value) {
|
||||||
#include "llvm/Support/MachO.def"
|
#include "llvm/BinaryFormat/MachO.def"
|
||||||
io.enumFallback<Hex32>(value);
|
io.enumFallback<Hex32>(value);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -278,7 +278,7 @@ template <> struct ScalarTraits<uuid_t> {
|
|||||||
static void mapping(IO &IO, MachO::LCStruct &LoadCommand); \
|
static void mapping(IO &IO, MachO::LCStruct &LoadCommand); \
|
||||||
};
|
};
|
||||||
|
|
||||||
#include "llvm/Support/MachO.def"
|
#include "llvm/BinaryFormat/MachO.def"
|
||||||
|
|
||||||
// Extra structures used by load commands
|
// Extra structures used by load commands
|
||||||
template <> struct MappingTraits<MachO::dylib> {
|
template <> struct MappingTraits<MachO::dylib> {
|
||||||
|
@ -16,8 +16,8 @@
|
|||||||
#ifndef LLVM_OBJECTYAML_WASMYAML_H
|
#ifndef LLVM_OBJECTYAML_WASMYAML_H
|
||||||
#define LLVM_OBJECTYAML_WASMYAML_H
|
#define LLVM_OBJECTYAML_WASMYAML_H
|
||||||
|
|
||||||
|
#include "llvm/BinaryFormat/Wasm.h"
|
||||||
#include "llvm/ObjectYAML/YAML.h"
|
#include "llvm/ObjectYAML/YAML.h"
|
||||||
#include "llvm/Support/Wasm.h"
|
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
namespace WasmYAML {
|
namespace WasmYAML {
|
||||||
|
@ -1,724 +0,0 @@
|
|||||||
//===-- llvm/Support/COFF.h -------------------------------------*- C++ -*-===//
|
|
||||||
//
|
|
||||||
// The LLVM Compiler Infrastructure
|
|
||||||
//
|
|
||||||
// This file is distributed under the University of Illinois Open Source
|
|
||||||
// License. See LICENSE.TXT for details.
|
|
||||||
//
|
|
||||||
//===----------------------------------------------------------------------===//
|
|
||||||
//
|
|
||||||
// This file contains an definitions used in Windows COFF Files.
|
|
||||||
//
|
|
||||||
// Structures and enums defined within this file where created using
|
|
||||||
// information from Microsoft's publicly available PE/COFF format document:
|
|
||||||
//
|
|
||||||
// Microsoft Portable Executable and Common Object File Format Specification
|
|
||||||
// Revision 8.1 - February 15, 2008
|
|
||||||
//
|
|
||||||
// As of 5/2/2010, hosted by Microsoft at:
|
|
||||||
// http://www.microsoft.com/whdc/system/platform/firmware/pecoff.mspx
|
|
||||||
//
|
|
||||||
//===----------------------------------------------------------------------===//
|
|
||||||
|
|
||||||
#ifndef LLVM_SUPPORT_COFF_H
|
|
||||||
#define LLVM_SUPPORT_COFF_H
|
|
||||||
|
|
||||||
#include "llvm/Support/DataTypes.h"
|
|
||||||
#include <cassert>
|
|
||||||
#include <cstring>
|
|
||||||
|
|
||||||
namespace llvm {
|
|
||||||
namespace COFF {
|
|
||||||
|
|
||||||
// The maximum number of sections that a COFF object can have (inclusive).
|
|
||||||
const int32_t MaxNumberOfSections16 = 65279;
|
|
||||||
|
|
||||||
// The PE signature bytes that follows the DOS stub header.
|
|
||||||
static const char PEMagic[] = { 'P', 'E', '\0', '\0' };
|
|
||||||
|
|
||||||
static const char BigObjMagic[] = {
|
|
||||||
'\xc7', '\xa1', '\xba', '\xd1', '\xee', '\xba', '\xa9', '\x4b',
|
|
||||||
'\xaf', '\x20', '\xfa', '\xf6', '\x6a', '\xa4', '\xdc', '\xb8',
|
|
||||||
};
|
|
||||||
|
|
||||||
static const char ClGlObjMagic[] = {
|
|
||||||
'\x38', '\xfe', '\xb3', '\x0c', '\xa5', '\xd9', '\xab', '\x4d',
|
|
||||||
'\xac', '\x9b', '\xd6', '\xb6', '\x22', '\x26', '\x53', '\xc2',
|
|
||||||
};
|
|
||||||
|
|
||||||
// Sizes in bytes of various things in the COFF format.
|
|
||||||
enum {
|
|
||||||
Header16Size = 20,
|
|
||||||
Header32Size = 56,
|
|
||||||
NameSize = 8,
|
|
||||||
Symbol16Size = 18,
|
|
||||||
Symbol32Size = 20,
|
|
||||||
SectionSize = 40,
|
|
||||||
RelocationSize = 10
|
|
||||||
};
|
|
||||||
|
|
||||||
struct header {
|
|
||||||
uint16_t Machine;
|
|
||||||
int32_t NumberOfSections;
|
|
||||||
uint32_t TimeDateStamp;
|
|
||||||
uint32_t PointerToSymbolTable;
|
|
||||||
uint32_t NumberOfSymbols;
|
|
||||||
uint16_t SizeOfOptionalHeader;
|
|
||||||
uint16_t Characteristics;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct BigObjHeader {
|
|
||||||
enum : uint16_t { MinBigObjectVersion = 2 };
|
|
||||||
|
|
||||||
uint16_t Sig1; ///< Must be IMAGE_FILE_MACHINE_UNKNOWN (0).
|
|
||||||
uint16_t Sig2; ///< Must be 0xFFFF.
|
|
||||||
uint16_t Version;
|
|
||||||
uint16_t Machine;
|
|
||||||
uint32_t TimeDateStamp;
|
|
||||||
uint8_t UUID[16];
|
|
||||||
uint32_t unused1;
|
|
||||||
uint32_t unused2;
|
|
||||||
uint32_t unused3;
|
|
||||||
uint32_t unused4;
|
|
||||||
uint32_t NumberOfSections;
|
|
||||||
uint32_t PointerToSymbolTable;
|
|
||||||
uint32_t NumberOfSymbols;
|
|
||||||
};
|
|
||||||
|
|
||||||
enum MachineTypes {
|
|
||||||
MT_Invalid = 0xffff,
|
|
||||||
|
|
||||||
IMAGE_FILE_MACHINE_UNKNOWN = 0x0,
|
|
||||||
IMAGE_FILE_MACHINE_AM33 = 0x13,
|
|
||||||
IMAGE_FILE_MACHINE_AMD64 = 0x8664,
|
|
||||||
IMAGE_FILE_MACHINE_ARM = 0x1C0,
|
|
||||||
IMAGE_FILE_MACHINE_ARMNT = 0x1C4,
|
|
||||||
IMAGE_FILE_MACHINE_ARM64 = 0xAA64,
|
|
||||||
IMAGE_FILE_MACHINE_EBC = 0xEBC,
|
|
||||||
IMAGE_FILE_MACHINE_I386 = 0x14C,
|
|
||||||
IMAGE_FILE_MACHINE_IA64 = 0x200,
|
|
||||||
IMAGE_FILE_MACHINE_M32R = 0x9041,
|
|
||||||
IMAGE_FILE_MACHINE_MIPS16 = 0x266,
|
|
||||||
IMAGE_FILE_MACHINE_MIPSFPU = 0x366,
|
|
||||||
IMAGE_FILE_MACHINE_MIPSFPU16 = 0x466,
|
|
||||||
IMAGE_FILE_MACHINE_POWERPC = 0x1F0,
|
|
||||||
IMAGE_FILE_MACHINE_POWERPCFP = 0x1F1,
|
|
||||||
IMAGE_FILE_MACHINE_R4000 = 0x166,
|
|
||||||
IMAGE_FILE_MACHINE_SH3 = 0x1A2,
|
|
||||||
IMAGE_FILE_MACHINE_SH3DSP = 0x1A3,
|
|
||||||
IMAGE_FILE_MACHINE_SH4 = 0x1A6,
|
|
||||||
IMAGE_FILE_MACHINE_SH5 = 0x1A8,
|
|
||||||
IMAGE_FILE_MACHINE_THUMB = 0x1C2,
|
|
||||||
IMAGE_FILE_MACHINE_WCEMIPSV2 = 0x169
|
|
||||||
};
|
|
||||||
|
|
||||||
enum Characteristics {
|
|
||||||
C_Invalid = 0,
|
|
||||||
|
|
||||||
/// The file does not contain base relocations and must be loaded at its
|
|
||||||
/// preferred base. If this cannot be done, the loader will error.
|
|
||||||
IMAGE_FILE_RELOCS_STRIPPED = 0x0001,
|
|
||||||
/// The file is valid and can be run.
|
|
||||||
IMAGE_FILE_EXECUTABLE_IMAGE = 0x0002,
|
|
||||||
/// COFF line numbers have been stripped. This is deprecated and should be
|
|
||||||
/// 0.
|
|
||||||
IMAGE_FILE_LINE_NUMS_STRIPPED = 0x0004,
|
|
||||||
/// COFF symbol table entries for local symbols have been removed. This is
|
|
||||||
/// deprecated and should be 0.
|
|
||||||
IMAGE_FILE_LOCAL_SYMS_STRIPPED = 0x0008,
|
|
||||||
/// Aggressively trim working set. This is deprecated and must be 0.
|
|
||||||
IMAGE_FILE_AGGRESSIVE_WS_TRIM = 0x0010,
|
|
||||||
/// Image can handle > 2GiB addresses.
|
|
||||||
IMAGE_FILE_LARGE_ADDRESS_AWARE = 0x0020,
|
|
||||||
/// Little endian: the LSB precedes the MSB in memory. This is deprecated
|
|
||||||
/// and should be 0.
|
|
||||||
IMAGE_FILE_BYTES_REVERSED_LO = 0x0080,
|
|
||||||
/// Machine is based on a 32bit word architecture.
|
|
||||||
IMAGE_FILE_32BIT_MACHINE = 0x0100,
|
|
||||||
/// Debugging info has been removed.
|
|
||||||
IMAGE_FILE_DEBUG_STRIPPED = 0x0200,
|
|
||||||
/// If the image is on removable media, fully load it and copy it to swap.
|
|
||||||
IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP = 0x0400,
|
|
||||||
/// If the image is on network media, fully load it and copy it to swap.
|
|
||||||
IMAGE_FILE_NET_RUN_FROM_SWAP = 0x0800,
|
|
||||||
/// The image file is a system file, not a user program.
|
|
||||||
IMAGE_FILE_SYSTEM = 0x1000,
|
|
||||||
/// The image file is a DLL.
|
|
||||||
IMAGE_FILE_DLL = 0x2000,
|
|
||||||
/// This file should only be run on a uniprocessor machine.
|
|
||||||
IMAGE_FILE_UP_SYSTEM_ONLY = 0x4000,
|
|
||||||
/// Big endian: the MSB precedes the LSB in memory. This is deprecated
|
|
||||||
/// and should be 0.
|
|
||||||
IMAGE_FILE_BYTES_REVERSED_HI = 0x8000
|
|
||||||
};
|
|
||||||
|
|
||||||
enum ResourceTypeID {
|
|
||||||
RID_Cursor = 1,
|
|
||||||
RID_Bitmap = 2,
|
|
||||||
RID_Icon = 3,
|
|
||||||
RID_Menu = 4,
|
|
||||||
RID_Dialog = 5,
|
|
||||||
RID_String = 6,
|
|
||||||
RID_FontDir = 7,
|
|
||||||
RID_Font = 8,
|
|
||||||
RID_Accelerator = 9,
|
|
||||||
RID_RCData = 10,
|
|
||||||
RID_MessageTable = 11,
|
|
||||||
RID_Group_Cursor = 12,
|
|
||||||
RID_Group_Icon = 14,
|
|
||||||
RID_Version = 16,
|
|
||||||
RID_DLGInclude = 17,
|
|
||||||
RID_PlugPlay = 19,
|
|
||||||
RID_VXD = 20,
|
|
||||||
RID_AniCursor = 21,
|
|
||||||
RID_AniIcon = 22,
|
|
||||||
RID_HTML = 23,
|
|
||||||
RID_Manifest = 24,
|
|
||||||
};
|
|
||||||
|
|
||||||
struct symbol {
|
|
||||||
char Name[NameSize];
|
|
||||||
uint32_t Value;
|
|
||||||
int32_t SectionNumber;
|
|
||||||
uint16_t Type;
|
|
||||||
uint8_t StorageClass;
|
|
||||||
uint8_t NumberOfAuxSymbols;
|
|
||||||
};
|
|
||||||
|
|
||||||
enum SymbolSectionNumber : int32_t {
|
|
||||||
IMAGE_SYM_DEBUG = -2,
|
|
||||||
IMAGE_SYM_ABSOLUTE = -1,
|
|
||||||
IMAGE_SYM_UNDEFINED = 0
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Storage class tells where and what the symbol represents
|
|
||||||
enum SymbolStorageClass {
|
|
||||||
SSC_Invalid = 0xff,
|
|
||||||
|
|
||||||
IMAGE_SYM_CLASS_END_OF_FUNCTION = -1, ///< Physical end of function
|
|
||||||
IMAGE_SYM_CLASS_NULL = 0, ///< No symbol
|
|
||||||
IMAGE_SYM_CLASS_AUTOMATIC = 1, ///< Stack variable
|
|
||||||
IMAGE_SYM_CLASS_EXTERNAL = 2, ///< External symbol
|
|
||||||
IMAGE_SYM_CLASS_STATIC = 3, ///< Static
|
|
||||||
IMAGE_SYM_CLASS_REGISTER = 4, ///< Register variable
|
|
||||||
IMAGE_SYM_CLASS_EXTERNAL_DEF = 5, ///< External definition
|
|
||||||
IMAGE_SYM_CLASS_LABEL = 6, ///< Label
|
|
||||||
IMAGE_SYM_CLASS_UNDEFINED_LABEL = 7, ///< Undefined label
|
|
||||||
IMAGE_SYM_CLASS_MEMBER_OF_STRUCT = 8, ///< Member of structure
|
|
||||||
IMAGE_SYM_CLASS_ARGUMENT = 9, ///< Function argument
|
|
||||||
IMAGE_SYM_CLASS_STRUCT_TAG = 10, ///< Structure tag
|
|
||||||
IMAGE_SYM_CLASS_MEMBER_OF_UNION = 11, ///< Member of union
|
|
||||||
IMAGE_SYM_CLASS_UNION_TAG = 12, ///< Union tag
|
|
||||||
IMAGE_SYM_CLASS_TYPE_DEFINITION = 13, ///< Type definition
|
|
||||||
IMAGE_SYM_CLASS_UNDEFINED_STATIC = 14, ///< Undefined static
|
|
||||||
IMAGE_SYM_CLASS_ENUM_TAG = 15, ///< Enumeration tag
|
|
||||||
IMAGE_SYM_CLASS_MEMBER_OF_ENUM = 16, ///< Member of enumeration
|
|
||||||
IMAGE_SYM_CLASS_REGISTER_PARAM = 17, ///< Register parameter
|
|
||||||
IMAGE_SYM_CLASS_BIT_FIELD = 18, ///< Bit field
|
|
||||||
/// ".bb" or ".eb" - beginning or end of block
|
|
||||||
IMAGE_SYM_CLASS_BLOCK = 100,
|
|
||||||
/// ".bf" or ".ef" - beginning or end of function
|
|
||||||
IMAGE_SYM_CLASS_FUNCTION = 101,
|
|
||||||
IMAGE_SYM_CLASS_END_OF_STRUCT = 102, ///< End of structure
|
|
||||||
IMAGE_SYM_CLASS_FILE = 103, ///< File name
|
|
||||||
/// Line number, reformatted as symbol
|
|
||||||
IMAGE_SYM_CLASS_SECTION = 104,
|
|
||||||
IMAGE_SYM_CLASS_WEAK_EXTERNAL = 105, ///< Duplicate tag
|
|
||||||
/// External symbol in dmert public lib
|
|
||||||
IMAGE_SYM_CLASS_CLR_TOKEN = 107
|
|
||||||
};
|
|
||||||
|
|
||||||
enum SymbolBaseType {
|
|
||||||
IMAGE_SYM_TYPE_NULL = 0, ///< No type information or unknown base type.
|
|
||||||
IMAGE_SYM_TYPE_VOID = 1, ///< Used with void pointers and functions.
|
|
||||||
IMAGE_SYM_TYPE_CHAR = 2, ///< A character (signed byte).
|
|
||||||
IMAGE_SYM_TYPE_SHORT = 3, ///< A 2-byte signed integer.
|
|
||||||
IMAGE_SYM_TYPE_INT = 4, ///< A natural integer type on the target.
|
|
||||||
IMAGE_SYM_TYPE_LONG = 5, ///< A 4-byte signed integer.
|
|
||||||
IMAGE_SYM_TYPE_FLOAT = 6, ///< A 4-byte floating-point number.
|
|
||||||
IMAGE_SYM_TYPE_DOUBLE = 7, ///< An 8-byte floating-point number.
|
|
||||||
IMAGE_SYM_TYPE_STRUCT = 8, ///< A structure.
|
|
||||||
IMAGE_SYM_TYPE_UNION = 9, ///< An union.
|
|
||||||
IMAGE_SYM_TYPE_ENUM = 10, ///< An enumerated type.
|
|
||||||
IMAGE_SYM_TYPE_MOE = 11, ///< A member of enumeration (a specific value).
|
|
||||||
IMAGE_SYM_TYPE_BYTE = 12, ///< A byte; unsigned 1-byte integer.
|
|
||||||
IMAGE_SYM_TYPE_WORD = 13, ///< A word; unsigned 2-byte integer.
|
|
||||||
IMAGE_SYM_TYPE_UINT = 14, ///< An unsigned integer of natural size.
|
|
||||||
IMAGE_SYM_TYPE_DWORD = 15 ///< An unsigned 4-byte integer.
|
|
||||||
};
|
|
||||||
|
|
||||||
enum SymbolComplexType {
|
|
||||||
IMAGE_SYM_DTYPE_NULL = 0, ///< No complex type; simple scalar variable.
|
|
||||||
IMAGE_SYM_DTYPE_POINTER = 1, ///< A pointer to base type.
|
|
||||||
IMAGE_SYM_DTYPE_FUNCTION = 2, ///< A function that returns a base type.
|
|
||||||
IMAGE_SYM_DTYPE_ARRAY = 3, ///< An array of base type.
|
|
||||||
|
|
||||||
/// Type is formed as (base + (derived << SCT_COMPLEX_TYPE_SHIFT))
|
|
||||||
SCT_COMPLEX_TYPE_SHIFT = 4
|
|
||||||
};
|
|
||||||
|
|
||||||
enum AuxSymbolType {
|
|
||||||
IMAGE_AUX_SYMBOL_TYPE_TOKEN_DEF = 1
|
|
||||||
};
|
|
||||||
|
|
||||||
struct section {
|
|
||||||
char Name[NameSize];
|
|
||||||
uint32_t VirtualSize;
|
|
||||||
uint32_t VirtualAddress;
|
|
||||||
uint32_t SizeOfRawData;
|
|
||||||
uint32_t PointerToRawData;
|
|
||||||
uint32_t PointerToRelocations;
|
|
||||||
uint32_t PointerToLineNumbers;
|
|
||||||
uint16_t NumberOfRelocations;
|
|
||||||
uint16_t NumberOfLineNumbers;
|
|
||||||
uint32_t Characteristics;
|
|
||||||
};
|
|
||||||
|
|
||||||
enum SectionCharacteristics : uint32_t {
|
|
||||||
SC_Invalid = 0xffffffff,
|
|
||||||
|
|
||||||
IMAGE_SCN_TYPE_NOLOAD = 0x00000002,
|
|
||||||
IMAGE_SCN_TYPE_NO_PAD = 0x00000008,
|
|
||||||
IMAGE_SCN_CNT_CODE = 0x00000020,
|
|
||||||
IMAGE_SCN_CNT_INITIALIZED_DATA = 0x00000040,
|
|
||||||
IMAGE_SCN_CNT_UNINITIALIZED_DATA = 0x00000080,
|
|
||||||
IMAGE_SCN_LNK_OTHER = 0x00000100,
|
|
||||||
IMAGE_SCN_LNK_INFO = 0x00000200,
|
|
||||||
IMAGE_SCN_LNK_REMOVE = 0x00000800,
|
|
||||||
IMAGE_SCN_LNK_COMDAT = 0x00001000,
|
|
||||||
IMAGE_SCN_GPREL = 0x00008000,
|
|
||||||
IMAGE_SCN_MEM_PURGEABLE = 0x00020000,
|
|
||||||
IMAGE_SCN_MEM_16BIT = 0x00020000,
|
|
||||||
IMAGE_SCN_MEM_LOCKED = 0x00040000,
|
|
||||||
IMAGE_SCN_MEM_PRELOAD = 0x00080000,
|
|
||||||
IMAGE_SCN_ALIGN_1BYTES = 0x00100000,
|
|
||||||
IMAGE_SCN_ALIGN_2BYTES = 0x00200000,
|
|
||||||
IMAGE_SCN_ALIGN_4BYTES = 0x00300000,
|
|
||||||
IMAGE_SCN_ALIGN_8BYTES = 0x00400000,
|
|
||||||
IMAGE_SCN_ALIGN_16BYTES = 0x00500000,
|
|
||||||
IMAGE_SCN_ALIGN_32BYTES = 0x00600000,
|
|
||||||
IMAGE_SCN_ALIGN_64BYTES = 0x00700000,
|
|
||||||
IMAGE_SCN_ALIGN_128BYTES = 0x00800000,
|
|
||||||
IMAGE_SCN_ALIGN_256BYTES = 0x00900000,
|
|
||||||
IMAGE_SCN_ALIGN_512BYTES = 0x00A00000,
|
|
||||||
IMAGE_SCN_ALIGN_1024BYTES = 0x00B00000,
|
|
||||||
IMAGE_SCN_ALIGN_2048BYTES = 0x00C00000,
|
|
||||||
IMAGE_SCN_ALIGN_4096BYTES = 0x00D00000,
|
|
||||||
IMAGE_SCN_ALIGN_8192BYTES = 0x00E00000,
|
|
||||||
IMAGE_SCN_LNK_NRELOC_OVFL = 0x01000000,
|
|
||||||
IMAGE_SCN_MEM_DISCARDABLE = 0x02000000,
|
|
||||||
IMAGE_SCN_MEM_NOT_CACHED = 0x04000000,
|
|
||||||
IMAGE_SCN_MEM_NOT_PAGED = 0x08000000,
|
|
||||||
IMAGE_SCN_MEM_SHARED = 0x10000000,
|
|
||||||
IMAGE_SCN_MEM_EXECUTE = 0x20000000,
|
|
||||||
IMAGE_SCN_MEM_READ = 0x40000000,
|
|
||||||
IMAGE_SCN_MEM_WRITE = 0x80000000
|
|
||||||
};
|
|
||||||
|
|
||||||
struct relocation {
|
|
||||||
uint32_t VirtualAddress;
|
|
||||||
uint32_t SymbolTableIndex;
|
|
||||||
uint16_t Type;
|
|
||||||
};
|
|
||||||
|
|
||||||
enum RelocationTypeI386 {
|
|
||||||
IMAGE_REL_I386_ABSOLUTE = 0x0000,
|
|
||||||
IMAGE_REL_I386_DIR16 = 0x0001,
|
|
||||||
IMAGE_REL_I386_REL16 = 0x0002,
|
|
||||||
IMAGE_REL_I386_DIR32 = 0x0006,
|
|
||||||
IMAGE_REL_I386_DIR32NB = 0x0007,
|
|
||||||
IMAGE_REL_I386_SEG12 = 0x0009,
|
|
||||||
IMAGE_REL_I386_SECTION = 0x000A,
|
|
||||||
IMAGE_REL_I386_SECREL = 0x000B,
|
|
||||||
IMAGE_REL_I386_TOKEN = 0x000C,
|
|
||||||
IMAGE_REL_I386_SECREL7 = 0x000D,
|
|
||||||
IMAGE_REL_I386_REL32 = 0x0014
|
|
||||||
};
|
|
||||||
|
|
||||||
enum RelocationTypeAMD64 {
|
|
||||||
IMAGE_REL_AMD64_ABSOLUTE = 0x0000,
|
|
||||||
IMAGE_REL_AMD64_ADDR64 = 0x0001,
|
|
||||||
IMAGE_REL_AMD64_ADDR32 = 0x0002,
|
|
||||||
IMAGE_REL_AMD64_ADDR32NB = 0x0003,
|
|
||||||
IMAGE_REL_AMD64_REL32 = 0x0004,
|
|
||||||
IMAGE_REL_AMD64_REL32_1 = 0x0005,
|
|
||||||
IMAGE_REL_AMD64_REL32_2 = 0x0006,
|
|
||||||
IMAGE_REL_AMD64_REL32_3 = 0x0007,
|
|
||||||
IMAGE_REL_AMD64_REL32_4 = 0x0008,
|
|
||||||
IMAGE_REL_AMD64_REL32_5 = 0x0009,
|
|
||||||
IMAGE_REL_AMD64_SECTION = 0x000A,
|
|
||||||
IMAGE_REL_AMD64_SECREL = 0x000B,
|
|
||||||
IMAGE_REL_AMD64_SECREL7 = 0x000C,
|
|
||||||
IMAGE_REL_AMD64_TOKEN = 0x000D,
|
|
||||||
IMAGE_REL_AMD64_SREL32 = 0x000E,
|
|
||||||
IMAGE_REL_AMD64_PAIR = 0x000F,
|
|
||||||
IMAGE_REL_AMD64_SSPAN32 = 0x0010
|
|
||||||
};
|
|
||||||
|
|
||||||
enum RelocationTypesARM {
|
|
||||||
IMAGE_REL_ARM_ABSOLUTE = 0x0000,
|
|
||||||
IMAGE_REL_ARM_ADDR32 = 0x0001,
|
|
||||||
IMAGE_REL_ARM_ADDR32NB = 0x0002,
|
|
||||||
IMAGE_REL_ARM_BRANCH24 = 0x0003,
|
|
||||||
IMAGE_REL_ARM_BRANCH11 = 0x0004,
|
|
||||||
IMAGE_REL_ARM_TOKEN = 0x0005,
|
|
||||||
IMAGE_REL_ARM_BLX24 = 0x0008,
|
|
||||||
IMAGE_REL_ARM_BLX11 = 0x0009,
|
|
||||||
IMAGE_REL_ARM_SECTION = 0x000E,
|
|
||||||
IMAGE_REL_ARM_SECREL = 0x000F,
|
|
||||||
IMAGE_REL_ARM_MOV32A = 0x0010,
|
|
||||||
IMAGE_REL_ARM_MOV32T = 0x0011,
|
|
||||||
IMAGE_REL_ARM_BRANCH20T = 0x0012,
|
|
||||||
IMAGE_REL_ARM_BRANCH24T = 0x0014,
|
|
||||||
IMAGE_REL_ARM_BLX23T = 0x0015
|
|
||||||
};
|
|
||||||
|
|
||||||
enum RelocationTypesARM64 {
|
|
||||||
IMAGE_REL_ARM64_ABSOLUTE = 0x0000,
|
|
||||||
IMAGE_REL_ARM64_ADDR32 = 0x0001,
|
|
||||||
IMAGE_REL_ARM64_ADDR32NB = 0x0002,
|
|
||||||
IMAGE_REL_ARM64_BRANCH26 = 0x0003,
|
|
||||||
IMAGE_REL_ARM64_PAGEBASE_REL2 = 0x0004,
|
|
||||||
IMAGE_REL_ARM64_REL21 = 0x0005,
|
|
||||||
IMAGE_REL_ARM64_PAGEOFFSET_12A = 0x0006,
|
|
||||||
IMAGE_REL_ARM64_PAGEOFFSET_12L = 0x0007,
|
|
||||||
IMAGE_REL_ARM64_SECREL = 0x0008,
|
|
||||||
IMAGE_REL_ARM64_SECREL_LOW12A = 0x0009,
|
|
||||||
IMAGE_REL_ARM64_SECREL_HIGH12A = 0x000A,
|
|
||||||
IMAGE_REL_ARM64_SECREL_LOW12L = 0x000B,
|
|
||||||
IMAGE_REL_ARM64_TOKEN = 0x000C,
|
|
||||||
IMAGE_REL_ARM64_SECTION = 0x000D,
|
|
||||||
IMAGE_REL_ARM64_ADDR64 = 0x000E,
|
|
||||||
IMAGE_REL_ARM64_BRANCH19 = 0x000F,
|
|
||||||
IMAGE_REL_ARM64_BRANCH14 = 0x0010,
|
|
||||||
};
|
|
||||||
|
|
||||||
enum COMDATType {
|
|
||||||
IMAGE_COMDAT_SELECT_NODUPLICATES = 1,
|
|
||||||
IMAGE_COMDAT_SELECT_ANY,
|
|
||||||
IMAGE_COMDAT_SELECT_SAME_SIZE,
|
|
||||||
IMAGE_COMDAT_SELECT_EXACT_MATCH,
|
|
||||||
IMAGE_COMDAT_SELECT_ASSOCIATIVE,
|
|
||||||
IMAGE_COMDAT_SELECT_LARGEST,
|
|
||||||
IMAGE_COMDAT_SELECT_NEWEST
|
|
||||||
};
|
|
||||||
|
|
||||||
// Auxiliary Symbol Formats
|
|
||||||
struct AuxiliaryFunctionDefinition {
|
|
||||||
uint32_t TagIndex;
|
|
||||||
uint32_t TotalSize;
|
|
||||||
uint32_t PointerToLinenumber;
|
|
||||||
uint32_t PointerToNextFunction;
|
|
||||||
char unused[2];
|
|
||||||
};
|
|
||||||
|
|
||||||
struct AuxiliarybfAndefSymbol {
|
|
||||||
uint8_t unused1[4];
|
|
||||||
uint16_t Linenumber;
|
|
||||||
uint8_t unused2[6];
|
|
||||||
uint32_t PointerToNextFunction;
|
|
||||||
uint8_t unused3[2];
|
|
||||||
};
|
|
||||||
|
|
||||||
struct AuxiliaryWeakExternal {
|
|
||||||
uint32_t TagIndex;
|
|
||||||
uint32_t Characteristics;
|
|
||||||
uint8_t unused[10];
|
|
||||||
};
|
|
||||||
|
|
||||||
enum WeakExternalCharacteristics {
|
|
||||||
IMAGE_WEAK_EXTERN_SEARCH_NOLIBRARY = 1,
|
|
||||||
IMAGE_WEAK_EXTERN_SEARCH_LIBRARY = 2,
|
|
||||||
IMAGE_WEAK_EXTERN_SEARCH_ALIAS = 3
|
|
||||||
};
|
|
||||||
|
|
||||||
struct AuxiliarySectionDefinition {
|
|
||||||
uint32_t Length;
|
|
||||||
uint16_t NumberOfRelocations;
|
|
||||||
uint16_t NumberOfLinenumbers;
|
|
||||||
uint32_t CheckSum;
|
|
||||||
uint32_t Number;
|
|
||||||
uint8_t Selection;
|
|
||||||
char unused;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct AuxiliaryCLRToken {
|
|
||||||
uint8_t AuxType;
|
|
||||||
uint8_t unused1;
|
|
||||||
uint32_t SymbolTableIndex;
|
|
||||||
char unused2[12];
|
|
||||||
};
|
|
||||||
|
|
||||||
union Auxiliary {
|
|
||||||
AuxiliaryFunctionDefinition FunctionDefinition;
|
|
||||||
AuxiliarybfAndefSymbol bfAndefSymbol;
|
|
||||||
AuxiliaryWeakExternal WeakExternal;
|
|
||||||
AuxiliarySectionDefinition SectionDefinition;
|
|
||||||
};
|
|
||||||
|
|
||||||
/// @brief The Import Directory Table.
|
|
||||||
///
|
|
||||||
/// There is a single array of these and one entry per imported DLL.
|
|
||||||
struct ImportDirectoryTableEntry {
|
|
||||||
uint32_t ImportLookupTableRVA;
|
|
||||||
uint32_t TimeDateStamp;
|
|
||||||
uint32_t ForwarderChain;
|
|
||||||
uint32_t NameRVA;
|
|
||||||
uint32_t ImportAddressTableRVA;
|
|
||||||
};
|
|
||||||
|
|
||||||
/// @brief The PE32 Import Lookup Table.
|
|
||||||
///
|
|
||||||
/// There is an array of these for each imported DLL. It represents either
|
|
||||||
/// the ordinal to import from the target DLL, or a name to lookup and import
|
|
||||||
/// from the target DLL.
|
|
||||||
///
|
|
||||||
/// This also happens to be the same format used by the Import Address Table
|
|
||||||
/// when it is initially written out to the image.
|
|
||||||
struct ImportLookupTableEntry32 {
|
|
||||||
uint32_t data;
|
|
||||||
|
|
||||||
/// @brief Is this entry specified by ordinal, or name?
|
|
||||||
bool isOrdinal() const { return data & 0x80000000; }
|
|
||||||
|
|
||||||
/// @brief Get the ordinal value of this entry. isOrdinal must be true.
|
|
||||||
uint16_t getOrdinal() const {
|
|
||||||
assert(isOrdinal() && "ILT entry is not an ordinal!");
|
|
||||||
return data & 0xFFFF;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// @brief Set the ordinal value and set isOrdinal to true.
|
|
||||||
void setOrdinal(uint16_t o) {
|
|
||||||
data = o;
|
|
||||||
data |= 0x80000000;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// @brief Get the Hint/Name entry RVA. isOrdinal must be false.
|
|
||||||
uint32_t getHintNameRVA() const {
|
|
||||||
assert(!isOrdinal() && "ILT entry is not a Hint/Name RVA!");
|
|
||||||
return data;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// @brief Set the Hint/Name entry RVA and set isOrdinal to false.
|
|
||||||
void setHintNameRVA(uint32_t rva) { data = rva; }
|
|
||||||
};
|
|
||||||
|
|
||||||
/// @brief The DOS compatible header at the front of all PEs.
|
|
||||||
struct DOSHeader {
|
|
||||||
uint16_t Magic;
|
|
||||||
uint16_t UsedBytesInTheLastPage;
|
|
||||||
uint16_t FileSizeInPages;
|
|
||||||
uint16_t NumberOfRelocationItems;
|
|
||||||
uint16_t HeaderSizeInParagraphs;
|
|
||||||
uint16_t MinimumExtraParagraphs;
|
|
||||||
uint16_t MaximumExtraParagraphs;
|
|
||||||
uint16_t InitialRelativeSS;
|
|
||||||
uint16_t InitialSP;
|
|
||||||
uint16_t Checksum;
|
|
||||||
uint16_t InitialIP;
|
|
||||||
uint16_t InitialRelativeCS;
|
|
||||||
uint16_t AddressOfRelocationTable;
|
|
||||||
uint16_t OverlayNumber;
|
|
||||||
uint16_t Reserved[4];
|
|
||||||
uint16_t OEMid;
|
|
||||||
uint16_t OEMinfo;
|
|
||||||
uint16_t Reserved2[10];
|
|
||||||
uint32_t AddressOfNewExeHeader;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct PE32Header {
|
|
||||||
enum {
|
|
||||||
PE32 = 0x10b,
|
|
||||||
PE32_PLUS = 0x20b
|
|
||||||
};
|
|
||||||
|
|
||||||
uint16_t Magic;
|
|
||||||
uint8_t MajorLinkerVersion;
|
|
||||||
uint8_t MinorLinkerVersion;
|
|
||||||
uint32_t SizeOfCode;
|
|
||||||
uint32_t SizeOfInitializedData;
|
|
||||||
uint32_t SizeOfUninitializedData;
|
|
||||||
uint32_t AddressOfEntryPoint; // RVA
|
|
||||||
uint32_t BaseOfCode; // RVA
|
|
||||||
uint32_t BaseOfData; // RVA
|
|
||||||
uint32_t ImageBase;
|
|
||||||
uint32_t SectionAlignment;
|
|
||||||
uint32_t FileAlignment;
|
|
||||||
uint16_t MajorOperatingSystemVersion;
|
|
||||||
uint16_t MinorOperatingSystemVersion;
|
|
||||||
uint16_t MajorImageVersion;
|
|
||||||
uint16_t MinorImageVersion;
|
|
||||||
uint16_t MajorSubsystemVersion;
|
|
||||||
uint16_t MinorSubsystemVersion;
|
|
||||||
uint32_t Win32VersionValue;
|
|
||||||
uint32_t SizeOfImage;
|
|
||||||
uint32_t SizeOfHeaders;
|
|
||||||
uint32_t CheckSum;
|
|
||||||
uint16_t Subsystem;
|
|
||||||
// FIXME: This should be DllCharacteristics to match the COFF spec.
|
|
||||||
uint16_t DLLCharacteristics;
|
|
||||||
uint32_t SizeOfStackReserve;
|
|
||||||
uint32_t SizeOfStackCommit;
|
|
||||||
uint32_t SizeOfHeapReserve;
|
|
||||||
uint32_t SizeOfHeapCommit;
|
|
||||||
uint32_t LoaderFlags;
|
|
||||||
// FIXME: This should be NumberOfRvaAndSizes to match the COFF spec.
|
|
||||||
uint32_t NumberOfRvaAndSize;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct DataDirectory {
|
|
||||||
uint32_t RelativeVirtualAddress;
|
|
||||||
uint32_t Size;
|
|
||||||
};
|
|
||||||
|
|
||||||
enum DataDirectoryIndex {
|
|
||||||
EXPORT_TABLE = 0,
|
|
||||||
IMPORT_TABLE,
|
|
||||||
RESOURCE_TABLE,
|
|
||||||
EXCEPTION_TABLE,
|
|
||||||
CERTIFICATE_TABLE,
|
|
||||||
BASE_RELOCATION_TABLE,
|
|
||||||
DEBUG_DIRECTORY,
|
|
||||||
ARCHITECTURE,
|
|
||||||
GLOBAL_PTR,
|
|
||||||
TLS_TABLE,
|
|
||||||
LOAD_CONFIG_TABLE,
|
|
||||||
BOUND_IMPORT,
|
|
||||||
IAT,
|
|
||||||
DELAY_IMPORT_DESCRIPTOR,
|
|
||||||
CLR_RUNTIME_HEADER,
|
|
||||||
|
|
||||||
NUM_DATA_DIRECTORIES
|
|
||||||
};
|
|
||||||
|
|
||||||
enum WindowsSubsystem {
|
|
||||||
IMAGE_SUBSYSTEM_UNKNOWN = 0, ///< An unknown subsystem.
|
|
||||||
IMAGE_SUBSYSTEM_NATIVE = 1, ///< Device drivers and native Windows processes
|
|
||||||
IMAGE_SUBSYSTEM_WINDOWS_GUI = 2, ///< The Windows GUI subsystem.
|
|
||||||
IMAGE_SUBSYSTEM_WINDOWS_CUI = 3, ///< The Windows character subsystem.
|
|
||||||
IMAGE_SUBSYSTEM_OS2_CUI = 5, ///< The OS/2 character subsytem.
|
|
||||||
IMAGE_SUBSYSTEM_POSIX_CUI = 7, ///< The POSIX character subsystem.
|
|
||||||
IMAGE_SUBSYSTEM_NATIVE_WINDOWS = 8, ///< Native Windows 9x driver.
|
|
||||||
IMAGE_SUBSYSTEM_WINDOWS_CE_GUI = 9, ///< Windows CE.
|
|
||||||
IMAGE_SUBSYSTEM_EFI_APPLICATION = 10, ///< An EFI application.
|
|
||||||
IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER = 11, ///< An EFI driver with boot
|
|
||||||
/// services.
|
|
||||||
IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER = 12, ///< An EFI driver with run-time
|
|
||||||
/// services.
|
|
||||||
IMAGE_SUBSYSTEM_EFI_ROM = 13, ///< An EFI ROM image.
|
|
||||||
IMAGE_SUBSYSTEM_XBOX = 14, ///< XBOX.
|
|
||||||
IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION = 16 ///< A BCD application.
|
|
||||||
};
|
|
||||||
|
|
||||||
enum DLLCharacteristics {
|
|
||||||
/// ASLR with 64 bit address space.
|
|
||||||
IMAGE_DLL_CHARACTERISTICS_HIGH_ENTROPY_VA = 0x0020,
|
|
||||||
/// DLL can be relocated at load time.
|
|
||||||
IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE = 0x0040,
|
|
||||||
/// Code integrity checks are enforced.
|
|
||||||
IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY = 0x0080,
|
|
||||||
///< Image is NX compatible.
|
|
||||||
IMAGE_DLL_CHARACTERISTICS_NX_COMPAT = 0x0100,
|
|
||||||
/// Isolation aware, but do not isolate the image.
|
|
||||||
IMAGE_DLL_CHARACTERISTICS_NO_ISOLATION = 0x0200,
|
|
||||||
/// Does not use structured exception handling (SEH). No SEH handler may be
|
|
||||||
/// called in this image.
|
|
||||||
IMAGE_DLL_CHARACTERISTICS_NO_SEH = 0x0400,
|
|
||||||
/// Do not bind the image.
|
|
||||||
IMAGE_DLL_CHARACTERISTICS_NO_BIND = 0x0800,
|
|
||||||
///< Image should execute in an AppContainer.
|
|
||||||
IMAGE_DLL_CHARACTERISTICS_APPCONTAINER = 0x1000,
|
|
||||||
///< A WDM driver.
|
|
||||||
IMAGE_DLL_CHARACTERISTICS_WDM_DRIVER = 0x2000,
|
|
||||||
///< Image supports Control Flow Guard.
|
|
||||||
IMAGE_DLL_CHARACTERISTICS_GUARD_CF = 0x4000,
|
|
||||||
/// Terminal Server aware.
|
|
||||||
IMAGE_DLL_CHARACTERISTICS_TERMINAL_SERVER_AWARE = 0x8000
|
|
||||||
};
|
|
||||||
|
|
||||||
enum DebugType {
|
|
||||||
IMAGE_DEBUG_TYPE_UNKNOWN = 0,
|
|
||||||
IMAGE_DEBUG_TYPE_COFF = 1,
|
|
||||||
IMAGE_DEBUG_TYPE_CODEVIEW = 2,
|
|
||||||
IMAGE_DEBUG_TYPE_FPO = 3,
|
|
||||||
IMAGE_DEBUG_TYPE_MISC = 4,
|
|
||||||
IMAGE_DEBUG_TYPE_EXCEPTION = 5,
|
|
||||||
IMAGE_DEBUG_TYPE_FIXUP = 6,
|
|
||||||
IMAGE_DEBUG_TYPE_OMAP_TO_SRC = 7,
|
|
||||||
IMAGE_DEBUG_TYPE_OMAP_FROM_SRC = 8,
|
|
||||||
IMAGE_DEBUG_TYPE_BORLAND = 9,
|
|
||||||
IMAGE_DEBUG_TYPE_RESERVED10 = 10,
|
|
||||||
IMAGE_DEBUG_TYPE_CLSID = 11,
|
|
||||||
IMAGE_DEBUG_TYPE_VC_FEATURE = 12,
|
|
||||||
IMAGE_DEBUG_TYPE_POGO = 13,
|
|
||||||
IMAGE_DEBUG_TYPE_ILTCG = 14,
|
|
||||||
IMAGE_DEBUG_TYPE_MPX = 15,
|
|
||||||
IMAGE_DEBUG_TYPE_REPRO = 16,
|
|
||||||
};
|
|
||||||
|
|
||||||
enum BaseRelocationType {
|
|
||||||
IMAGE_REL_BASED_ABSOLUTE = 0,
|
|
||||||
IMAGE_REL_BASED_HIGH = 1,
|
|
||||||
IMAGE_REL_BASED_LOW = 2,
|
|
||||||
IMAGE_REL_BASED_HIGHLOW = 3,
|
|
||||||
IMAGE_REL_BASED_HIGHADJ = 4,
|
|
||||||
IMAGE_REL_BASED_MIPS_JMPADDR = 5,
|
|
||||||
IMAGE_REL_BASED_ARM_MOV32A = 5,
|
|
||||||
IMAGE_REL_BASED_ARM_MOV32T = 7,
|
|
||||||
IMAGE_REL_BASED_MIPS_JMPADDR16 = 9,
|
|
||||||
IMAGE_REL_BASED_DIR64 = 10
|
|
||||||
};
|
|
||||||
|
|
||||||
enum ImportType {
|
|
||||||
IMPORT_CODE = 0,
|
|
||||||
IMPORT_DATA = 1,
|
|
||||||
IMPORT_CONST = 2
|
|
||||||
};
|
|
||||||
|
|
||||||
enum ImportNameType {
|
|
||||||
/// Import is by ordinal. This indicates that the value in the Ordinal/Hint
|
|
||||||
/// field of the import header is the import's ordinal. If this constant is
|
|
||||||
/// not specified, then the Ordinal/Hint field should always be interpreted
|
|
||||||
/// as the import's hint.
|
|
||||||
IMPORT_ORDINAL = 0,
|
|
||||||
/// The import name is identical to the public symbol name
|
|
||||||
IMPORT_NAME = 1,
|
|
||||||
/// The import name is the public symbol name, but skipping the leading ?,
|
|
||||||
/// @, or optionally _.
|
|
||||||
IMPORT_NAME_NOPREFIX = 2,
|
|
||||||
/// The import name is the public symbol name, but skipping the leading ?,
|
|
||||||
/// @, or optionally _, and truncating at the first @.
|
|
||||||
IMPORT_NAME_UNDECORATE = 3
|
|
||||||
};
|
|
||||||
|
|
||||||
struct ImportHeader {
|
|
||||||
uint16_t Sig1; ///< Must be IMAGE_FILE_MACHINE_UNKNOWN (0).
|
|
||||||
uint16_t Sig2; ///< Must be 0xFFFF.
|
|
||||||
uint16_t Version;
|
|
||||||
uint16_t Machine;
|
|
||||||
uint32_t TimeDateStamp;
|
|
||||||
uint32_t SizeOfData;
|
|
||||||
uint16_t OrdinalHint;
|
|
||||||
uint16_t TypeInfo;
|
|
||||||
|
|
||||||
ImportType getType() const {
|
|
||||||
return static_cast<ImportType>(TypeInfo & 0x3);
|
|
||||||
}
|
|
||||||
|
|
||||||
ImportNameType getNameType() const {
|
|
||||||
return static_cast<ImportNameType>((TypeInfo & 0x1C) >> 2);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
enum CodeViewIdentifiers {
|
|
||||||
DEBUG_SECTION_MAGIC = 0x4,
|
|
||||||
};
|
|
||||||
|
|
||||||
inline bool isReservedSectionNumber(int32_t SectionNumber) {
|
|
||||||
return SectionNumber <= 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
} // End namespace COFF.
|
|
||||||
} // End namespace llvm.
|
|
||||||
|
|
||||||
#endif
|
|
@ -233,50 +233,6 @@ public:
|
|||||||
void permissions(perms p) { Perms = p; }
|
void permissions(perms p) { Perms = p; }
|
||||||
};
|
};
|
||||||
|
|
||||||
/// file_magic - An "enum class" enumeration of file types based on magic (the first
|
|
||||||
/// N bytes of the file).
|
|
||||||
struct file_magic {
|
|
||||||
enum Impl {
|
|
||||||
unknown = 0, ///< Unrecognized file
|
|
||||||
bitcode, ///< Bitcode file
|
|
||||||
archive, ///< ar style archive file
|
|
||||||
elf, ///< ELF Unknown type
|
|
||||||
elf_relocatable, ///< ELF Relocatable object file
|
|
||||||
elf_executable, ///< ELF Executable image
|
|
||||||
elf_shared_object, ///< ELF dynamically linked shared lib
|
|
||||||
elf_core, ///< ELF core image
|
|
||||||
macho_object, ///< Mach-O Object file
|
|
||||||
macho_executable, ///< Mach-O Executable
|
|
||||||
macho_fixed_virtual_memory_shared_lib, ///< Mach-O Shared Lib, FVM
|
|
||||||
macho_core, ///< Mach-O Core File
|
|
||||||
macho_preload_executable, ///< Mach-O Preloaded Executable
|
|
||||||
macho_dynamically_linked_shared_lib, ///< Mach-O dynlinked shared lib
|
|
||||||
macho_dynamic_linker, ///< The Mach-O dynamic linker
|
|
||||||
macho_bundle, ///< Mach-O Bundle file
|
|
||||||
macho_dynamically_linked_shared_lib_stub, ///< Mach-O Shared lib stub
|
|
||||||
macho_dsym_companion, ///< Mach-O dSYM companion file
|
|
||||||
macho_kext_bundle, ///< Mach-O kext bundle file
|
|
||||||
macho_universal_binary, ///< Mach-O universal binary
|
|
||||||
coff_cl_gl_object, ///< Microsoft cl.exe's intermediate code file
|
|
||||||
coff_object, ///< COFF object file
|
|
||||||
coff_import_library, ///< COFF import library
|
|
||||||
pecoff_executable, ///< PECOFF executable file
|
|
||||||
windows_resource, ///< Windows compiled resource file (.res)
|
|
||||||
wasm_object ///< WebAssembly Object file
|
|
||||||
};
|
|
||||||
|
|
||||||
bool is_object() const {
|
|
||||||
return V != unknown;
|
|
||||||
}
|
|
||||||
|
|
||||||
file_magic() = default;
|
|
||||||
file_magic(Impl V) : V(V) {}
|
|
||||||
operator Impl() const { return V; }
|
|
||||||
|
|
||||||
private:
|
|
||||||
Impl V = unknown;
|
|
||||||
};
|
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
/// @name Physical Operators
|
/// @name Physical Operators
|
||||||
/// @{
|
/// @{
|
||||||
@ -770,17 +726,6 @@ std::error_code openFileForWrite(const Twine &Name, int &ResultFD,
|
|||||||
std::error_code openFileForRead(const Twine &Name, int &ResultFD,
|
std::error_code openFileForRead(const Twine &Name, int &ResultFD,
|
||||||
SmallVectorImpl<char> *RealPath = nullptr);
|
SmallVectorImpl<char> *RealPath = nullptr);
|
||||||
|
|
||||||
/// @brief Identify the type of a binary file based on how magical it is.
|
|
||||||
file_magic identify_magic(StringRef magic);
|
|
||||||
|
|
||||||
/// @brief Get and identify \a path's type based on its content.
|
|
||||||
///
|
|
||||||
/// @param path Input path.
|
|
||||||
/// @param result Set to the type of file, or file_magic::unknown.
|
|
||||||
/// @returns errc::success if result has been successfully set, otherwise a
|
|
||||||
/// platform-specific error_code.
|
|
||||||
std::error_code identify_magic(const Twine &path, file_magic &result);
|
|
||||||
|
|
||||||
std::error_code getUniqueID(const Twine Path, UniqueID &Result);
|
std::error_code getUniqueID(const Twine Path, UniqueID &Result);
|
||||||
|
|
||||||
/// @brief Get disk space usage information.
|
/// @brief Get disk space usage information.
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -18,6 +18,7 @@
|
|||||||
#include "llvm/ADT/STLExtras.h"
|
#include "llvm/ADT/STLExtras.h"
|
||||||
#include "llvm/ADT/SmallPtrSet.h"
|
#include "llvm/ADT/SmallPtrSet.h"
|
||||||
#include "llvm/AsmParser/SlotMapping.h"
|
#include "llvm/AsmParser/SlotMapping.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/IR/Argument.h"
|
#include "llvm/IR/Argument.h"
|
||||||
#include "llvm/IR/AutoUpgrade.h"
|
#include "llvm/IR/AutoUpgrade.h"
|
||||||
#include "llvm/IR/BasicBlock.h"
|
#include "llvm/IR/BasicBlock.h"
|
||||||
@ -41,7 +42,6 @@
|
|||||||
#include "llvm/IR/Value.h"
|
#include "llvm/IR/Value.h"
|
||||||
#include "llvm/IR/ValueSymbolTable.h"
|
#include "llvm/IR/ValueSymbolTable.h"
|
||||||
#include "llvm/Support/Casting.h"
|
#include "llvm/Support/Casting.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/ErrorHandling.h"
|
#include "llvm/Support/ErrorHandling.h"
|
||||||
#include "llvm/Support/MathExtras.h"
|
#include "llvm/Support/MathExtras.h"
|
||||||
#include "llvm/Support/SaveAndRestore.h"
|
#include "llvm/Support/SaveAndRestore.h"
|
||||||
|
8
lib/BinaryFormat/CMakeLists.txt
Normal file
8
lib/BinaryFormat/CMakeLists.txt
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
add_llvm_library(LLVMBinaryFormat
|
||||||
|
Dwarf.cpp
|
||||||
|
Magic.cpp
|
||||||
|
|
||||||
|
ADDITIONAL_HEADER_DIRS
|
||||||
|
${LLVM_MAIN_INCLUDE_DIR}/llvm/BinaryFormat
|
||||||
|
)
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
//===-- llvm/Support/Dwarf.cpp - Dwarf Framework ----------------*- C++ -*-===//
|
//===-- llvm/BinaryFormat/Dwarf.cpp - Dwarf Framework ------------*- C++-*-===//
|
||||||
//
|
//
|
||||||
// The LLVM Compiler Infrastructure
|
// The LLVM Compiler Infrastructure
|
||||||
//
|
//
|
||||||
@ -11,7 +11,7 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "llvm/Support/Dwarf.h"
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/ADT/StringSwitch.h"
|
#include "llvm/ADT/StringSwitch.h"
|
||||||
#include "llvm/Support/ErrorHandling.h"
|
#include "llvm/Support/ErrorHandling.h"
|
||||||
|
|
||||||
@ -25,15 +25,15 @@ StringRef llvm::dwarf::TagString(unsigned Tag) {
|
|||||||
#define HANDLE_DW_TAG(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_TAG(ID, NAME, VERSION, VENDOR) \
|
||||||
case DW_TAG_##NAME: \
|
case DW_TAG_##NAME: \
|
||||||
return "DW_TAG_" #NAME;
|
return "DW_TAG_" #NAME;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned llvm::dwarf::getTag(StringRef TagString) {
|
unsigned llvm::dwarf::getTag(StringRef TagString) {
|
||||||
return StringSwitch<unsigned>(TagString)
|
return StringSwitch<unsigned>(TagString)
|
||||||
#define HANDLE_DW_TAG(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_TAG(ID, NAME, VERSION, VENDOR) \
|
||||||
.Case("DW_TAG_" #NAME, DW_TAG_##NAME)
|
.Case("DW_TAG_" #NAME, DW_TAG_##NAME)
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
.Default(DW_TAG_invalid);
|
.Default(DW_TAG_invalid);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -44,7 +44,7 @@ unsigned llvm::dwarf::TagVersion(dwarf::Tag Tag) {
|
|||||||
#define HANDLE_DW_TAG(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_TAG(ID, NAME, VERSION, VENDOR) \
|
||||||
case DW_TAG_##NAME: \
|
case DW_TAG_##NAME: \
|
||||||
return VERSION;
|
return VERSION;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -55,14 +55,16 @@ unsigned llvm::dwarf::TagVendor(dwarf::Tag Tag) {
|
|||||||
#define HANDLE_DW_TAG(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_TAG(ID, NAME, VERSION, VENDOR) \
|
||||||
case DW_TAG_##NAME: \
|
case DW_TAG_##NAME: \
|
||||||
return DWARF_VENDOR_##VENDOR;
|
return DWARF_VENDOR_##VENDOR;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
StringRef llvm::dwarf::ChildrenString(unsigned Children) {
|
StringRef llvm::dwarf::ChildrenString(unsigned Children) {
|
||||||
switch (Children) {
|
switch (Children) {
|
||||||
case DW_CHILDREN_no: return "DW_CHILDREN_no";
|
case DW_CHILDREN_no:
|
||||||
case DW_CHILDREN_yes: return "DW_CHILDREN_yes";
|
return "DW_CHILDREN_no";
|
||||||
|
case DW_CHILDREN_yes:
|
||||||
|
return "DW_CHILDREN_yes";
|
||||||
}
|
}
|
||||||
return StringRef();
|
return StringRef();
|
||||||
}
|
}
|
||||||
@ -74,7 +76,7 @@ StringRef llvm::dwarf::AttributeString(unsigned Attribute) {
|
|||||||
#define HANDLE_DW_AT(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_AT(ID, NAME, VERSION, VENDOR) \
|
||||||
case DW_AT_##NAME: \
|
case DW_AT_##NAME: \
|
||||||
return "DW_AT_" #NAME;
|
return "DW_AT_" #NAME;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -85,7 +87,7 @@ unsigned llvm::dwarf::AttributeVersion(dwarf::Attribute Attribute) {
|
|||||||
#define HANDLE_DW_AT(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_AT(ID, NAME, VERSION, VENDOR) \
|
||||||
case DW_AT_##NAME: \
|
case DW_AT_##NAME: \
|
||||||
return VERSION;
|
return VERSION;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -96,7 +98,7 @@ unsigned llvm::dwarf::AttributeVendor(dwarf::Attribute Attribute) {
|
|||||||
#define HANDLE_DW_AT(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_AT(ID, NAME, VERSION, VENDOR) \
|
||||||
case DW_AT_##NAME: \
|
case DW_AT_##NAME: \
|
||||||
return DWARF_VENDOR_##VENDOR;
|
return DWARF_VENDOR_##VENDOR;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -107,7 +109,7 @@ StringRef llvm::dwarf::FormEncodingString(unsigned Encoding) {
|
|||||||
#define HANDLE_DW_FORM(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_FORM(ID, NAME, VERSION, VENDOR) \
|
||||||
case DW_FORM_##NAME: \
|
case DW_FORM_##NAME: \
|
||||||
return "DW_FORM_" #NAME;
|
return "DW_FORM_" #NAME;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -118,7 +120,7 @@ unsigned llvm::dwarf::FormVersion(dwarf::Form Form) {
|
|||||||
#define HANDLE_DW_FORM(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_FORM(ID, NAME, VERSION, VENDOR) \
|
||||||
case DW_FORM_##NAME: \
|
case DW_FORM_##NAME: \
|
||||||
return VERSION;
|
return VERSION;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -129,7 +131,7 @@ unsigned llvm::dwarf::FormVendor(dwarf::Form Form) {
|
|||||||
#define HANDLE_DW_FORM(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_FORM(ID, NAME, VERSION, VENDOR) \
|
||||||
case DW_FORM_##NAME: \
|
case DW_FORM_##NAME: \
|
||||||
return DWARF_VENDOR_##VENDOR;
|
return DWARF_VENDOR_##VENDOR;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -140,7 +142,7 @@ StringRef llvm::dwarf::OperationEncodingString(unsigned Encoding) {
|
|||||||
#define HANDLE_DW_OP(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_OP(ID, NAME, VERSION, VENDOR) \
|
||||||
case DW_OP_##NAME: \
|
case DW_OP_##NAME: \
|
||||||
return "DW_OP_" #NAME;
|
return "DW_OP_" #NAME;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
case DW_OP_LLVM_fragment:
|
case DW_OP_LLVM_fragment:
|
||||||
return "DW_OP_LLVM_fragment";
|
return "DW_OP_LLVM_fragment";
|
||||||
}
|
}
|
||||||
@ -149,8 +151,8 @@ StringRef llvm::dwarf::OperationEncodingString(unsigned Encoding) {
|
|||||||
unsigned llvm::dwarf::getOperationEncoding(StringRef OperationEncodingString) {
|
unsigned llvm::dwarf::getOperationEncoding(StringRef OperationEncodingString) {
|
||||||
return StringSwitch<unsigned>(OperationEncodingString)
|
return StringSwitch<unsigned>(OperationEncodingString)
|
||||||
#define HANDLE_DW_OP(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_OP(ID, NAME, VERSION, VENDOR) \
|
||||||
.Case("DW_OP_" #NAME, DW_OP_##NAME)
|
.Case("DW_OP_" #NAME, DW_OP_##NAME)
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
.Case("DW_OP_LLVM_fragment", DW_OP_LLVM_fragment)
|
.Case("DW_OP_LLVM_fragment", DW_OP_LLVM_fragment)
|
||||||
.Default(0);
|
.Default(0);
|
||||||
}
|
}
|
||||||
@ -162,7 +164,7 @@ unsigned llvm::dwarf::OperationVersion(dwarf::LocationAtom Op) {
|
|||||||
#define HANDLE_DW_OP(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_OP(ID, NAME, VERSION, VENDOR) \
|
||||||
case DW_OP_##NAME: \
|
case DW_OP_##NAME: \
|
||||||
return VERSION;
|
return VERSION;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -173,7 +175,7 @@ unsigned llvm::dwarf::OperationVendor(dwarf::LocationAtom Op) {
|
|||||||
#define HANDLE_DW_OP(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_OP(ID, NAME, VERSION, VENDOR) \
|
||||||
case DW_OP_##NAME: \
|
case DW_OP_##NAME: \
|
||||||
return DWARF_VENDOR_##VENDOR;
|
return DWARF_VENDOR_##VENDOR;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -184,15 +186,15 @@ StringRef llvm::dwarf::AttributeEncodingString(unsigned Encoding) {
|
|||||||
#define HANDLE_DW_ATE(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_ATE(ID, NAME, VERSION, VENDOR) \
|
||||||
case DW_ATE_##NAME: \
|
case DW_ATE_##NAME: \
|
||||||
return "DW_ATE_" #NAME;
|
return "DW_ATE_" #NAME;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned llvm::dwarf::getAttributeEncoding(StringRef EncodingString) {
|
unsigned llvm::dwarf::getAttributeEncoding(StringRef EncodingString) {
|
||||||
return StringSwitch<unsigned>(EncodingString)
|
return StringSwitch<unsigned>(EncodingString)
|
||||||
#define HANDLE_DW_ATE(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_ATE(ID, NAME, VERSION, VENDOR) \
|
||||||
.Case("DW_ATE_" #NAME, DW_ATE_##NAME)
|
.Case("DW_ATE_" #NAME, DW_ATE_##NAME)
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
.Default(0);
|
.Default(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -203,7 +205,7 @@ unsigned llvm::dwarf::AttributeEncodingVersion(dwarf::TypeKind ATE) {
|
|||||||
#define HANDLE_DW_ATE(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_ATE(ID, NAME, VERSION, VENDOR) \
|
||||||
case DW_ATE_##NAME: \
|
case DW_ATE_##NAME: \
|
||||||
return VERSION;
|
return VERSION;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -214,28 +216,38 @@ unsigned llvm::dwarf::AttributeEncodingVendor(dwarf::TypeKind ATE) {
|
|||||||
#define HANDLE_DW_ATE(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_ATE(ID, NAME, VERSION, VENDOR) \
|
||||||
case DW_ATE_##NAME: \
|
case DW_ATE_##NAME: \
|
||||||
return DWARF_VENDOR_##VENDOR;
|
return DWARF_VENDOR_##VENDOR;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
StringRef llvm::dwarf::DecimalSignString(unsigned Sign) {
|
StringRef llvm::dwarf::DecimalSignString(unsigned Sign) {
|
||||||
switch (Sign) {
|
switch (Sign) {
|
||||||
case DW_DS_unsigned: return "DW_DS_unsigned";
|
case DW_DS_unsigned:
|
||||||
case DW_DS_leading_overpunch: return "DW_DS_leading_overpunch";
|
return "DW_DS_unsigned";
|
||||||
case DW_DS_trailing_overpunch: return "DW_DS_trailing_overpunch";
|
case DW_DS_leading_overpunch:
|
||||||
case DW_DS_leading_separate: return "DW_DS_leading_separate";
|
return "DW_DS_leading_overpunch";
|
||||||
case DW_DS_trailing_separate: return "DW_DS_trailing_separate";
|
case DW_DS_trailing_overpunch:
|
||||||
|
return "DW_DS_trailing_overpunch";
|
||||||
|
case DW_DS_leading_separate:
|
||||||
|
return "DW_DS_leading_separate";
|
||||||
|
case DW_DS_trailing_separate:
|
||||||
|
return "DW_DS_trailing_separate";
|
||||||
}
|
}
|
||||||
return StringRef();
|
return StringRef();
|
||||||
}
|
}
|
||||||
|
|
||||||
StringRef llvm::dwarf::EndianityString(unsigned Endian) {
|
StringRef llvm::dwarf::EndianityString(unsigned Endian) {
|
||||||
switch (Endian) {
|
switch (Endian) {
|
||||||
case DW_END_default: return "DW_END_default";
|
case DW_END_default:
|
||||||
case DW_END_big: return "DW_END_big";
|
return "DW_END_default";
|
||||||
case DW_END_little: return "DW_END_little";
|
case DW_END_big:
|
||||||
case DW_END_lo_user: return "DW_END_lo_user";
|
return "DW_END_big";
|
||||||
case DW_END_hi_user: return "DW_END_hi_user";
|
case DW_END_little:
|
||||||
|
return "DW_END_little";
|
||||||
|
case DW_END_lo_user:
|
||||||
|
return "DW_END_lo_user";
|
||||||
|
case DW_END_hi_user:
|
||||||
|
return "DW_END_hi_user";
|
||||||
}
|
}
|
||||||
return StringRef();
|
return StringRef();
|
||||||
}
|
}
|
||||||
@ -243,18 +255,24 @@ StringRef llvm::dwarf::EndianityString(unsigned Endian) {
|
|||||||
StringRef llvm::dwarf::AccessibilityString(unsigned Access) {
|
StringRef llvm::dwarf::AccessibilityString(unsigned Access) {
|
||||||
switch (Access) {
|
switch (Access) {
|
||||||
// Accessibility codes
|
// Accessibility codes
|
||||||
case DW_ACCESS_public: return "DW_ACCESS_public";
|
case DW_ACCESS_public:
|
||||||
case DW_ACCESS_protected: return "DW_ACCESS_protected";
|
return "DW_ACCESS_public";
|
||||||
case DW_ACCESS_private: return "DW_ACCESS_private";
|
case DW_ACCESS_protected:
|
||||||
|
return "DW_ACCESS_protected";
|
||||||
|
case DW_ACCESS_private:
|
||||||
|
return "DW_ACCESS_private";
|
||||||
}
|
}
|
||||||
return StringRef();
|
return StringRef();
|
||||||
}
|
}
|
||||||
|
|
||||||
StringRef llvm::dwarf::VisibilityString(unsigned Visibility) {
|
StringRef llvm::dwarf::VisibilityString(unsigned Visibility) {
|
||||||
switch (Visibility) {
|
switch (Visibility) {
|
||||||
case DW_VIS_local: return "DW_VIS_local";
|
case DW_VIS_local:
|
||||||
case DW_VIS_exported: return "DW_VIS_exported";
|
return "DW_VIS_local";
|
||||||
case DW_VIS_qualified: return "DW_VIS_qualified";
|
case DW_VIS_exported:
|
||||||
|
return "DW_VIS_exported";
|
||||||
|
case DW_VIS_qualified:
|
||||||
|
return "DW_VIS_qualified";
|
||||||
}
|
}
|
||||||
return StringRef();
|
return StringRef();
|
||||||
}
|
}
|
||||||
@ -266,7 +284,7 @@ StringRef llvm::dwarf::VirtualityString(unsigned Virtuality) {
|
|||||||
#define HANDLE_DW_VIRTUALITY(ID, NAME) \
|
#define HANDLE_DW_VIRTUALITY(ID, NAME) \
|
||||||
case DW_VIRTUALITY_##NAME: \
|
case DW_VIRTUALITY_##NAME: \
|
||||||
return "DW_VIRTUALITY_" #NAME;
|
return "DW_VIRTUALITY_" #NAME;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -274,7 +292,7 @@ unsigned llvm::dwarf::getVirtuality(StringRef VirtualityString) {
|
|||||||
return StringSwitch<unsigned>(VirtualityString)
|
return StringSwitch<unsigned>(VirtualityString)
|
||||||
#define HANDLE_DW_VIRTUALITY(ID, NAME) \
|
#define HANDLE_DW_VIRTUALITY(ID, NAME) \
|
||||||
.Case("DW_VIRTUALITY_" #NAME, DW_VIRTUALITY_##NAME)
|
.Case("DW_VIRTUALITY_" #NAME, DW_VIRTUALITY_##NAME)
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
.Default(DW_VIRTUALITY_invalid);
|
.Default(DW_VIRTUALITY_invalid);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -285,7 +303,7 @@ StringRef llvm::dwarf::LanguageString(unsigned Language) {
|
|||||||
#define HANDLE_DW_LANG(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_LANG(ID, NAME, VERSION, VENDOR) \
|
||||||
case DW_LANG_##NAME: \
|
case DW_LANG_##NAME: \
|
||||||
return "DW_LANG_" #NAME;
|
return "DW_LANG_" #NAME;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -293,7 +311,7 @@ unsigned llvm::dwarf::getLanguage(StringRef LanguageString) {
|
|||||||
return StringSwitch<unsigned>(LanguageString)
|
return StringSwitch<unsigned>(LanguageString)
|
||||||
#define HANDLE_DW_LANG(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_LANG(ID, NAME, VERSION, VENDOR) \
|
||||||
.Case("DW_LANG_" #NAME, DW_LANG_##NAME)
|
.Case("DW_LANG_" #NAME, DW_LANG_##NAME)
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
.Default(0);
|
.Default(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -304,7 +322,7 @@ unsigned llvm::dwarf::LanguageVersion(dwarf::SourceLanguage Lang) {
|
|||||||
#define HANDLE_DW_LANG(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_LANG(ID, NAME, VERSION, VENDOR) \
|
||||||
case DW_LANG_##NAME: \
|
case DW_LANG_##NAME: \
|
||||||
return VERSION;
|
return VERSION;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -315,16 +333,20 @@ unsigned llvm::dwarf::LanguageVendor(dwarf::SourceLanguage Lang) {
|
|||||||
#define HANDLE_DW_LANG(ID, NAME, VERSION, VENDOR) \
|
#define HANDLE_DW_LANG(ID, NAME, VERSION, VENDOR) \
|
||||||
case DW_LANG_##NAME: \
|
case DW_LANG_##NAME: \
|
||||||
return DWARF_VENDOR_##VENDOR;
|
return DWARF_VENDOR_##VENDOR;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
StringRef llvm::dwarf::CaseString(unsigned Case) {
|
StringRef llvm::dwarf::CaseString(unsigned Case) {
|
||||||
switch (Case) {
|
switch (Case) {
|
||||||
case DW_ID_case_sensitive: return "DW_ID_case_sensitive";
|
case DW_ID_case_sensitive:
|
||||||
case DW_ID_up_case: return "DW_ID_up_case";
|
return "DW_ID_case_sensitive";
|
||||||
case DW_ID_down_case: return "DW_ID_down_case";
|
case DW_ID_up_case:
|
||||||
case DW_ID_case_insensitive: return "DW_ID_case_insensitive";
|
return "DW_ID_up_case";
|
||||||
|
case DW_ID_down_case:
|
||||||
|
return "DW_ID_down_case";
|
||||||
|
case DW_ID_case_insensitive:
|
||||||
|
return "DW_ID_case_insensitive";
|
||||||
}
|
}
|
||||||
return StringRef();
|
return StringRef();
|
||||||
}
|
}
|
||||||
@ -333,42 +355,50 @@ StringRef llvm::dwarf::ConventionString(unsigned CC) {
|
|||||||
switch (CC) {
|
switch (CC) {
|
||||||
default:
|
default:
|
||||||
return StringRef();
|
return StringRef();
|
||||||
#define HANDLE_DW_CC(ID, NAME) \
|
#define HANDLE_DW_CC(ID, NAME) \
|
||||||
case DW_CC_##NAME: \
|
case DW_CC_##NAME: \
|
||||||
return "DW_CC_" #NAME;
|
return "DW_CC_" #NAME;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned llvm::dwarf::getCallingConvention(StringRef CCString) {
|
unsigned llvm::dwarf::getCallingConvention(StringRef CCString) {
|
||||||
return StringSwitch<unsigned>(CCString)
|
return StringSwitch<unsigned>(CCString)
|
||||||
#define HANDLE_DW_CC(ID, NAME) .Case("DW_CC_" #NAME, DW_CC_##NAME)
|
#define HANDLE_DW_CC(ID, NAME) .Case("DW_CC_" #NAME, DW_CC_##NAME)
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
.Default(0);
|
.Default(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
StringRef llvm::dwarf::InlineCodeString(unsigned Code) {
|
StringRef llvm::dwarf::InlineCodeString(unsigned Code) {
|
||||||
switch (Code) {
|
switch (Code) {
|
||||||
case DW_INL_not_inlined: return "DW_INL_not_inlined";
|
case DW_INL_not_inlined:
|
||||||
case DW_INL_inlined: return "DW_INL_inlined";
|
return "DW_INL_not_inlined";
|
||||||
case DW_INL_declared_not_inlined: return "DW_INL_declared_not_inlined";
|
case DW_INL_inlined:
|
||||||
case DW_INL_declared_inlined: return "DW_INL_declared_inlined";
|
return "DW_INL_inlined";
|
||||||
|
case DW_INL_declared_not_inlined:
|
||||||
|
return "DW_INL_declared_not_inlined";
|
||||||
|
case DW_INL_declared_inlined:
|
||||||
|
return "DW_INL_declared_inlined";
|
||||||
}
|
}
|
||||||
return StringRef();
|
return StringRef();
|
||||||
}
|
}
|
||||||
|
|
||||||
StringRef llvm::dwarf::ArrayOrderString(unsigned Order) {
|
StringRef llvm::dwarf::ArrayOrderString(unsigned Order) {
|
||||||
switch (Order) {
|
switch (Order) {
|
||||||
case DW_ORD_row_major: return "DW_ORD_row_major";
|
case DW_ORD_row_major:
|
||||||
case DW_ORD_col_major: return "DW_ORD_col_major";
|
return "DW_ORD_row_major";
|
||||||
|
case DW_ORD_col_major:
|
||||||
|
return "DW_ORD_col_major";
|
||||||
}
|
}
|
||||||
return StringRef();
|
return StringRef();
|
||||||
}
|
}
|
||||||
|
|
||||||
StringRef llvm::dwarf::DiscriminantString(unsigned Discriminant) {
|
StringRef llvm::dwarf::DiscriminantString(unsigned Discriminant) {
|
||||||
switch (Discriminant) {
|
switch (Discriminant) {
|
||||||
case DW_DSC_label: return "DW_DSC_label";
|
case DW_DSC_label:
|
||||||
case DW_DSC_range: return "DW_DSC_range";
|
return "DW_DSC_label";
|
||||||
|
case DW_DSC_range:
|
||||||
|
return "DW_DSC_range";
|
||||||
}
|
}
|
||||||
return StringRef();
|
return StringRef();
|
||||||
}
|
}
|
||||||
@ -377,10 +407,10 @@ StringRef llvm::dwarf::LNStandardString(unsigned Standard) {
|
|||||||
switch (Standard) {
|
switch (Standard) {
|
||||||
default:
|
default:
|
||||||
return StringRef();
|
return StringRef();
|
||||||
#define HANDLE_DW_LNS(ID, NAME) \
|
#define HANDLE_DW_LNS(ID, NAME) \
|
||||||
case DW_LNS_##NAME: \
|
case DW_LNS_##NAME: \
|
||||||
return "DW_LNS_" #NAME;
|
return "DW_LNS_" #NAME;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -388,22 +418,28 @@ StringRef llvm::dwarf::LNExtendedString(unsigned Encoding) {
|
|||||||
switch (Encoding) {
|
switch (Encoding) {
|
||||||
default:
|
default:
|
||||||
return StringRef();
|
return StringRef();
|
||||||
#define HANDLE_DW_LNE(ID, NAME) \
|
#define HANDLE_DW_LNE(ID, NAME) \
|
||||||
case DW_LNE_##NAME: \
|
case DW_LNE_##NAME: \
|
||||||
return "DW_LNE_" #NAME;
|
return "DW_LNE_" #NAME;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
StringRef llvm::dwarf::MacinfoString(unsigned Encoding) {
|
StringRef llvm::dwarf::MacinfoString(unsigned Encoding) {
|
||||||
switch (Encoding) {
|
switch (Encoding) {
|
||||||
// Macinfo Type Encodings
|
// Macinfo Type Encodings
|
||||||
case DW_MACINFO_define: return "DW_MACINFO_define";
|
case DW_MACINFO_define:
|
||||||
case DW_MACINFO_undef: return "DW_MACINFO_undef";
|
return "DW_MACINFO_define";
|
||||||
case DW_MACINFO_start_file: return "DW_MACINFO_start_file";
|
case DW_MACINFO_undef:
|
||||||
case DW_MACINFO_end_file: return "DW_MACINFO_end_file";
|
return "DW_MACINFO_undef";
|
||||||
case DW_MACINFO_vendor_ext: return "DW_MACINFO_vendor_ext";
|
case DW_MACINFO_start_file:
|
||||||
case DW_MACINFO_invalid: return "DW_MACINFO_invalid";
|
return "DW_MACINFO_start_file";
|
||||||
|
case DW_MACINFO_end_file:
|
||||||
|
return "DW_MACINFO_end_file";
|
||||||
|
case DW_MACINFO_vendor_ext:
|
||||||
|
return "DW_MACINFO_vendor_ext";
|
||||||
|
case DW_MACINFO_invalid:
|
||||||
|
return "DW_MACINFO_invalid";
|
||||||
}
|
}
|
||||||
return StringRef();
|
return StringRef();
|
||||||
}
|
}
|
||||||
@ -422,10 +458,10 @@ StringRef llvm::dwarf::CallFrameString(unsigned Encoding) {
|
|||||||
switch (Encoding) {
|
switch (Encoding) {
|
||||||
default:
|
default:
|
||||||
return StringRef();
|
return StringRef();
|
||||||
#define HANDLE_DW_CFA(ID, NAME) \
|
#define HANDLE_DW_CFA(ID, NAME) \
|
||||||
case DW_CFA_##NAME: \
|
case DW_CFA_##NAME: \
|
||||||
return "DW_CFA_" #NAME;
|
return "DW_CFA_" #NAME;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -433,10 +469,10 @@ StringRef llvm::dwarf::ApplePropertyString(unsigned Prop) {
|
|||||||
switch (Prop) {
|
switch (Prop) {
|
||||||
default:
|
default:
|
||||||
return StringRef();
|
return StringRef();
|
||||||
#define HANDLE_DW_APPLE_PROPERTY(ID, NAME) \
|
#define HANDLE_DW_APPLE_PROPERTY(ID, NAME) \
|
||||||
case DW_APPLE_PROPERTY_##NAME: \
|
case DW_APPLE_PROPERTY_##NAME: \
|
||||||
return "DW_APPLE_PROPERTY_" #NAME;
|
return "DW_APPLE_PROPERTY_" #NAME;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -447,7 +483,7 @@ StringRef llvm::dwarf::UnitTypeString(unsigned UT) {
|
|||||||
#define HANDLE_DW_UT(ID, NAME) \
|
#define HANDLE_DW_UT(ID, NAME) \
|
||||||
case DW_UT_##NAME: \
|
case DW_UT_##NAME: \
|
||||||
return "DW_UT_" #NAME;
|
return "DW_UT_" #NAME;
|
||||||
#include "llvm/Support/Dwarf.def"
|
#include "llvm/BinaryFormat/Dwarf.def"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
22
lib/BinaryFormat/LLVMBuild.txt
Normal file
22
lib/BinaryFormat/LLVMBuild.txt
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
;===- ./lib/BinaryFormat/LLVMBuild.txt -------------------------*- Conf -*--===;
|
||||||
|
;
|
||||||
|
; The LLVM Compiler Infrastructure
|
||||||
|
;
|
||||||
|
; This file is distributed under the University of Illinois Open Source
|
||||||
|
; License. See LICENSE.TXT for details.
|
||||||
|
;
|
||||||
|
;===------------------------------------------------------------------------===;
|
||||||
|
;
|
||||||
|
; This is an LLVMBuild description file for the components in this subdirectory.
|
||||||
|
;
|
||||||
|
; For more information on the LLVMBuild system, please see:
|
||||||
|
;
|
||||||
|
; http://llvm.org/docs/LLVMBuild.html
|
||||||
|
;
|
||||||
|
;===------------------------------------------------------------------------===;
|
||||||
|
|
||||||
|
[component_0]
|
||||||
|
type = Library
|
||||||
|
name = BinaryFormat
|
||||||
|
parent = Libraries
|
||||||
|
required_libraries = Support
|
216
lib/BinaryFormat/Magic.cpp
Normal file
216
lib/BinaryFormat/Magic.cpp
Normal file
@ -0,0 +1,216 @@
|
|||||||
|
//===- llvm/BinaryFormat/Magic.cpp - File magic identification --*- C++ -*-===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is distributed under the University of Illinois Open Source
|
||||||
|
// License. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
#include "llvm/BinaryFormat/Magic.h"
|
||||||
|
|
||||||
|
#include "llvm/BinaryFormat/COFF.h"
|
||||||
|
#include "llvm/BinaryFormat/ELF.h"
|
||||||
|
#include "llvm/BinaryFormat/MachO.h"
|
||||||
|
#include "llvm/Support/Endian.h"
|
||||||
|
#include "llvm/Support/FileSystem.h"
|
||||||
|
|
||||||
|
#if !defined(_MSC_VER) && !defined(__MINGW32__)
|
||||||
|
#include <unistd.h>
|
||||||
|
#else
|
||||||
|
#include <io.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
using namespace llvm;
|
||||||
|
using namespace llvm::support::endian;
|
||||||
|
using namespace llvm::sys::fs;
|
||||||
|
|
||||||
|
template <size_t N>
|
||||||
|
static bool startswith(StringRef Magic, const char (&S)[N]) {
|
||||||
|
return Magic.startswith(StringRef(S, N - 1));
|
||||||
|
}
|
||||||
|
|
||||||
|
/// @brief Identify the magic in magic.
|
||||||
|
file_magic llvm::identify_magic(StringRef Magic) {
|
||||||
|
if (Magic.size() < 4)
|
||||||
|
return file_magic::unknown;
|
||||||
|
switch ((unsigned char)Magic[0]) {
|
||||||
|
case 0x00: {
|
||||||
|
// COFF bigobj, CL.exe's LTO object file, or short import library file
|
||||||
|
if (startswith(Magic, "\0\0\xFF\xFF")) {
|
||||||
|
size_t MinSize =
|
||||||
|
offsetof(COFF::BigObjHeader, UUID) + sizeof(COFF::BigObjMagic);
|
||||||
|
if (Magic.size() < MinSize)
|
||||||
|
return file_magic::coff_import_library;
|
||||||
|
|
||||||
|
const char *Start = Magic.data() + offsetof(COFF::BigObjHeader, UUID);
|
||||||
|
if (memcmp(Start, COFF::BigObjMagic, sizeof(COFF::BigObjMagic)) == 0)
|
||||||
|
return file_magic::coff_object;
|
||||||
|
if (memcmp(Start, COFF::ClGlObjMagic, sizeof(COFF::BigObjMagic)) == 0)
|
||||||
|
return file_magic::coff_cl_gl_object;
|
||||||
|
return file_magic::coff_import_library;
|
||||||
|
}
|
||||||
|
// Windows resource file
|
||||||
|
if (startswith(Magic, "\0\0\0\0\x20\0\0\0\xFF"))
|
||||||
|
return file_magic::windows_resource;
|
||||||
|
// 0x0000 = COFF unknown machine type
|
||||||
|
if (Magic[1] == 0)
|
||||||
|
return file_magic::coff_object;
|
||||||
|
if (startswith(Magic, "\0asm"))
|
||||||
|
return file_magic::wasm_object;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 0xDE: // 0x0B17C0DE = BC wraper
|
||||||
|
if (startswith(Magic, "\xDE\xC0\x17\x0B"))
|
||||||
|
return file_magic::bitcode;
|
||||||
|
break;
|
||||||
|
case 'B':
|
||||||
|
if (startswith(Magic, "BC\xC0\xDE"))
|
||||||
|
return file_magic::bitcode;
|
||||||
|
break;
|
||||||
|
case '!':
|
||||||
|
if (startswith(Magic, "!<arch>\n") || startswith(Magic, "!<thin>\n"))
|
||||||
|
return file_magic::archive;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case '\177':
|
||||||
|
if (startswith(Magic, "\177ELF") && Magic.size() >= 18) {
|
||||||
|
bool Data2MSB = Magic[5] == 2;
|
||||||
|
unsigned high = Data2MSB ? 16 : 17;
|
||||||
|
unsigned low = Data2MSB ? 17 : 16;
|
||||||
|
if (Magic[high] == 0) {
|
||||||
|
switch (Magic[low]) {
|
||||||
|
default:
|
||||||
|
return file_magic::elf;
|
||||||
|
case 1:
|
||||||
|
return file_magic::elf_relocatable;
|
||||||
|
case 2:
|
||||||
|
return file_magic::elf_executable;
|
||||||
|
case 3:
|
||||||
|
return file_magic::elf_shared_object;
|
||||||
|
case 4:
|
||||||
|
return file_magic::elf_core;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// It's still some type of ELF file.
|
||||||
|
return file_magic::elf;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 0xCA:
|
||||||
|
if (startswith(Magic, "\xCA\xFE\xBA\xBE") ||
|
||||||
|
startswith(Magic, "\xCA\xFE\xBA\xBF")) {
|
||||||
|
// This is complicated by an overlap with Java class files.
|
||||||
|
// See the Mach-O section in /usr/share/file/magic for details.
|
||||||
|
if (Magic.size() >= 8 && Magic[7] < 43)
|
||||||
|
return file_magic::macho_universal_binary;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
// The two magic numbers for mach-o are:
|
||||||
|
// 0xfeedface - 32-bit mach-o
|
||||||
|
// 0xfeedfacf - 64-bit mach-o
|
||||||
|
case 0xFE:
|
||||||
|
case 0xCE:
|
||||||
|
case 0xCF: {
|
||||||
|
uint16_t type = 0;
|
||||||
|
if (startswith(Magic, "\xFE\xED\xFA\xCE") ||
|
||||||
|
startswith(Magic, "\xFE\xED\xFA\xCF")) {
|
||||||
|
/* Native endian */
|
||||||
|
size_t MinSize;
|
||||||
|
if (Magic[3] == char(0xCE))
|
||||||
|
MinSize = sizeof(MachO::mach_header);
|
||||||
|
else
|
||||||
|
MinSize = sizeof(MachO::mach_header_64);
|
||||||
|
if (Magic.size() >= MinSize)
|
||||||
|
type = Magic[12] << 24 | Magic[13] << 12 | Magic[14] << 8 | Magic[15];
|
||||||
|
} else if (startswith(Magic, "\xCE\xFA\xED\xFE") ||
|
||||||
|
startswith(Magic, "\xCF\xFA\xED\xFE")) {
|
||||||
|
/* Reverse endian */
|
||||||
|
size_t MinSize;
|
||||||
|
if (Magic[0] == char(0xCE))
|
||||||
|
MinSize = sizeof(MachO::mach_header);
|
||||||
|
else
|
||||||
|
MinSize = sizeof(MachO::mach_header_64);
|
||||||
|
if (Magic.size() >= MinSize)
|
||||||
|
type = Magic[15] << 24 | Magic[14] << 12 | Magic[13] << 8 | Magic[12];
|
||||||
|
}
|
||||||
|
switch (type) {
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
return file_magic::macho_object;
|
||||||
|
case 2:
|
||||||
|
return file_magic::macho_executable;
|
||||||
|
case 3:
|
||||||
|
return file_magic::macho_fixed_virtual_memory_shared_lib;
|
||||||
|
case 4:
|
||||||
|
return file_magic::macho_core;
|
||||||
|
case 5:
|
||||||
|
return file_magic::macho_preload_executable;
|
||||||
|
case 6:
|
||||||
|
return file_magic::macho_dynamically_linked_shared_lib;
|
||||||
|
case 7:
|
||||||
|
return file_magic::macho_dynamic_linker;
|
||||||
|
case 8:
|
||||||
|
return file_magic::macho_bundle;
|
||||||
|
case 9:
|
||||||
|
return file_magic::macho_dynamically_linked_shared_lib_stub;
|
||||||
|
case 10:
|
||||||
|
return file_magic::macho_dsym_companion;
|
||||||
|
case 11:
|
||||||
|
return file_magic::macho_kext_bundle;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case 0xF0: // PowerPC Windows
|
||||||
|
case 0x83: // Alpha 32-bit
|
||||||
|
case 0x84: // Alpha 64-bit
|
||||||
|
case 0x66: // MPS R4000 Windows
|
||||||
|
case 0x50: // mc68K
|
||||||
|
case 0x4c: // 80386 Windows
|
||||||
|
case 0xc4: // ARMNT Windows
|
||||||
|
if (Magic[1] == 0x01)
|
||||||
|
return file_magic::coff_object;
|
||||||
|
LLVM_FALLTHROUGH;
|
||||||
|
|
||||||
|
case 0x90: // PA-RISC Windows
|
||||||
|
case 0x68: // mc68K Windows
|
||||||
|
if (Magic[1] == 0x02)
|
||||||
|
return file_magic::coff_object;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 'M': // Possible MS-DOS stub on Windows PE file
|
||||||
|
if (startswith(Magic, "MZ")) {
|
||||||
|
uint32_t off = read32le(Magic.data() + 0x3c);
|
||||||
|
// PE/COFF file, either EXE or DLL.
|
||||||
|
if (off < Magic.size() &&
|
||||||
|
memcmp(Magic.data() + off, COFF::PEMagic, sizeof(COFF::PEMagic)) == 0)
|
||||||
|
return file_magic::pecoff_executable;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 0x64: // x86-64 Windows.
|
||||||
|
if (Magic[1] == char(0x86))
|
||||||
|
return file_magic::coff_object;
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return file_magic::unknown;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::error_code llvm::identify_magic(const Twine &Path, file_magic &Result) {
|
||||||
|
int FD;
|
||||||
|
if (std::error_code EC = openFileForRead(Path, FD))
|
||||||
|
return EC;
|
||||||
|
|
||||||
|
char Buffer[32];
|
||||||
|
int Length = read(FD, Buffer, sizeof(Buffer));
|
||||||
|
if (close(FD) != 0 || Length < 0)
|
||||||
|
return std::error_code(errno, std::generic_category());
|
||||||
|
|
||||||
|
Result = identify_magic(StringRef(Buffer, Length));
|
||||||
|
return std::error_code();
|
||||||
|
}
|
@ -4,6 +4,7 @@
|
|||||||
add_subdirectory(IR)
|
add_subdirectory(IR)
|
||||||
add_subdirectory(IRReader)
|
add_subdirectory(IRReader)
|
||||||
add_subdirectory(CodeGen)
|
add_subdirectory(CodeGen)
|
||||||
|
add_subdirectory(BinaryFormat)
|
||||||
add_subdirectory(Bitcode)
|
add_subdirectory(Bitcode)
|
||||||
add_subdirectory(Transforms)
|
add_subdirectory(Transforms)
|
||||||
add_subdirectory(Linker)
|
add_subdirectory(Linker)
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
#include "DwarfException.h"
|
#include "DwarfException.h"
|
||||||
#include "llvm/ADT/StringExtras.h"
|
#include "llvm/ADT/StringExtras.h"
|
||||||
#include "llvm/ADT/Twine.h"
|
#include "llvm/ADT/Twine.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/CodeGen/AsmPrinter.h"
|
#include "llvm/CodeGen/AsmPrinter.h"
|
||||||
#include "llvm/CodeGen/MachineFrameInfo.h"
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
||||||
#include "llvm/CodeGen/MachineFunction.h"
|
#include "llvm/CodeGen/MachineFunction.h"
|
||||||
@ -27,7 +28,6 @@
|
|||||||
#include "llvm/MC/MCSection.h"
|
#include "llvm/MC/MCSection.h"
|
||||||
#include "llvm/MC/MCStreamer.h"
|
#include "llvm/MC/MCStreamer.h"
|
||||||
#include "llvm/MC/MCSymbol.h"
|
#include "llvm/MC/MCSymbol.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/FormattedStream.h"
|
#include "llvm/Support/FormattedStream.h"
|
||||||
#include "llvm/Target/TargetFrameLowering.h"
|
#include "llvm/Target/TargetFrameLowering.h"
|
||||||
#include "llvm/Target/TargetOptions.h"
|
#include "llvm/Target/TargetOptions.h"
|
||||||
|
@ -30,6 +30,8 @@
|
|||||||
#include "llvm/ADT/Twine.h"
|
#include "llvm/ADT/Twine.h"
|
||||||
#include "llvm/Analysis/ConstantFolding.h"
|
#include "llvm/Analysis/ConstantFolding.h"
|
||||||
#include "llvm/Analysis/ObjectUtils.h"
|
#include "llvm/Analysis/ObjectUtils.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
|
#include "llvm/BinaryFormat/ELF.h"
|
||||||
#include "llvm/CodeGen/Analysis.h"
|
#include "llvm/CodeGen/Analysis.h"
|
||||||
#include "llvm/CodeGen/GCMetadata.h"
|
#include "llvm/CodeGen/GCMetadata.h"
|
||||||
#include "llvm/CodeGen/GCMetadataPrinter.h"
|
#include "llvm/CodeGen/GCMetadataPrinter.h"
|
||||||
@ -82,8 +84,6 @@
|
|||||||
#include "llvm/Pass.h"
|
#include "llvm/Pass.h"
|
||||||
#include "llvm/Support/Casting.h"
|
#include "llvm/Support/Casting.h"
|
||||||
#include "llvm/Support/Compiler.h"
|
#include "llvm/Support/Compiler.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/ELF.h"
|
|
||||||
#include "llvm/Support/ErrorHandling.h"
|
#include "llvm/Support/ErrorHandling.h"
|
||||||
#include "llvm/Support/Format.h"
|
#include "llvm/Support/Format.h"
|
||||||
#include "llvm/Support/MathExtras.h"
|
#include "llvm/Support/MathExtras.h"
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
#include "DwarfDebug.h"
|
#include "DwarfDebug.h"
|
||||||
#include "DwarfExpression.h"
|
#include "DwarfExpression.h"
|
||||||
#include "llvm/ADT/Twine.h"
|
#include "llvm/ADT/Twine.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/CodeGen/AsmPrinter.h"
|
#include "llvm/CodeGen/AsmPrinter.h"
|
||||||
#include "llvm/CodeGen/DIE.h"
|
#include "llvm/CodeGen/DIE.h"
|
||||||
#include "llvm/CodeGen/MachineFunction.h"
|
#include "llvm/CodeGen/MachineFunction.h"
|
||||||
@ -26,7 +27,6 @@
|
|||||||
#include "llvm/MC/MCStreamer.h"
|
#include "llvm/MC/MCStreamer.h"
|
||||||
#include "llvm/MC/MCSymbol.h"
|
#include "llvm/MC/MCSymbol.h"
|
||||||
#include "llvm/MC/MachineLocation.h"
|
#include "llvm/MC/MachineLocation.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/ErrorHandling.h"
|
#include "llvm/Support/ErrorHandling.h"
|
||||||
#include "llvm/Target/TargetLoweringObjectFile.h"
|
#include "llvm/Target/TargetLoweringObjectFile.h"
|
||||||
#include "llvm/Target/TargetMachine.h"
|
#include "llvm/Target/TargetMachine.h"
|
||||||
|
@ -26,6 +26,8 @@
|
|||||||
#include "llvm/ADT/TinyPtrVector.h"
|
#include "llvm/ADT/TinyPtrVector.h"
|
||||||
#include "llvm/ADT/Triple.h"
|
#include "llvm/ADT/Triple.h"
|
||||||
#include "llvm/ADT/Twine.h"
|
#include "llvm/ADT/Twine.h"
|
||||||
|
#include "llvm/BinaryFormat/COFF.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/CodeGen/AsmPrinter.h"
|
#include "llvm/CodeGen/AsmPrinter.h"
|
||||||
#include "llvm/CodeGen/LexicalScopes.h"
|
#include "llvm/CodeGen/LexicalScopes.h"
|
||||||
#include "llvm/CodeGen/MachineFunction.h"
|
#include "llvm/CodeGen/MachineFunction.h"
|
||||||
@ -56,10 +58,10 @@
|
|||||||
#include "llvm/MC/MCSectionCOFF.h"
|
#include "llvm/MC/MCSectionCOFF.h"
|
||||||
#include "llvm/MC/MCStreamer.h"
|
#include "llvm/MC/MCStreamer.h"
|
||||||
#include "llvm/MC/MCSymbol.h"
|
#include "llvm/MC/MCSymbol.h"
|
||||||
|
#include "llvm/Support/BinaryByteStream.h"
|
||||||
|
#include "llvm/Support/BinaryStreamReader.h"
|
||||||
#include "llvm/Support/Casting.h"
|
#include "llvm/Support/Casting.h"
|
||||||
#include "llvm/Support/COFF.h"
|
|
||||||
#include "llvm/Support/Compiler.h"
|
#include "llvm/Support/Compiler.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/Endian.h"
|
#include "llvm/Support/Endian.h"
|
||||||
#include "llvm/Support/Error.h"
|
#include "llvm/Support/Error.h"
|
||||||
#include "llvm/Support/ErrorHandling.h"
|
#include "llvm/Support/ErrorHandling.h"
|
||||||
|
@ -16,10 +16,10 @@
|
|||||||
#include "DwarfDebug.h"
|
#include "DwarfDebug.h"
|
||||||
#include "llvm/ADT/ArrayRef.h"
|
#include "llvm/ADT/ArrayRef.h"
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/CodeGen/AsmPrinter.h"
|
#include "llvm/CodeGen/AsmPrinter.h"
|
||||||
#include "llvm/CodeGen/DIE.h"
|
#include "llvm/CodeGen/DIE.h"
|
||||||
#include "llvm/Support/Debug.h"
|
#include "llvm/Support/Debug.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/Endian.h"
|
#include "llvm/Support/Endian.h"
|
||||||
#include "llvm/Support/MD5.h"
|
#include "llvm/Support/MD5.h"
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
|
@ -16,12 +16,12 @@
|
|||||||
|
|
||||||
#include "llvm/ADT/ArrayRef.h"
|
#include "llvm/ADT/ArrayRef.h"
|
||||||
#include "llvm/ADT/StringMap.h"
|
#include "llvm/ADT/StringMap.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/CodeGen/DIE.h"
|
#include "llvm/CodeGen/DIE.h"
|
||||||
#include "llvm/MC/MCSymbol.h"
|
#include "llvm/MC/MCSymbol.h"
|
||||||
#include "llvm/Support/Compiler.h"
|
#include "llvm/Support/Compiler.h"
|
||||||
#include "llvm/Support/DataTypes.h"
|
#include "llvm/Support/DataTypes.h"
|
||||||
#include "llvm/Support/Debug.h"
|
#include "llvm/Support/Debug.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/ErrorHandling.h"
|
#include "llvm/Support/ErrorHandling.h"
|
||||||
#include "llvm/Support/Format.h"
|
#include "llvm/Support/Format.h"
|
||||||
#include "llvm/Support/FormattedStream.h"
|
#include "llvm/Support/FormattedStream.h"
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
#include "DwarfException.h"
|
#include "DwarfException.h"
|
||||||
#include "llvm/ADT/StringExtras.h"
|
#include "llvm/ADT/StringExtras.h"
|
||||||
#include "llvm/ADT/Twine.h"
|
#include "llvm/ADT/Twine.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/CodeGen/AsmPrinter.h"
|
#include "llvm/CodeGen/AsmPrinter.h"
|
||||||
#include "llvm/CodeGen/MachineFrameInfo.h"
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
||||||
#include "llvm/CodeGen/MachineFunction.h"
|
#include "llvm/CodeGen/MachineFunction.h"
|
||||||
@ -28,7 +29,6 @@
|
|||||||
#include "llvm/MC/MCStreamer.h"
|
#include "llvm/MC/MCStreamer.h"
|
||||||
#include "llvm/MC/MCSymbol.h"
|
#include "llvm/MC/MCSymbol.h"
|
||||||
#include "llvm/MC/MachineLocation.h"
|
#include "llvm/MC/MachineLocation.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/ErrorHandling.h"
|
#include "llvm/Support/ErrorHandling.h"
|
||||||
#include "llvm/Support/FormattedStream.h"
|
#include "llvm/Support/FormattedStream.h"
|
||||||
#include "llvm/Target/TargetFrameLowering.h"
|
#include "llvm/Target/TargetFrameLowering.h"
|
||||||
|
@ -15,8 +15,8 @@
|
|||||||
#define LLVM_LIB_CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
|
#define LLVM_LIB_CODEGEN_ASMPRINTER_DWARFCOMPILEUNIT_H
|
||||||
|
|
||||||
#include "DwarfUnit.h"
|
#include "DwarfUnit.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/IR/DebugInfo.h"
|
#include "llvm/IR/DebugInfo.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
#include "llvm/ADT/Statistic.h"
|
#include "llvm/ADT/Statistic.h"
|
||||||
#include "llvm/ADT/StringExtras.h"
|
#include "llvm/ADT/StringExtras.h"
|
||||||
#include "llvm/ADT/Triple.h"
|
#include "llvm/ADT/Triple.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/CodeGen/DIE.h"
|
#include "llvm/CodeGen/DIE.h"
|
||||||
#include "llvm/CodeGen/MachineFunction.h"
|
#include "llvm/CodeGen/MachineFunction.h"
|
||||||
#include "llvm/CodeGen/MachineModuleInfo.h"
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
||||||
@ -38,7 +39,6 @@
|
|||||||
#include "llvm/MC/MCSymbol.h"
|
#include "llvm/MC/MCSymbol.h"
|
||||||
#include "llvm/Support/CommandLine.h"
|
#include "llvm/Support/CommandLine.h"
|
||||||
#include "llvm/Support/Debug.h"
|
#include "llvm/Support/Debug.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/ErrorHandling.h"
|
#include "llvm/Support/ErrorHandling.h"
|
||||||
#include "llvm/Support/FormattedStream.h"
|
#include "llvm/Support/FormattedStream.h"
|
||||||
#include "llvm/Support/LEB128.h"
|
#include "llvm/Support/LEB128.h"
|
||||||
|
@ -14,8 +14,8 @@
|
|||||||
#include "DwarfExpression.h"
|
#include "DwarfExpression.h"
|
||||||
#include "DwarfDebug.h"
|
#include "DwarfDebug.h"
|
||||||
#include "llvm/ADT/SmallBitVector.h"
|
#include "llvm/ADT/SmallBitVector.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/CodeGen/AsmPrinter.h"
|
#include "llvm/CodeGen/AsmPrinter.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Target/TargetMachine.h"
|
#include "llvm/Target/TargetMachine.h"
|
||||||
#include "llvm/Target/TargetRegisterInfo.h"
|
#include "llvm/Target/TargetRegisterInfo.h"
|
||||||
#include "llvm/Target/TargetSubtargetInfo.h"
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
#include "llvm/BinaryFormat/ELF.h"
|
||||||
#include "llvm/CodeGen/AsmPrinter.h"
|
#include "llvm/CodeGen/AsmPrinter.h"
|
||||||
#include "llvm/CodeGen/GCMetadata.h"
|
#include "llvm/CodeGen/GCMetadata.h"
|
||||||
#include "llvm/CodeGen/GCMetadataPrinter.h"
|
#include "llvm/CodeGen/GCMetadataPrinter.h"
|
||||||
@ -25,7 +26,6 @@
|
|||||||
#include "llvm/MC/MCSectionELF.h"
|
#include "llvm/MC/MCSectionELF.h"
|
||||||
#include "llvm/MC/MCStreamer.h"
|
#include "llvm/MC/MCStreamer.h"
|
||||||
#include "llvm/MC/MCSymbol.h"
|
#include "llvm/MC/MCSymbol.h"
|
||||||
#include "llvm/Support/ELF.h"
|
|
||||||
#include "llvm/Target/TargetLoweringObjectFile.h"
|
#include "llvm/Target/TargetLoweringObjectFile.h"
|
||||||
|
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
|
@ -14,6 +14,8 @@
|
|||||||
#include "WinException.h"
|
#include "WinException.h"
|
||||||
#include "llvm/ADT/StringExtras.h"
|
#include "llvm/ADT/StringExtras.h"
|
||||||
#include "llvm/ADT/Twine.h"
|
#include "llvm/ADT/Twine.h"
|
||||||
|
#include "llvm/BinaryFormat/COFF.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/CodeGen/AsmPrinter.h"
|
#include "llvm/CodeGen/AsmPrinter.h"
|
||||||
#include "llvm/CodeGen/MachineFrameInfo.h"
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
||||||
#include "llvm/CodeGen/MachineFunction.h"
|
#include "llvm/CodeGen/MachineFunction.h"
|
||||||
@ -29,8 +31,6 @@
|
|||||||
#include "llvm/MC/MCStreamer.h"
|
#include "llvm/MC/MCStreamer.h"
|
||||||
#include "llvm/MC/MCSymbol.h"
|
#include "llvm/MC/MCSymbol.h"
|
||||||
#include "llvm/MC/MCWin64EH.h"
|
#include "llvm/MC/MCWin64EH.h"
|
||||||
#include "llvm/Support/COFF.h"
|
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/ErrorHandling.h"
|
#include "llvm/Support/ErrorHandling.h"
|
||||||
#include "llvm/Support/FormattedStream.h"
|
#include "llvm/Support/FormattedStream.h"
|
||||||
#include "llvm/Target/TargetFrameLowering.h"
|
#include "llvm/Target/TargetFrameLowering.h"
|
||||||
|
@ -18,6 +18,10 @@
|
|||||||
#include "llvm/ADT/StringExtras.h"
|
#include "llvm/ADT/StringExtras.h"
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
#include "llvm/ADT/Triple.h"
|
#include "llvm/ADT/Triple.h"
|
||||||
|
#include "llvm/BinaryFormat/COFF.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
|
#include "llvm/BinaryFormat/ELF.h"
|
||||||
|
#include "llvm/BinaryFormat/MachO.h"
|
||||||
#include "llvm/CodeGen/MachineModuleInfo.h"
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
||||||
#include "llvm/CodeGen/MachineModuleInfoImpls.h"
|
#include "llvm/CodeGen/MachineModuleInfoImpls.h"
|
||||||
#include "llvm/IR/Comdat.h"
|
#include "llvm/IR/Comdat.h"
|
||||||
@ -46,13 +50,9 @@
|
|||||||
#include "llvm/MC/MCValue.h"
|
#include "llvm/MC/MCValue.h"
|
||||||
#include "llvm/MC/SectionKind.h"
|
#include "llvm/MC/SectionKind.h"
|
||||||
#include "llvm/ProfileData/InstrProf.h"
|
#include "llvm/ProfileData/InstrProf.h"
|
||||||
#include "llvm/Support/COFF.h"
|
|
||||||
#include "llvm/Support/Casting.h"
|
#include "llvm/Support/Casting.h"
|
||||||
#include "llvm/Support/CodeGen.h"
|
#include "llvm/Support/CodeGen.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/ELF.h"
|
|
||||||
#include "llvm/Support/ErrorHandling.h"
|
#include "llvm/Support/ErrorHandling.h"
|
||||||
#include "llvm/Support/MachO.h"
|
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
#include "llvm/Target/TargetMachine.h"
|
#include "llvm/Target/TargetMachine.h"
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
@ -8,12 +8,13 @@
|
|||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h"
|
#include "llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h"
|
||||||
|
|
||||||
#include "llvm/ADT/None.h"
|
#include "llvm/ADT/None.h"
|
||||||
#include "llvm/ADT/Optional.h"
|
#include "llvm/ADT/Optional.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
|
#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFUnit.h"
|
#include "llvm/DebugInfo/DWARF/DWARFUnit.h"
|
||||||
#include "llvm/Support/DataExtractor.h"
|
#include "llvm/Support/DataExtractor.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/Format.h"
|
#include "llvm/Support/Format.h"
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
|
@ -8,12 +8,13 @@
|
|||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h"
|
#include "llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h"
|
||||||
|
|
||||||
#include "llvm/ADT/SmallVector.h"
|
#include "llvm/ADT/SmallVector.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFContext.h"
|
#include "llvm/DebugInfo/DWARF/DWARFContext.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
|
#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFRelocMap.h"
|
#include "llvm/DebugInfo/DWARF/DWARFRelocMap.h"
|
||||||
#include "llvm/Support/Compiler.h"
|
#include "llvm/Support/Compiler.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/Format.h"
|
#include "llvm/Support/Format.h"
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFDebugFrame.h"
|
#include "llvm/DebugInfo/DWARF/DWARFDebugFrame.h"
|
||||||
|
|
||||||
#include "llvm/ADT/ArrayRef.h"
|
#include "llvm/ADT/ArrayRef.h"
|
||||||
#include "llvm/ADT/DenseMap.h"
|
#include "llvm/ADT/DenseMap.h"
|
||||||
#include "llvm/ADT/Optional.h"
|
#include "llvm/ADT/Optional.h"
|
||||||
@ -15,10 +16,10 @@
|
|||||||
#include "llvm/ADT/SmallString.h"
|
#include "llvm/ADT/SmallString.h"
|
||||||
#include "llvm/ADT/StringExtras.h"
|
#include "llvm/ADT/StringExtras.h"
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/Support/Casting.h"
|
#include "llvm/Support/Casting.h"
|
||||||
#include "llvm/Support/Compiler.h"
|
#include "llvm/Support/Compiler.h"
|
||||||
#include "llvm/Support/DataExtractor.h"
|
#include "llvm/Support/DataExtractor.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/ErrorHandling.h"
|
#include "llvm/Support/ErrorHandling.h"
|
||||||
#include "llvm/Support/Format.h"
|
#include "llvm/Support/Format.h"
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
|
@ -9,10 +9,10 @@
|
|||||||
|
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFDebugLine.h"
|
#include "llvm/DebugInfo/DWARF/DWARFDebugLine.h"
|
||||||
#include "llvm/ADT/SmallString.h"
|
#include "llvm/ADT/SmallString.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFContext.h"
|
#include "llvm/DebugInfo/DWARF/DWARFContext.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
|
#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFRelocMap.h"
|
#include "llvm/DebugInfo/DWARF/DWARFRelocMap.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/Format.h"
|
#include "llvm/Support/Format.h"
|
||||||
#include "llvm/Support/Path.h"
|
#include "llvm/Support/Path.h"
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
|
@ -9,9 +9,9 @@
|
|||||||
|
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFDebugLoc.h"
|
#include "llvm/DebugInfo/DWARF/DWARFDebugLoc.h"
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFContext.h"
|
#include "llvm/DebugInfo/DWARF/DWARFContext.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFRelocMap.h"
|
#include "llvm/DebugInfo/DWARF/DWARFRelocMap.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/Format.h"
|
#include "llvm/Support/Format.h"
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFDebugMacro.h"
|
#include "llvm/DebugInfo/DWARF/DWARFDebugMacro.h"
|
||||||
#include "SyntaxHighlighting.h"
|
#include "SyntaxHighlighting.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
|
||||||
|
@ -9,8 +9,8 @@
|
|||||||
|
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFDebugPubTable.h"
|
#include "llvm/DebugInfo/DWARF/DWARFDebugPubTable.h"
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/Support/DataExtractor.h"
|
#include "llvm/Support/DataExtractor.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/Format.h"
|
#include "llvm/Support/Format.h"
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
@ -12,13 +12,13 @@
|
|||||||
#include "llvm/ADT/None.h"
|
#include "llvm/ADT/None.h"
|
||||||
#include "llvm/ADT/Optional.h"
|
#include "llvm/ADT/Optional.h"
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h"
|
#include "llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFContext.h"
|
#include "llvm/DebugInfo/DWARF/DWARFContext.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFDebugRangeList.h"
|
#include "llvm/DebugInfo/DWARF/DWARFDebugRangeList.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
|
#include "llvm/DebugInfo/DWARF/DWARFFormValue.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFUnit.h"
|
#include "llvm/DebugInfo/DWARF/DWARFUnit.h"
|
||||||
#include "llvm/Support/DataExtractor.h"
|
#include "llvm/Support/DataExtractor.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/Format.h"
|
#include "llvm/Support/Format.h"
|
||||||
#include "llvm/Support/MathExtras.h"
|
#include "llvm/Support/MathExtras.h"
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
|
@ -13,10 +13,10 @@
|
|||||||
#include "llvm/ADT/None.h"
|
#include "llvm/ADT/None.h"
|
||||||
#include "llvm/ADT/Optional.h"
|
#include "llvm/ADT/Optional.h"
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
|
#include "llvm/BinaryFormat/Dwarf.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFContext.h"
|
#include "llvm/DebugInfo/DWARF/DWARFContext.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFRelocMap.h"
|
#include "llvm/DebugInfo/DWARF/DWARFRelocMap.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFUnit.h"
|
#include "llvm/DebugInfo/DWARF/DWARFUnit.h"
|
||||||
#include "llvm/Support/Dwarf.h"
|
|
||||||
#include "llvm/Support/ErrorHandling.h"
|
#include "llvm/Support/ErrorHandling.h"
|
||||||
#include "llvm/Support/Format.h"
|
#include "llvm/Support/Format.h"
|
||||||
#include "llvm/Support/raw_ostream.h"
|
#include "llvm/Support/raw_ostream.h"
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
#include "llvm/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.h"
|
#include "llvm/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.h"
|
||||||
|
|
||||||
#include "llvm/ADT/ArrayRef.h"
|
#include "llvm/ADT/ArrayRef.h"
|
||||||
|
#include "llvm/BinaryFormat/COFF.h"
|
||||||
#include "llvm/DebugInfo/CodeView/DebugSubsectionRecord.h"
|
#include "llvm/DebugInfo/CodeView/DebugSubsectionRecord.h"
|
||||||
#include "llvm/DebugInfo/MSF/MSFBuilder.h"
|
#include "llvm/DebugInfo/MSF/MSFBuilder.h"
|
||||||
#include "llvm/DebugInfo/MSF/MSFCommon.h"
|
#include "llvm/DebugInfo/MSF/MSFCommon.h"
|
||||||
@ -19,7 +20,6 @@
|
|||||||
#include "llvm/DebugInfo/PDB/Native/RawError.h"
|
#include "llvm/DebugInfo/PDB/Native/RawError.h"
|
||||||
#include "llvm/Support/BinaryItemStream.h"
|
#include "llvm/Support/BinaryItemStream.h"
|
||||||
#include "llvm/Support/BinaryStreamWriter.h"
|
#include "llvm/Support/BinaryStreamWriter.h"
|
||||||
#include "llvm/Support/COFF.h"
|
|
||||||
|
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
using namespace llvm::codeview;
|
using namespace llvm::codeview;
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
#include "llvm/DebugInfo/PDB/Native/DbiStreamBuilder.h"
|
#include "llvm/DebugInfo/PDB/Native/DbiStreamBuilder.h"
|
||||||
|
|
||||||
#include "llvm/ADT/ArrayRef.h"
|
#include "llvm/ADT/ArrayRef.h"
|
||||||
|
#include "llvm/BinaryFormat/COFF.h"
|
||||||
#include "llvm/DebugInfo/MSF/MSFBuilder.h"
|
#include "llvm/DebugInfo/MSF/MSFBuilder.h"
|
||||||
#include "llvm/DebugInfo/MSF/MappedBlockStream.h"
|
#include "llvm/DebugInfo/MSF/MappedBlockStream.h"
|
||||||
#include "llvm/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.h"
|
#include "llvm/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.h"
|
||||||
@ -17,7 +18,6 @@
|
|||||||
#include "llvm/DebugInfo/PDB/Native/RawError.h"
|
#include "llvm/DebugInfo/PDB/Native/RawError.h"
|
||||||
#include "llvm/Object/COFF.h"
|
#include "llvm/Object/COFF.h"
|
||||||
#include "llvm/Support/BinaryStreamWriter.h"
|
#include "llvm/Support/BinaryStreamWriter.h"
|
||||||
#include "llvm/Support/COFF.h"
|
|
||||||
|
|
||||||
using namespace llvm;
|
using namespace llvm;
|
||||||
using namespace llvm::codeview;
|
using namespace llvm::codeview;
|
||||||
|
@ -15,12 +15,12 @@
|
|||||||
#include "llvm/ADT/STLExtras.h"
|
#include "llvm/ADT/STLExtras.h"
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
#include "llvm/ADT/Triple.h"
|
#include "llvm/ADT/Triple.h"
|
||||||
|
#include "llvm/BinaryFormat/COFF.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFContext.h"
|
#include "llvm/DebugInfo/DWARF/DWARFContext.h"
|
||||||
#include "llvm/DebugInfo/Symbolize/SymbolizableModule.h"
|
#include "llvm/DebugInfo/Symbolize/SymbolizableModule.h"
|
||||||
#include "llvm/Object/COFF.h"
|
#include "llvm/Object/COFF.h"
|
||||||
#include "llvm/Object/ObjectFile.h"
|
#include "llvm/Object/ObjectFile.h"
|
||||||
#include "llvm/Object/SymbolSize.h"
|
#include "llvm/Object/SymbolSize.h"
|
||||||
#include "llvm/Support/COFF.h"
|
|
||||||
#include "llvm/Support/Casting.h"
|
#include "llvm/Support/Casting.h"
|
||||||
#include "llvm/Support/DataExtractor.h"
|
#include "llvm/Support/DataExtractor.h"
|
||||||
#include "llvm/Support/Error.h"
|
#include "llvm/Support/Error.h"
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
#include "SymbolizableObjectFile.h"
|
#include "SymbolizableObjectFile.h"
|
||||||
|
|
||||||
#include "llvm/ADT/STLExtras.h"
|
#include "llvm/ADT/STLExtras.h"
|
||||||
|
#include "llvm/BinaryFormat/COFF.h"
|
||||||
#include "llvm/Config/config.h"
|
#include "llvm/Config/config.h"
|
||||||
#include "llvm/DebugInfo/DWARF/DWARFContext.h"
|
#include "llvm/DebugInfo/DWARF/DWARFContext.h"
|
||||||
#include "llvm/DebugInfo/PDB/PDB.h"
|
#include "llvm/DebugInfo/PDB/PDB.h"
|
||||||
@ -24,7 +25,6 @@
|
|||||||
#include "llvm/Object/ELFObjectFile.h"
|
#include "llvm/Object/ELFObjectFile.h"
|
||||||
#include "llvm/Object/MachO.h"
|
#include "llvm/Object/MachO.h"
|
||||||
#include "llvm/Object/MachOUniversal.h"
|
#include "llvm/Object/MachOUniversal.h"
|
||||||
#include "llvm/Support/COFF.h"
|
|
||||||
#include "llvm/Support/Casting.h"
|
#include "llvm/Support/Casting.h"
|
||||||
#include "llvm/Support/Compression.h"
|
#include "llvm/Support/Compression.h"
|
||||||
#include "llvm/Support/DataExtractor.h"
|
#include "llvm/Support/DataExtractor.h"
|
||||||
|
@ -18,10 +18,10 @@
|
|||||||
#include "llvm/ADT/STLExtras.h"
|
#include "llvm/ADT/STLExtras.h"
|
||||||
#include "llvm/ADT/StringRef.h"
|
#include "llvm/ADT/StringRef.h"
|
||||||
#include "llvm/ADT/Triple.h"
|
#include "llvm/ADT/Triple.h"
|
||||||
|
#include "llvm/BinaryFormat/ELF.h"
|
||||||
#include "llvm/MC/MCStreamer.h"
|
#include "llvm/MC/MCStreamer.h"
|
||||||
#include "llvm/Object/ELFObjectFile.h"
|
#include "llvm/Object/ELFObjectFile.h"
|
||||||
#include "llvm/Object/ObjectFile.h"
|
#include "llvm/Object/ObjectFile.h"
|
||||||
#include "llvm/Support/ELF.h"
|
|
||||||
#include "llvm/Support/Endian.h"
|
#include "llvm/Support/Endian.h"
|
||||||
#include "llvm/Support/MemoryBuffer.h"
|
#include "llvm/Support/MemoryBuffer.h"
|
||||||
#include "llvm/Support/TargetRegistry.h"
|
#include "llvm/Support/TargetRegistry.h"
|
||||||
|
@ -15,8 +15,8 @@
|
|||||||
#define LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_TARGETS_RUNTIMEDYLDCOFFI386_H
|
#define LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_TARGETS_RUNTIMEDYLDCOFFI386_H
|
||||||
|
|
||||||
#include "../RuntimeDyldCOFF.h"
|
#include "../RuntimeDyldCOFF.h"
|
||||||
|
#include "llvm/BinaryFormat/COFF.h"
|
||||||
#include "llvm/Object/COFF.h"
|
#include "llvm/Object/COFF.h"
|
||||||
#include "llvm/Support/COFF.h"
|
|
||||||
|
|
||||||
#define DEBUG_TYPE "dyld"
|
#define DEBUG_TYPE "dyld"
|
||||||
|
|
||||||
|
@ -15,8 +15,8 @@
|
|||||||
#define LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_TARGETS_RUNTIMEDYLDCOFFTHUMB_H
|
#define LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_TARGETS_RUNTIMEDYLDCOFFTHUMB_H
|
||||||
|
|
||||||
#include "../RuntimeDyldCOFF.h"
|
#include "../RuntimeDyldCOFF.h"
|
||||||
|
#include "llvm/BinaryFormat/COFF.h"
|
||||||
#include "llvm/Object/COFF.h"
|
#include "llvm/Object/COFF.h"
|
||||||
#include "llvm/Support/COFF.h"
|
|
||||||
|
|
||||||
#define DEBUG_TYPE "dyld"
|
#define DEBUG_TYPE "dyld"
|
||||||
|
|
||||||
|
@ -15,8 +15,8 @@
|
|||||||
#define LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_TARGETS_RUNTIMEDYLDCOFF86_64_H
|
#define LLVM_LIB_EXECUTIONENGINE_RUNTIMEDYLD_TARGETS_RUNTIMEDYLDCOFF86_64_H
|
||||||
|
|
||||||
#include "../RuntimeDyldCOFF.h"
|
#include "../RuntimeDyldCOFF.h"
|
||||||
|
#include "llvm/BinaryFormat/COFF.h"
|
||||||
#include "llvm/Object/COFF.h"
|
#include "llvm/Object/COFF.h"
|
||||||
#include "llvm/Support/COFF.h"
|
|
||||||
|
|
||||||
#define DEBUG_TYPE "dyld"
|
#define DEBUG_TYPE "dyld"
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user