mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-24 08:24:33 +00:00
Make Binary the parent of ObjectFile and update children to new interface.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132911 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -38,10 +38,13 @@ protected:
|
||||
|
||||
enum {
|
||||
isArchive,
|
||||
|
||||
// Object and children.
|
||||
isObject,
|
||||
isCOFF,
|
||||
isELF,
|
||||
isMachO,
|
||||
isObject
|
||||
lastObject
|
||||
};
|
||||
|
||||
public:
|
||||
@ -52,7 +55,7 @@ public:
|
||||
|
||||
// Cast methods.
|
||||
unsigned int getType() const { return TypeID; }
|
||||
static inline bool classof(Binary const *v) { return true; }
|
||||
static inline bool classof(const Binary *v) { return true; }
|
||||
};
|
||||
|
||||
error_code createBinary(MemoryBuffer *Source, OwningPtr<Binary> &Result);
|
||||
|
111
include/llvm/Object/COFF.h
Normal file
111
include/llvm/Object/COFF.h
Normal file
@ -0,0 +1,111 @@
|
||||
//===- COFF.h - COFF object file implementation -----------------*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file declares the COFFObjectFile class.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_OBJECT_COFF_H
|
||||
#define LLVM_OBJECT_COFF_H
|
||||
|
||||
#include "llvm/Object/ObjectFile.h"
|
||||
#include "llvm/Support/COFF.h"
|
||||
#include "llvm/Support/Endian.h"
|
||||
|
||||
namespace llvm {
|
||||
namespace object {
|
||||
|
||||
struct coff_file_header {
|
||||
support::ulittle16_t Machine;
|
||||
support::ulittle16_t NumberOfSections;
|
||||
support::ulittle32_t TimeDateStamp;
|
||||
support::ulittle32_t PointerToSymbolTable;
|
||||
support::ulittle32_t NumberOfSymbols;
|
||||
support::ulittle16_t SizeOfOptionalHeader;
|
||||
support::ulittle16_t Characteristics;
|
||||
};
|
||||
|
||||
struct coff_symbol {
|
||||
struct StringTableOffset {
|
||||
support::ulittle32_t Zeroes;
|
||||
support::ulittle32_t Offset;
|
||||
};
|
||||
|
||||
union {
|
||||
char ShortName[8];
|
||||
StringTableOffset Offset;
|
||||
} Name;
|
||||
|
||||
support::ulittle32_t Value;
|
||||
support::little16_t SectionNumber;
|
||||
|
||||
struct {
|
||||
support::ulittle8_t BaseType;
|
||||
support::ulittle8_t ComplexType;
|
||||
} Type;
|
||||
|
||||
support::ulittle8_t StorageClass;
|
||||
support::ulittle8_t NumberOfAuxSymbols;
|
||||
};
|
||||
|
||||
struct coff_section {
|
||||
char Name[8];
|
||||
support::ulittle32_t VirtualSize;
|
||||
support::ulittle32_t VirtualAddress;
|
||||
support::ulittle32_t SizeOfRawData;
|
||||
support::ulittle32_t PointerToRawData;
|
||||
support::ulittle32_t PointerToRelocations;
|
||||
support::ulittle32_t PointerToLinenumbers;
|
||||
support::ulittle16_t NumberOfRelocations;
|
||||
support::ulittle16_t NumberOfLinenumbers;
|
||||
support::ulittle32_t Characteristics;
|
||||
};
|
||||
|
||||
class COFFObjectFile : public ObjectFile {
|
||||
private:
|
||||
uint64_t HeaderOff;
|
||||
const coff_file_header *Header;
|
||||
const coff_section *SectionTable;
|
||||
const coff_symbol *SymbolTable;
|
||||
const char *StringTable;
|
||||
|
||||
const coff_section *getSection(std::size_t index) const;
|
||||
const char *getString(std::size_t offset) const;
|
||||
|
||||
protected:
|
||||
virtual SymbolRef getSymbolNext(DataRefImpl Symb) const;
|
||||
virtual StringRef getSymbolName(DataRefImpl Symb) const;
|
||||
virtual uint64_t getSymbolAddress(DataRefImpl Symb) const;
|
||||
virtual uint64_t getSymbolSize(DataRefImpl Symb) const;
|
||||
virtual char getSymbolNMTypeChar(DataRefImpl Symb) const;
|
||||
virtual bool isSymbolInternal(DataRefImpl Symb) const;
|
||||
|
||||
virtual SectionRef getSectionNext(DataRefImpl Sec) const;
|
||||
virtual StringRef getSectionName(DataRefImpl Sec) const;
|
||||
virtual uint64_t getSectionAddress(DataRefImpl Sec) const;
|
||||
virtual uint64_t getSectionSize(DataRefImpl Sec) const;
|
||||
virtual StringRef getSectionContents(DataRefImpl Sec) const;
|
||||
virtual bool isSectionText(DataRefImpl Sec) const;
|
||||
|
||||
public:
|
||||
COFFObjectFile(MemoryBuffer *Object, error_code &ec);
|
||||
virtual symbol_iterator begin_symbols() const;
|
||||
virtual symbol_iterator end_symbols() const;
|
||||
virtual section_iterator begin_sections() const;
|
||||
virtual section_iterator end_sections() const;
|
||||
|
||||
virtual uint8_t getBytesInAddress() const;
|
||||
virtual StringRef getFileFormatName() const;
|
||||
virtual unsigned getArch() const;
|
||||
};
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
@ -14,15 +14,13 @@
|
||||
#ifndef LLVM_OBJECT_OBJECT_FILE_H
|
||||
#define LLVM_OBJECT_OBJECT_FILE_H
|
||||
|
||||
#include "llvm/Object/Binary.h"
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include "llvm/Support/MemoryBuffer.h"
|
||||
#include <cstring>
|
||||
|
||||
namespace llvm {
|
||||
|
||||
class MemoryBuffer;
|
||||
class StringRef;
|
||||
|
||||
namespace object {
|
||||
|
||||
class ObjectFile;
|
||||
@ -93,16 +91,17 @@ const uint64_t UnknownAddressOrSize = ~0ULL;
|
||||
/// ObjectFile - This class is the base class for all object file types.
|
||||
/// Concrete instances of this object are created by createObjectFile, which
|
||||
/// figure out which type to create.
|
||||
class ObjectFile {
|
||||
class ObjectFile : public Binary {
|
||||
private:
|
||||
ObjectFile(); // = delete
|
||||
ObjectFile(const ObjectFile &other); // = delete
|
||||
|
||||
protected:
|
||||
MemoryBuffer *MapFile;
|
||||
const uint8_t *base;
|
||||
ObjectFile(unsigned int Type, MemoryBuffer *source, error_code &ec);
|
||||
|
||||
ObjectFile(MemoryBuffer *Object);
|
||||
const uint8_t *base() const {
|
||||
return reinterpret_cast<const uint8_t *>(Data->getBufferStart());
|
||||
}
|
||||
|
||||
// These functions are for SymbolRef to call internally. The main goal of
|
||||
// this is to allow SymbolRef::SymbolPimpl to point directly to the symbol
|
||||
@ -156,8 +155,6 @@ public:
|
||||
typedef content_iterator<SymbolRef> symbol_iterator;
|
||||
typedef content_iterator<SectionRef> section_iterator;
|
||||
|
||||
virtual ~ObjectFile();
|
||||
|
||||
virtual symbol_iterator begin_symbols() const = 0;
|
||||
virtual symbol_iterator end_symbols() const = 0;
|
||||
|
||||
@ -171,8 +168,6 @@ public:
|
||||
virtual StringRef getFileFormatName() const = 0;
|
||||
virtual /* Triple::ArchType */ unsigned getArch() const = 0;
|
||||
|
||||
StringRef getFilename() const;
|
||||
|
||||
/// @returns Pointer to ObjectFile subclass to handle this type of object.
|
||||
/// @param ObjectPath The path to the object file. ObjectPath.isObject must
|
||||
/// return true.
|
||||
@ -180,12 +175,16 @@ public:
|
||||
static ObjectFile *createObjectFile(StringRef ObjectPath);
|
||||
static ObjectFile *createObjectFile(MemoryBuffer *Object);
|
||||
|
||||
private:
|
||||
static inline bool classof(const Binary *v) {
|
||||
return v->getType() >= isObject &&
|
||||
v->getType() < lastObject;
|
||||
}
|
||||
static inline bool classof(const ObjectFile *v) { return true; }
|
||||
|
||||
public:
|
||||
static ObjectFile *createCOFFObjectFile(MemoryBuffer *Object);
|
||||
static ObjectFile *createELFObjectFile(MemoryBuffer *Object);
|
||||
static ObjectFile *createMachOObjectFile(MemoryBuffer *Object);
|
||||
static ObjectFile *createArchiveObjectFile(MemoryBuffer *Object);
|
||||
static ObjectFile *createLibObjectFile(MemoryBuffer *Object);
|
||||
};
|
||||
|
||||
// Inline function definitions.
|
||||
|
Reference in New Issue
Block a user