2011-06-25 19:54:50 +02:00
|
|
|
//===- 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;
|
|
|
|
|
2011-10-18 21:31:59 +02:00
|
|
|
support::ulittle16_t Type;
|
2011-06-25 19:54:50 +02:00
|
|
|
|
|
|
|
support::ulittle8_t StorageClass;
|
|
|
|
support::ulittle8_t NumberOfAuxSymbols;
|
2011-10-18 21:31:59 +02:00
|
|
|
|
|
|
|
uint8_t getBaseType() const {
|
|
|
|
return Type & 0x0F;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t getComplexType() const {
|
|
|
|
return (Type & 0xF0) >> 4;
|
|
|
|
}
|
2011-06-25 19:54:50 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2011-09-08 22:52:17 +02:00
|
|
|
struct coff_relocation {
|
|
|
|
support::ulittle32_t VirtualAddress;
|
|
|
|
support::ulittle32_t SymbolTableIndex;
|
|
|
|
support::ulittle16_t Type;
|
|
|
|
};
|
|
|
|
|
2011-10-18 01:53:56 +02:00
|
|
|
struct coff_aux_section_definition {
|
|
|
|
support::ulittle32_t Length;
|
|
|
|
support::ulittle16_t NumberOfRelocations;
|
|
|
|
support::ulittle16_t NumberOfLinenumbers;
|
|
|
|
support::ulittle32_t CheckSum;
|
|
|
|
support::ulittle16_t Number;
|
|
|
|
support::ulittle8_t Selection;
|
|
|
|
char Unused[3];
|
|
|
|
};
|
|
|
|
|
2011-06-25 19:54:50 +02:00
|
|
|
class COFFObjectFile : public ObjectFile {
|
|
|
|
private:
|
|
|
|
const coff_file_header *Header;
|
|
|
|
const coff_section *SectionTable;
|
|
|
|
const coff_symbol *SymbolTable;
|
|
|
|
const char *StringTable;
|
2011-06-25 19:55:23 +02:00
|
|
|
uint32_t StringTableSize;
|
2011-06-25 19:54:50 +02:00
|
|
|
|
2011-06-25 19:55:23 +02:00
|
|
|
error_code getString(uint32_t offset, StringRef &Res) const;
|
|
|
|
|
|
|
|
const coff_symbol *toSymb(DataRefImpl Symb) const;
|
|
|
|
const coff_section *toSec(DataRefImpl Sec) const;
|
2011-09-08 22:52:17 +02:00
|
|
|
const coff_relocation *toRel(DataRefImpl Rel) const;
|
2011-06-25 19:54:50 +02:00
|
|
|
|
|
|
|
protected:
|
2011-06-25 19:55:23 +02:00
|
|
|
virtual error_code getSymbolNext(DataRefImpl Symb, SymbolRef &Res) const;
|
|
|
|
virtual error_code getSymbolName(DataRefImpl Symb, StringRef &Res) const;
|
2011-11-29 18:40:10 +01:00
|
|
|
virtual error_code getSymbolFileOffset(DataRefImpl Symb, uint64_t &Res) const;
|
2011-06-25 19:55:23 +02:00
|
|
|
virtual error_code getSymbolAddress(DataRefImpl Symb, uint64_t &Res) const;
|
|
|
|
virtual error_code getSymbolSize(DataRefImpl Symb, uint64_t &Res) const;
|
|
|
|
virtual error_code getSymbolNMTypeChar(DataRefImpl Symb, char &Res) const;
|
|
|
|
virtual error_code isSymbolInternal(DataRefImpl Symb, bool &Res) const;
|
2011-09-14 03:22:52 +02:00
|
|
|
virtual error_code isSymbolGlobal(DataRefImpl Symb, bool &Res) const;
|
2011-10-18 01:54:22 +02:00
|
|
|
virtual error_code isSymbolWeak(DataRefImpl Symb, bool &Res) const;
|
2011-10-17 22:19:29 +02:00
|
|
|
virtual error_code getSymbolType(DataRefImpl Symb, SymbolRef::Type &Res) const;
|
2011-10-18 01:54:46 +02:00
|
|
|
virtual error_code isSymbolAbsolute(DataRefImpl Symb, bool &Res) const;
|
|
|
|
virtual error_code getSymbolSection(DataRefImpl Symb,
|
|
|
|
section_iterator &Res) const;
|
2011-06-25 19:55:23 +02:00
|
|
|
|
|
|
|
virtual error_code getSectionNext(DataRefImpl Sec, SectionRef &Res) const;
|
|
|
|
virtual error_code getSectionName(DataRefImpl Sec, StringRef &Res) const;
|
|
|
|
virtual error_code getSectionAddress(DataRefImpl Sec, uint64_t &Res) const;
|
|
|
|
virtual error_code getSectionSize(DataRefImpl Sec, uint64_t &Res) const;
|
|
|
|
virtual error_code getSectionContents(DataRefImpl Sec, StringRef &Res) const;
|
2011-10-10 23:55:43 +02:00
|
|
|
virtual error_code getSectionAlignment(DataRefImpl Sec, uint64_t &Res) const;
|
2011-06-25 19:55:23 +02:00
|
|
|
virtual error_code isSectionText(DataRefImpl Sec, bool &Res) const;
|
2011-09-28 22:57:30 +02:00
|
|
|
virtual error_code isSectionData(DataRefImpl Sec, bool &Res) const;
|
|
|
|
virtual error_code isSectionBSS(DataRefImpl Sec, bool &Res) const;
|
2011-07-15 20:39:21 +02:00
|
|
|
virtual error_code sectionContainsSymbol(DataRefImpl Sec, DataRefImpl Symb,
|
|
|
|
bool &Result) const;
|
2011-10-07 21:25:32 +02:00
|
|
|
virtual relocation_iterator getSectionRelBegin(DataRefImpl Sec) const;
|
|
|
|
virtual relocation_iterator getSectionRelEnd(DataRefImpl Sec) const;
|
2011-06-25 19:54:50 +02:00
|
|
|
|
2011-09-08 22:52:17 +02:00
|
|
|
virtual error_code getRelocationNext(DataRefImpl Rel,
|
|
|
|
RelocationRef &Res) const;
|
|
|
|
virtual error_code getRelocationAddress(DataRefImpl Rel,
|
|
|
|
uint64_t &Res) const;
|
2011-11-29 18:40:10 +01:00
|
|
|
virtual error_code getRelocationOffset(DataRefImpl Rel,
|
|
|
|
uint64_t &Res) const;
|
2011-09-08 22:52:17 +02:00
|
|
|
virtual error_code getRelocationSymbol(DataRefImpl Rel,
|
|
|
|
SymbolRef &Res) const;
|
|
|
|
virtual error_code getRelocationType(DataRefImpl Rel,
|
2011-10-26 19:08:49 +02:00
|
|
|
uint64_t &Res) const;
|
2011-10-07 21:25:32 +02:00
|
|
|
virtual error_code getRelocationTypeName(DataRefImpl Rel,
|
|
|
|
SmallVectorImpl<char> &Result) const;
|
2011-09-08 22:52:17 +02:00
|
|
|
virtual error_code getRelocationAdditionalInfo(DataRefImpl Rel,
|
|
|
|
int64_t &Res) const;
|
2011-10-07 21:25:32 +02:00
|
|
|
virtual error_code getRelocationValueString(DataRefImpl Rel,
|
|
|
|
SmallVectorImpl<char> &Result) const;
|
|
|
|
|
2011-06-25 19:54:50 +02:00
|
|
|
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;
|
2011-10-18 01:53:37 +02:00
|
|
|
|
2011-10-18 01:53:56 +02:00
|
|
|
error_code getHeader(const coff_file_header *&Res) const;
|
|
|
|
error_code getSection(int32_t index, const coff_section *&Res) const;
|
|
|
|
error_code getSymbol(uint32_t index, const coff_symbol *&Res) const;
|
|
|
|
template <typename T>
|
|
|
|
error_code getAuxSymbol(uint32_t index, const T *&Res) const {
|
|
|
|
const coff_symbol *s;
|
|
|
|
error_code ec = getSymbol(index, s);
|
|
|
|
Res = reinterpret_cast<const T*>(s);
|
|
|
|
return ec;
|
|
|
|
}
|
|
|
|
error_code getSymbolName(const coff_symbol *symbol, StringRef &Res) const;
|
2011-10-18 01:53:37 +02:00
|
|
|
|
|
|
|
static inline bool classof(const Binary *v) {
|
|
|
|
return v->getType() == isCOFF;
|
|
|
|
}
|
|
|
|
static inline bool classof(const COFFObjectFile *v) { return true; }
|
2011-06-25 19:54:50 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|