2011-04-22 05:19:48 +02:00
|
|
|
//===- MachOObjectFile.cpp - Mach-O object file binding ---------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines the MachOObjectFile class, which binds the MachOObject
|
|
|
|
// class to the generic ObjectFile wrapper.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/ADT/Triple.h"
|
2011-10-11 19:32:27 +02:00
|
|
|
#include "llvm/Object/MachO.h"
|
2011-04-22 05:19:48 +02:00
|
|
|
#include "llvm/Object/MachOFormat.h"
|
2011-10-26 22:42:54 +02:00
|
|
|
#include "llvm/Support/Format.h"
|
2011-04-22 05:19:48 +02:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
|
|
|
|
|
|
#include <cctype>
|
|
|
|
#include <cstring>
|
|
|
|
#include <limits>
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
using namespace object;
|
|
|
|
|
|
|
|
namespace llvm {
|
2011-10-11 19:32:27 +02:00
|
|
|
namespace object {
|
2011-04-22 05:19:48 +02:00
|
|
|
|
2011-09-08 22:52:17 +02:00
|
|
|
MachOObjectFile::MachOObjectFile(MemoryBuffer *Object, MachOObject *MOO,
|
|
|
|
error_code &ec)
|
2012-03-09 21:41:57 +01:00
|
|
|
: ObjectFile(Binary::ID_MachO, Object, ec),
|
2011-09-08 22:52:17 +02:00
|
|
|
MachOObj(MOO),
|
|
|
|
RegisteredStringTable(std::numeric_limits<uint32_t>::max()) {
|
|
|
|
DataRefImpl DRI;
|
|
|
|
DRI.d.a = DRI.d.b = 0;
|
|
|
|
moveToNextSection(DRI);
|
|
|
|
uint32_t LoadCommandCount = MachOObj->getHeader().NumLoadCommands;
|
|
|
|
while (DRI.d.a < LoadCommandCount) {
|
|
|
|
Sections.push_back(DRI);
|
|
|
|
DRI.d.b++;
|
|
|
|
moveToNextSection(DRI);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-22 05:19:48 +02:00
|
|
|
ObjectFile *ObjectFile::createMachOObjectFile(MemoryBuffer *Buffer) {
|
2011-06-25 19:54:50 +02:00
|
|
|
error_code ec;
|
2011-04-22 05:19:48 +02:00
|
|
|
std::string Err;
|
|
|
|
MachOObject *MachOObj = MachOObject::LoadFromBuffer(Buffer, &Err);
|
|
|
|
if (!MachOObj)
|
|
|
|
return NULL;
|
2011-06-25 19:54:50 +02:00
|
|
|
return new MachOObjectFile(Buffer, MachOObj, ec);
|
2011-04-22 05:19:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*===-- Symbols -----------------------------------------------------------===*/
|
|
|
|
|
|
|
|
void MachOObjectFile::moveToNextSymbol(DataRefImpl &DRI) const {
|
|
|
|
uint32_t LoadCommandCount = MachOObj->getHeader().NumLoadCommands;
|
|
|
|
while (DRI.d.a < LoadCommandCount) {
|
|
|
|
LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
|
|
|
|
if (LCI.Command.Type == macho::LCT_Symtab) {
|
|
|
|
InMemoryStruct<macho::SymtabLoadCommand> SymtabLoadCmd;
|
|
|
|
MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd);
|
|
|
|
if (DRI.d.b < SymtabLoadCmd->NumSymbolTableEntries)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
DRI.d.a++;
|
|
|
|
DRI.d.b = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MachOObjectFile::getSymbolTableEntry(DataRefImpl DRI,
|
|
|
|
InMemoryStruct<macho::SymbolTableEntry> &Res) const {
|
|
|
|
InMemoryStruct<macho::SymtabLoadCommand> SymtabLoadCmd;
|
|
|
|
LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
|
|
|
|
MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd);
|
|
|
|
|
|
|
|
if (RegisteredStringTable != DRI.d.a) {
|
|
|
|
MachOObj->RegisterStringTable(*SymtabLoadCmd);
|
|
|
|
RegisteredStringTable = DRI.d.a;
|
|
|
|
}
|
|
|
|
|
|
|
|
MachOObj->ReadSymbolTableEntry(SymtabLoadCmd->SymbolTableOffset, DRI.d.b,
|
|
|
|
Res);
|
|
|
|
}
|
|
|
|
|
2011-07-15 19:32:45 +02:00
|
|
|
void MachOObjectFile::getSymbol64TableEntry(DataRefImpl DRI,
|
|
|
|
InMemoryStruct<macho::Symbol64TableEntry> &Res) const {
|
|
|
|
InMemoryStruct<macho::SymtabLoadCommand> SymtabLoadCmd;
|
|
|
|
LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
|
|
|
|
MachOObj->ReadSymtabLoadCommand(LCI, SymtabLoadCmd);
|
|
|
|
|
|
|
|
if (RegisteredStringTable != DRI.d.a) {
|
|
|
|
MachOObj->RegisterStringTable(*SymtabLoadCmd);
|
|
|
|
RegisteredStringTable = DRI.d.a;
|
|
|
|
}
|
|
|
|
|
|
|
|
MachOObj->ReadSymbol64TableEntry(SymtabLoadCmd->SymbolTableOffset, DRI.d.b,
|
|
|
|
Res);
|
|
|
|
}
|
|
|
|
|
2011-04-22 05:19:48 +02:00
|
|
|
|
2011-06-25 19:55:23 +02:00
|
|
|
error_code MachOObjectFile::getSymbolNext(DataRefImpl DRI,
|
|
|
|
SymbolRef &Result) const {
|
2011-04-22 05:19:48 +02:00
|
|
|
DRI.d.b++;
|
|
|
|
moveToNextSymbol(DRI);
|
2011-06-25 19:55:23 +02:00
|
|
|
Result = SymbolRef(DRI, this);
|
|
|
|
return object_error::success;
|
2011-04-22 05:19:48 +02:00
|
|
|
}
|
|
|
|
|
2011-06-25 19:55:23 +02:00
|
|
|
error_code MachOObjectFile::getSymbolName(DataRefImpl DRI,
|
|
|
|
StringRef &Result) const {
|
2011-07-15 19:32:45 +02:00
|
|
|
if (MachOObj->is64Bit()) {
|
|
|
|
InMemoryStruct<macho::Symbol64TableEntry> Entry;
|
|
|
|
getSymbol64TableEntry(DRI, Entry);
|
|
|
|
Result = MachOObj->getStringAtIndex(Entry->StringIndex);
|
|
|
|
} else {
|
|
|
|
InMemoryStruct<macho::SymbolTableEntry> Entry;
|
|
|
|
getSymbolTableEntry(DRI, Entry);
|
|
|
|
Result = MachOObj->getStringAtIndex(Entry->StringIndex);
|
|
|
|
}
|
2011-06-25 19:55:23 +02:00
|
|
|
return object_error::success;
|
2011-04-22 05:19:48 +02:00
|
|
|
}
|
|
|
|
|
2011-11-29 18:40:10 +01:00
|
|
|
error_code MachOObjectFile::getSymbolFileOffset(DataRefImpl DRI,
|
|
|
|
uint64_t &Result) const {
|
2011-07-15 19:32:45 +02:00
|
|
|
if (MachOObj->is64Bit()) {
|
|
|
|
InMemoryStruct<macho::Symbol64TableEntry> Entry;
|
|
|
|
getSymbol64TableEntry(DRI, Entry);
|
|
|
|
Result = Entry->Value;
|
2011-11-29 18:40:10 +01:00
|
|
|
if (Entry->SectionIndex) {
|
|
|
|
InMemoryStruct<macho::Section64> Section;
|
|
|
|
getSection64(Sections[Entry->SectionIndex-1], Section);
|
|
|
|
Result += Section->Offset - Section->Address;
|
|
|
|
}
|
2011-07-15 19:32:45 +02:00
|
|
|
} else {
|
|
|
|
InMemoryStruct<macho::SymbolTableEntry> Entry;
|
|
|
|
getSymbolTableEntry(DRI, Entry);
|
|
|
|
Result = Entry->Value;
|
2011-11-29 18:40:10 +01:00
|
|
|
if (Entry->SectionIndex) {
|
|
|
|
InMemoryStruct<macho::Section> Section;
|
|
|
|
getSection(Sections[Entry->SectionIndex-1], Section);
|
|
|
|
Result += Section->Offset - Section->Address;
|
|
|
|
}
|
2011-07-15 19:32:45 +02:00
|
|
|
}
|
2011-10-13 00:37:10 +02:00
|
|
|
|
2011-06-25 19:55:23 +02:00
|
|
|
return object_error::success;
|
2011-04-22 05:19:48 +02:00
|
|
|
}
|
|
|
|
|
2011-09-14 03:22:52 +02:00
|
|
|
error_code MachOObjectFile::getSymbolAddress(DataRefImpl DRI,
|
|
|
|
uint64_t &Result) const {
|
|
|
|
if (MachOObj->is64Bit()) {
|
|
|
|
InMemoryStruct<macho::Symbol64TableEntry> Entry;
|
|
|
|
getSymbol64TableEntry(DRI, Entry);
|
2011-10-13 00:37:10 +02:00
|
|
|
Result = Entry->Value;
|
2011-09-14 03:22:52 +02:00
|
|
|
} else {
|
|
|
|
InMemoryStruct<macho::SymbolTableEntry> Entry;
|
|
|
|
getSymbolTableEntry(DRI, Entry);
|
2011-10-13 00:37:10 +02:00
|
|
|
Result = Entry->Value;
|
2011-09-14 03:22:52 +02:00
|
|
|
}
|
|
|
|
return object_error::success;
|
|
|
|
}
|
|
|
|
|
2011-06-25 19:55:23 +02:00
|
|
|
error_code MachOObjectFile::getSymbolSize(DataRefImpl DRI,
|
|
|
|
uint64_t &Result) const {
|
2011-11-29 18:40:10 +01:00
|
|
|
uint32_t LoadCommandCount = MachOObj->getHeader().NumLoadCommands;
|
|
|
|
uint64_t BeginOffset;
|
|
|
|
uint64_t EndOffset = 0;
|
|
|
|
uint8_t SectionIndex;
|
|
|
|
if (MachOObj->is64Bit()) {
|
|
|
|
InMemoryStruct<macho::Symbol64TableEntry> Entry;
|
|
|
|
getSymbol64TableEntry(DRI, Entry);
|
|
|
|
BeginOffset = Entry->Value;
|
|
|
|
SectionIndex = Entry->SectionIndex;
|
|
|
|
if (!SectionIndex) {
|
|
|
|
Result = UnknownAddressOrSize;
|
|
|
|
return object_error::success;
|
|
|
|
}
|
|
|
|
// Unfortunately symbols are unsorted so we need to touch all
|
|
|
|
// symbols from load command
|
|
|
|
DRI.d.b = 0;
|
|
|
|
uint32_t Command = DRI.d.a;
|
|
|
|
while (Command == DRI.d.a) {
|
|
|
|
moveToNextSymbol(DRI);
|
|
|
|
if (DRI.d.a < LoadCommandCount) {
|
|
|
|
getSymbol64TableEntry(DRI, Entry);
|
|
|
|
if (Entry->SectionIndex == SectionIndex && Entry->Value > BeginOffset)
|
|
|
|
if (!EndOffset || Entry->Value < EndOffset)
|
|
|
|
EndOffset = Entry->Value;
|
|
|
|
}
|
|
|
|
DRI.d.b++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
InMemoryStruct<macho::SymbolTableEntry> Entry;
|
|
|
|
getSymbolTableEntry(DRI, Entry);
|
|
|
|
BeginOffset = Entry->Value;
|
|
|
|
SectionIndex = Entry->SectionIndex;
|
|
|
|
if (!SectionIndex) {
|
|
|
|
Result = UnknownAddressOrSize;
|
|
|
|
return object_error::success;
|
|
|
|
}
|
|
|
|
// Unfortunately symbols are unsorted so we need to touch all
|
|
|
|
// symbols from load command
|
|
|
|
DRI.d.b = 0;
|
|
|
|
uint32_t Command = DRI.d.a;
|
|
|
|
while (Command == DRI.d.a) {
|
|
|
|
moveToNextSymbol(DRI);
|
|
|
|
if (DRI.d.a < LoadCommandCount) {
|
|
|
|
getSymbolTableEntry(DRI, Entry);
|
|
|
|
if (Entry->SectionIndex == SectionIndex && Entry->Value > BeginOffset)
|
|
|
|
if (!EndOffset || Entry->Value < EndOffset)
|
|
|
|
EndOffset = Entry->Value;
|
|
|
|
}
|
|
|
|
DRI.d.b++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!EndOffset) {
|
|
|
|
uint64_t Size;
|
|
|
|
getSectionSize(Sections[SectionIndex-1], Size);
|
|
|
|
getSectionAddress(Sections[SectionIndex-1], EndOffset);
|
|
|
|
EndOffset += Size;
|
|
|
|
}
|
|
|
|
Result = EndOffset - BeginOffset;
|
2011-06-25 19:55:23 +02:00
|
|
|
return object_error::success;
|
2011-04-22 05:19:48 +02:00
|
|
|
}
|
|
|
|
|
2011-06-25 19:55:23 +02:00
|
|
|
error_code MachOObjectFile::getSymbolNMTypeChar(DataRefImpl DRI,
|
|
|
|
char &Result) const {
|
2011-07-15 19:32:45 +02:00
|
|
|
uint8_t Type, Flags;
|
|
|
|
if (MachOObj->is64Bit()) {
|
|
|
|
InMemoryStruct<macho::Symbol64TableEntry> Entry;
|
|
|
|
getSymbol64TableEntry(DRI, Entry);
|
|
|
|
Type = Entry->Type;
|
|
|
|
Flags = Entry->Flags;
|
|
|
|
} else {
|
|
|
|
InMemoryStruct<macho::SymbolTableEntry> Entry;
|
|
|
|
getSymbolTableEntry(DRI, Entry);
|
|
|
|
Type = Entry->Type;
|
|
|
|
Flags = Entry->Flags;
|
|
|
|
}
|
2011-04-22 05:19:48 +02:00
|
|
|
|
|
|
|
char Char;
|
2011-07-15 19:32:45 +02:00
|
|
|
switch (Type & macho::STF_TypeMask) {
|
2011-04-22 05:19:48 +02:00
|
|
|
case macho::STT_Undefined:
|
|
|
|
Char = 'u';
|
|
|
|
break;
|
|
|
|
case macho::STT_Absolute:
|
|
|
|
case macho::STT_Section:
|
|
|
|
Char = 's';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Char = '?';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-07-15 19:32:45 +02:00
|
|
|
if (Flags & (macho::STF_External | macho::STF_PrivateExtern))
|
2011-04-22 05:19:48 +02:00
|
|
|
Char = toupper(Char);
|
2011-06-25 19:55:23 +02:00
|
|
|
Result = Char;
|
|
|
|
return object_error::success;
|
2011-04-22 05:19:48 +02:00
|
|
|
}
|
|
|
|
|
2012-02-29 00:47:53 +01:00
|
|
|
error_code MachOObjectFile::getSymbolFlags(DataRefImpl DRI,
|
|
|
|
uint32_t &Result) const {
|
|
|
|
uint16_t MachOFlags;
|
|
|
|
uint8_t MachOType;
|
2011-07-15 19:32:45 +02:00
|
|
|
if (MachOObj->is64Bit()) {
|
|
|
|
InMemoryStruct<macho::Symbol64TableEntry> Entry;
|
|
|
|
getSymbol64TableEntry(DRI, Entry);
|
2012-02-29 00:47:53 +01:00
|
|
|
MachOFlags = Entry->Flags;
|
|
|
|
MachOType = Entry->Type;
|
2011-07-15 19:32:45 +02:00
|
|
|
} else {
|
|
|
|
InMemoryStruct<macho::SymbolTableEntry> Entry;
|
|
|
|
getSymbolTableEntry(DRI, Entry);
|
2012-02-29 00:47:53 +01:00
|
|
|
MachOFlags = Entry->Flags;
|
|
|
|
MachOType = Entry->Type;
|
2011-07-15 19:32:45 +02:00
|
|
|
}
|
2011-04-22 05:19:48 +02:00
|
|
|
|
2012-02-29 03:11:55 +01:00
|
|
|
// TODO: Correctly set SF_ThreadLocal and SF_Common.
|
2012-02-29 00:47:53 +01:00
|
|
|
Result = SymbolRef::SF_None;
|
2012-02-29 03:11:55 +01:00
|
|
|
|
|
|
|
if ((MachOType & MachO::NlistMaskType) == MachO::NListTypeUndefined)
|
|
|
|
Result |= SymbolRef::SF_Undefined;
|
|
|
|
|
2012-02-29 00:47:53 +01:00
|
|
|
if (MachOFlags & macho::STF_StabsEntryMask)
|
|
|
|
Result |= SymbolRef::SF_FormatSpecific;
|
2011-10-18 01:54:22 +02:00
|
|
|
|
2012-02-29 00:47:53 +01:00
|
|
|
if (MachOType & MachO::NlistMaskExternal)
|
|
|
|
Result |= SymbolRef::SF_Global;
|
2011-10-18 01:54:22 +02:00
|
|
|
|
2012-02-29 00:47:53 +01:00
|
|
|
if (MachOFlags & (MachO::NListDescWeakRef | MachO::NListDescWeakDef))
|
|
|
|
Result |= SymbolRef::SF_Weak;
|
2011-10-18 01:54:46 +02:00
|
|
|
|
2012-02-29 00:47:53 +01:00
|
|
|
if ((MachOType & MachO::NlistMaskType) == MachO::NListTypeAbsolute)
|
|
|
|
Result |= SymbolRef::SF_Absolute;
|
2011-10-18 01:54:46 +02:00
|
|
|
|
|
|
|
return object_error::success;
|
|
|
|
}
|
|
|
|
|
|
|
|
error_code MachOObjectFile::getSymbolSection(DataRefImpl Symb,
|
|
|
|
section_iterator &Res) const {
|
|
|
|
uint8_t index;
|
|
|
|
if (MachOObj->is64Bit()) {
|
|
|
|
InMemoryStruct<macho::Symbol64TableEntry> Entry;
|
|
|
|
getSymbol64TableEntry(Symb, Entry);
|
|
|
|
index = Entry->SectionIndex;
|
|
|
|
} else {
|
|
|
|
InMemoryStruct<macho::SymbolTableEntry> Entry;
|
|
|
|
getSymbolTableEntry(Symb, Entry);
|
|
|
|
index = Entry->SectionIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (index == 0)
|
|
|
|
Res = end_sections();
|
|
|
|
else
|
2011-11-29 18:40:10 +01:00
|
|
|
Res = section_iterator(SectionRef(Sections[index-1], this));
|
2011-10-18 01:54:46 +02:00
|
|
|
|
|
|
|
return object_error::success;
|
2011-09-14 03:22:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
error_code MachOObjectFile::getSymbolType(DataRefImpl Symb,
|
2011-10-17 22:19:29 +02:00
|
|
|
SymbolRef::Type &Res) const {
|
2011-09-14 03:22:52 +02:00
|
|
|
uint8_t n_type;
|
|
|
|
if (MachOObj->is64Bit()) {
|
|
|
|
InMemoryStruct<macho::Symbol64TableEntry> Entry;
|
|
|
|
getSymbol64TableEntry(Symb, Entry);
|
|
|
|
n_type = Entry->Type;
|
|
|
|
} else {
|
|
|
|
InMemoryStruct<macho::SymbolTableEntry> Entry;
|
|
|
|
getSymbolTableEntry(Symb, Entry);
|
|
|
|
n_type = Entry->Type;
|
|
|
|
}
|
|
|
|
Res = SymbolRef::ST_Other;
|
2011-10-13 00:23:12 +02:00
|
|
|
|
|
|
|
// If this is a STAB debugging symbol, we can do nothing more.
|
2011-10-21 21:26:54 +02:00
|
|
|
if (n_type & MachO::NlistMaskStab) {
|
|
|
|
Res = SymbolRef::ST_Debug;
|
2011-10-13 00:23:12 +02:00
|
|
|
return object_error::success;
|
2011-10-21 21:26:54 +02:00
|
|
|
}
|
2011-10-13 00:23:12 +02:00
|
|
|
|
2011-09-14 03:22:52 +02:00
|
|
|
switch (n_type & MachO::NlistMaskType) {
|
|
|
|
case MachO::NListTypeUndefined :
|
2012-02-29 03:11:55 +01:00
|
|
|
Res = SymbolRef::ST_Unknown;
|
2011-09-14 03:22:52 +02:00
|
|
|
break;
|
|
|
|
case MachO::NListTypeSection :
|
|
|
|
Res = SymbolRef::ST_Function;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return object_error::success;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-07 21:25:32 +02:00
|
|
|
symbol_iterator MachOObjectFile::begin_symbols() const {
|
2011-04-22 05:19:48 +02:00
|
|
|
// DRI.d.a = segment number; DRI.d.b = symbol index.
|
|
|
|
DataRefImpl DRI;
|
|
|
|
DRI.d.a = DRI.d.b = 0;
|
|
|
|
moveToNextSymbol(DRI);
|
|
|
|
return symbol_iterator(SymbolRef(DRI, this));
|
|
|
|
}
|
|
|
|
|
2011-10-07 21:25:32 +02:00
|
|
|
symbol_iterator MachOObjectFile::end_symbols() const {
|
2011-04-22 05:19:48 +02:00
|
|
|
DataRefImpl DRI;
|
|
|
|
DRI.d.a = MachOObj->getHeader().NumLoadCommands;
|
|
|
|
DRI.d.b = 0;
|
|
|
|
return symbol_iterator(SymbolRef(DRI, this));
|
|
|
|
}
|
|
|
|
|
2012-02-28 01:40:37 +01:00
|
|
|
symbol_iterator MachOObjectFile::begin_dynamic_symbols() const {
|
|
|
|
// TODO: implement
|
|
|
|
report_fatal_error("Dynamic symbols unimplemented in MachOObjectFile");
|
|
|
|
}
|
|
|
|
|
|
|
|
symbol_iterator MachOObjectFile::end_dynamic_symbols() const {
|
|
|
|
// TODO: implement
|
|
|
|
report_fatal_error("Dynamic symbols unimplemented in MachOObjectFile");
|
|
|
|
}
|
2011-04-22 05:19:48 +02:00
|
|
|
|
2012-03-01 02:36:50 +01:00
|
|
|
library_iterator MachOObjectFile::begin_libraries_needed() const {
|
|
|
|
// TODO: implement
|
|
|
|
report_fatal_error("Needed libraries unimplemented in MachOObjectFile");
|
|
|
|
}
|
|
|
|
|
|
|
|
library_iterator MachOObjectFile::end_libraries_needed() const {
|
|
|
|
// TODO: implement
|
|
|
|
report_fatal_error("Needed libraries unimplemented in MachOObjectFile");
|
|
|
|
}
|
|
|
|
|
2012-03-01 23:19:54 +01:00
|
|
|
StringRef MachOObjectFile::getLoadName() const {
|
|
|
|
// TODO: Implement
|
|
|
|
report_fatal_error("get_load_name() unimplemented in MachOObjectFile");
|
|
|
|
}
|
|
|
|
|
2011-04-22 05:19:48 +02:00
|
|
|
/*===-- Sections ----------------------------------------------------------===*/
|
|
|
|
|
|
|
|
void MachOObjectFile::moveToNextSection(DataRefImpl &DRI) const {
|
|
|
|
uint32_t LoadCommandCount = MachOObj->getHeader().NumLoadCommands;
|
|
|
|
while (DRI.d.a < LoadCommandCount) {
|
|
|
|
LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
|
|
|
|
if (LCI.Command.Type == macho::LCT_Segment) {
|
|
|
|
InMemoryStruct<macho::SegmentLoadCommand> SegmentLoadCmd;
|
|
|
|
MachOObj->ReadSegmentLoadCommand(LCI, SegmentLoadCmd);
|
|
|
|
if (DRI.d.b < SegmentLoadCmd->NumSections)
|
|
|
|
return;
|
|
|
|
} else if (LCI.Command.Type == macho::LCT_Segment64) {
|
|
|
|
InMemoryStruct<macho::Segment64LoadCommand> Segment64LoadCmd;
|
|
|
|
MachOObj->ReadSegment64LoadCommand(LCI, Segment64LoadCmd);
|
|
|
|
if (DRI.d.b < Segment64LoadCmd->NumSections)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
DRI.d.a++;
|
|
|
|
DRI.d.b = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-25 19:55:23 +02:00
|
|
|
error_code MachOObjectFile::getSectionNext(DataRefImpl DRI,
|
|
|
|
SectionRef &Result) const {
|
2011-04-22 05:19:48 +02:00
|
|
|
DRI.d.b++;
|
|
|
|
moveToNextSection(DRI);
|
2011-06-25 19:55:23 +02:00
|
|
|
Result = SectionRef(DRI, this);
|
|
|
|
return object_error::success;
|
2011-04-22 05:19:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MachOObjectFile::getSection(DataRefImpl DRI,
|
|
|
|
InMemoryStruct<macho::Section> &Res) const {
|
|
|
|
InMemoryStruct<macho::SegmentLoadCommand> SLC;
|
|
|
|
LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
|
|
|
|
MachOObj->ReadSegmentLoadCommand(LCI, SLC);
|
|
|
|
MachOObj->ReadSection(LCI, DRI.d.b, Res);
|
|
|
|
}
|
|
|
|
|
2011-10-07 21:25:32 +02:00
|
|
|
std::size_t MachOObjectFile::getSectionIndex(DataRefImpl Sec) const {
|
|
|
|
SectionList::const_iterator loc =
|
|
|
|
std::find(Sections.begin(), Sections.end(), Sec);
|
|
|
|
assert(loc != Sections.end() && "Sec is not a valid section!");
|
|
|
|
return std::distance(Sections.begin(), loc);
|
|
|
|
}
|
|
|
|
|
2011-07-15 02:14:48 +02:00
|
|
|
void
|
|
|
|
MachOObjectFile::getSection64(DataRefImpl DRI,
|
|
|
|
InMemoryStruct<macho::Section64> &Res) const {
|
|
|
|
InMemoryStruct<macho::Segment64LoadCommand> SLC;
|
2011-04-22 05:19:48 +02:00
|
|
|
LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
|
2011-07-15 02:14:48 +02:00
|
|
|
MachOObj->ReadSegment64LoadCommand(LCI, SLC);
|
|
|
|
MachOObj->ReadSection64(LCI, DRI.d.b, Res);
|
|
|
|
}
|
2011-04-22 05:19:48 +02:00
|
|
|
|
2011-07-15 02:14:48 +02:00
|
|
|
static bool is64BitLoadCommand(const MachOObject *MachOObj, DataRefImpl DRI) {
|
|
|
|
LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
|
|
|
|
if (LCI.Command.Type == macho::LCT_Segment64)
|
|
|
|
return true;
|
|
|
|
assert(LCI.Command.Type == macho::LCT_Segment && "Unexpected Type.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
error_code MachOObjectFile::getSectionName(DataRefImpl DRI,
|
|
|
|
StringRef &Result) const {
|
|
|
|
// FIXME: thread safety.
|
2011-06-25 19:55:23 +02:00
|
|
|
static char result[34];
|
2011-07-15 02:14:48 +02:00
|
|
|
if (is64BitLoadCommand(MachOObj, DRI)) {
|
|
|
|
InMemoryStruct<macho::Segment64LoadCommand> SLC;
|
|
|
|
LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
|
|
|
|
MachOObj->ReadSegment64LoadCommand(LCI, SLC);
|
|
|
|
InMemoryStruct<macho::Section64> Sect;
|
|
|
|
MachOObj->ReadSection64(LCI, DRI.d.b, Sect);
|
|
|
|
|
2011-07-15 02:29:02 +02:00
|
|
|
strcpy(result, Sect->SegmentName);
|
2011-07-15 02:14:48 +02:00
|
|
|
strcat(result, ",");
|
|
|
|
strcat(result, Sect->Name);
|
|
|
|
} else {
|
|
|
|
InMemoryStruct<macho::SegmentLoadCommand> SLC;
|
|
|
|
LoadCommandInfo LCI = MachOObj->getLoadCommandInfo(DRI.d.a);
|
|
|
|
MachOObj->ReadSegmentLoadCommand(LCI, SLC);
|
|
|
|
InMemoryStruct<macho::Section> Sect;
|
|
|
|
MachOObj->ReadSection(LCI, DRI.d.b, Sect);
|
|
|
|
|
2011-07-15 02:29:02 +02:00
|
|
|
strcpy(result, Sect->SegmentName);
|
2011-07-15 02:14:48 +02:00
|
|
|
strcat(result, ",");
|
|
|
|
strcat(result, Sect->Name);
|
|
|
|
}
|
2011-06-25 19:55:23 +02:00
|
|
|
Result = StringRef(result);
|
|
|
|
return object_error::success;
|
2011-04-22 05:19:48 +02:00
|
|
|
}
|
|
|
|
|
2011-06-25 19:55:23 +02:00
|
|
|
error_code MachOObjectFile::getSectionAddress(DataRefImpl DRI,
|
|
|
|
uint64_t &Result) const {
|
2011-07-15 02:14:48 +02:00
|
|
|
if (is64BitLoadCommand(MachOObj, DRI)) {
|
|
|
|
InMemoryStruct<macho::Section64> Sect;
|
|
|
|
getSection64(DRI, Sect);
|
|
|
|
Result = Sect->Address;
|
|
|
|
} else {
|
|
|
|
InMemoryStruct<macho::Section> Sect;
|
|
|
|
getSection(DRI, Sect);
|
|
|
|
Result = Sect->Address;
|
|
|
|
}
|
2011-06-25 19:55:23 +02:00
|
|
|
return object_error::success;
|
2011-04-22 05:19:48 +02:00
|
|
|
}
|
|
|
|
|
2011-06-25 19:55:23 +02:00
|
|
|
error_code MachOObjectFile::getSectionSize(DataRefImpl DRI,
|
|
|
|
uint64_t &Result) const {
|
2011-07-15 02:14:48 +02:00
|
|
|
if (is64BitLoadCommand(MachOObj, DRI)) {
|
|
|
|
InMemoryStruct<macho::Section64> Sect;
|
|
|
|
getSection64(DRI, Sect);
|
|
|
|
Result = Sect->Size;
|
|
|
|
} else {
|
|
|
|
InMemoryStruct<macho::Section> Sect;
|
|
|
|
getSection(DRI, Sect);
|
|
|
|
Result = Sect->Size;
|
|
|
|
}
|
2011-06-25 19:55:23 +02:00
|
|
|
return object_error::success;
|
2011-04-22 05:19:48 +02:00
|
|
|
}
|
|
|
|
|
2011-06-25 19:55:23 +02:00
|
|
|
error_code MachOObjectFile::getSectionContents(DataRefImpl DRI,
|
|
|
|
StringRef &Result) const {
|
2011-07-15 02:14:48 +02:00
|
|
|
if (is64BitLoadCommand(MachOObj, DRI)) {
|
|
|
|
InMemoryStruct<macho::Section64> Sect;
|
|
|
|
getSection64(DRI, Sect);
|
|
|
|
Result = MachOObj->getData(Sect->Offset, Sect->Size);
|
|
|
|
} else {
|
|
|
|
InMemoryStruct<macho::Section> Sect;
|
|
|
|
getSection(DRI, Sect);
|
|
|
|
Result = MachOObj->getData(Sect->Offset, Sect->Size);
|
|
|
|
}
|
2011-06-25 19:55:23 +02:00
|
|
|
return object_error::success;
|
2011-04-22 05:19:48 +02:00
|
|
|
}
|
|
|
|
|
2011-10-10 23:55:43 +02:00
|
|
|
error_code MachOObjectFile::getSectionAlignment(DataRefImpl DRI,
|
|
|
|
uint64_t &Result) const {
|
|
|
|
if (is64BitLoadCommand(MachOObj, DRI)) {
|
|
|
|
InMemoryStruct<macho::Section64> Sect;
|
|
|
|
getSection64(DRI, Sect);
|
2011-10-11 01:36:56 +02:00
|
|
|
Result = uint64_t(1) << Sect->Align;
|
2011-10-10 23:55:43 +02:00
|
|
|
} else {
|
|
|
|
InMemoryStruct<macho::Section> Sect;
|
|
|
|
getSection(DRI, Sect);
|
2011-10-11 01:36:56 +02:00
|
|
|
Result = uint64_t(1) << Sect->Align;
|
2011-10-10 23:55:43 +02:00
|
|
|
}
|
|
|
|
return object_error::success;
|
|
|
|
}
|
|
|
|
|
2011-06-25 19:55:23 +02:00
|
|
|
error_code MachOObjectFile::isSectionText(DataRefImpl DRI,
|
|
|
|
bool &Result) const {
|
2011-07-15 02:14:48 +02:00
|
|
|
if (is64BitLoadCommand(MachOObj, DRI)) {
|
|
|
|
InMemoryStruct<macho::Section64> Sect;
|
|
|
|
getSection64(DRI, Sect);
|
|
|
|
Result = !strcmp(Sect->Name, "__text");
|
|
|
|
} else {
|
|
|
|
InMemoryStruct<macho::Section> Sect;
|
|
|
|
getSection(DRI, Sect);
|
|
|
|
Result = !strcmp(Sect->Name, "__text");
|
|
|
|
}
|
2011-06-25 19:55:23 +02:00
|
|
|
return object_error::success;
|
2011-04-22 05:19:48 +02:00
|
|
|
}
|
|
|
|
|
2011-09-28 22:57:30 +02:00
|
|
|
error_code MachOObjectFile::isSectionData(DataRefImpl DRI,
|
|
|
|
bool &Result) const {
|
|
|
|
// FIXME: Unimplemented.
|
|
|
|
Result = false;
|
|
|
|
return object_error::success;
|
|
|
|
}
|
|
|
|
|
|
|
|
error_code MachOObjectFile::isSectionBSS(DataRefImpl DRI,
|
|
|
|
bool &Result) const {
|
|
|
|
// FIXME: Unimplemented.
|
|
|
|
Result = false;
|
|
|
|
return object_error::success;
|
|
|
|
}
|
|
|
|
|
2011-07-15 20:39:21 +02:00
|
|
|
error_code MachOObjectFile::sectionContainsSymbol(DataRefImpl Sec,
|
|
|
|
DataRefImpl Symb,
|
|
|
|
bool &Result) const {
|
2011-10-17 22:19:29 +02:00
|
|
|
SymbolRef::Type ST;
|
2011-10-13 00:21:32 +02:00
|
|
|
getSymbolType(Symb, ST);
|
2012-02-29 03:11:55 +01:00
|
|
|
if (ST == SymbolRef::ST_Unknown) {
|
2011-10-13 00:21:32 +02:00
|
|
|
Result = false;
|
|
|
|
return object_error::success;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t SectBegin, SectEnd;
|
|
|
|
getSectionAddress(Sec, SectBegin);
|
|
|
|
getSectionSize(Sec, SectEnd);
|
|
|
|
SectEnd += SectBegin;
|
|
|
|
|
2011-07-15 20:39:21 +02:00
|
|
|
if (MachOObj->is64Bit()) {
|
|
|
|
InMemoryStruct<macho::Symbol64TableEntry> Entry;
|
|
|
|
getSymbol64TableEntry(Symb, Entry);
|
2011-10-13 00:21:32 +02:00
|
|
|
uint64_t SymAddr= Entry->Value;
|
|
|
|
Result = (SymAddr >= SectBegin) && (SymAddr < SectEnd);
|
2011-07-15 20:39:21 +02:00
|
|
|
} else {
|
|
|
|
InMemoryStruct<macho::SymbolTableEntry> Entry;
|
|
|
|
getSymbolTableEntry(Symb, Entry);
|
2011-10-13 00:21:32 +02:00
|
|
|
uint64_t SymAddr= Entry->Value;
|
|
|
|
Result = (SymAddr >= SectBegin) && (SymAddr < SectEnd);
|
2011-07-15 20:39:21 +02:00
|
|
|
}
|
2011-10-13 00:21:32 +02:00
|
|
|
|
2011-07-15 20:39:21 +02:00
|
|
|
return object_error::success;
|
|
|
|
}
|
|
|
|
|
2011-10-07 21:25:32 +02:00
|
|
|
relocation_iterator MachOObjectFile::getSectionRelBegin(DataRefImpl Sec) const {
|
|
|
|
DataRefImpl ret;
|
|
|
|
ret.d.a = 0;
|
|
|
|
ret.d.b = getSectionIndex(Sec);
|
|
|
|
return relocation_iterator(RelocationRef(ret, this));
|
|
|
|
}
|
|
|
|
relocation_iterator MachOObjectFile::getSectionRelEnd(DataRefImpl Sec) const {
|
|
|
|
uint32_t last_reloc;
|
|
|
|
if (is64BitLoadCommand(MachOObj, Sec)) {
|
|
|
|
InMemoryStruct<macho::Section64> Sect;
|
|
|
|
getSection64(Sec, Sect);
|
|
|
|
last_reloc = Sect->NumRelocationTableEntries;
|
|
|
|
} else {
|
|
|
|
InMemoryStruct<macho::Section> Sect;
|
|
|
|
getSection(Sec, Sect);
|
|
|
|
last_reloc = Sect->NumRelocationTableEntries;
|
|
|
|
}
|
|
|
|
DataRefImpl ret;
|
|
|
|
ret.d.a = last_reloc;
|
|
|
|
ret.d.b = getSectionIndex(Sec);
|
|
|
|
return relocation_iterator(RelocationRef(ret, this));
|
|
|
|
}
|
|
|
|
|
|
|
|
section_iterator MachOObjectFile::begin_sections() const {
|
2011-04-22 05:19:48 +02:00
|
|
|
DataRefImpl DRI;
|
|
|
|
DRI.d.a = DRI.d.b = 0;
|
|
|
|
moveToNextSection(DRI);
|
|
|
|
return section_iterator(SectionRef(DRI, this));
|
|
|
|
}
|
|
|
|
|
2011-10-07 21:25:32 +02:00
|
|
|
section_iterator MachOObjectFile::end_sections() const {
|
2011-04-22 05:19:48 +02:00
|
|
|
DataRefImpl DRI;
|
|
|
|
DRI.d.a = MachOObj->getHeader().NumLoadCommands;
|
|
|
|
DRI.d.b = 0;
|
|
|
|
return section_iterator(SectionRef(DRI, this));
|
|
|
|
}
|
|
|
|
|
2011-09-08 22:52:17 +02:00
|
|
|
/*===-- Relocations -------------------------------------------------------===*/
|
|
|
|
|
|
|
|
void MachOObjectFile::
|
|
|
|
getRelocation(DataRefImpl Rel,
|
|
|
|
InMemoryStruct<macho::RelocationEntry> &Res) const {
|
|
|
|
uint32_t relOffset;
|
|
|
|
if (MachOObj->is64Bit()) {
|
|
|
|
InMemoryStruct<macho::Section64> Sect;
|
|
|
|
getSection64(Sections[Rel.d.b], Sect);
|
|
|
|
relOffset = Sect->RelocationTableOffset;
|
|
|
|
} else {
|
|
|
|
InMemoryStruct<macho::Section> Sect;
|
|
|
|
getSection(Sections[Rel.d.b], Sect);
|
|
|
|
relOffset = Sect->RelocationTableOffset;
|
|
|
|
}
|
|
|
|
MachOObj->ReadRelocationEntry(relOffset, Rel.d.a, Res);
|
|
|
|
}
|
|
|
|
error_code MachOObjectFile::getRelocationNext(DataRefImpl Rel,
|
|
|
|
RelocationRef &Res) const {
|
|
|
|
++Rel.d.a;
|
|
|
|
Res = RelocationRef(Rel, this);
|
|
|
|
return object_error::success;
|
|
|
|
}
|
|
|
|
error_code MachOObjectFile::getRelocationAddress(DataRefImpl Rel,
|
|
|
|
uint64_t &Res) const {
|
2011-10-24 23:44:00 +02:00
|
|
|
const uint8_t* sectAddress = 0;
|
2011-09-08 22:52:17 +02:00
|
|
|
if (MachOObj->is64Bit()) {
|
|
|
|
InMemoryStruct<macho::Section64> Sect;
|
|
|
|
getSection64(Sections[Rel.d.b], Sect);
|
2011-10-24 23:44:00 +02:00
|
|
|
sectAddress += Sect->Address;
|
2011-09-08 22:52:17 +02:00
|
|
|
} else {
|
|
|
|
InMemoryStruct<macho::Section> Sect;
|
|
|
|
getSection(Sections[Rel.d.b], Sect);
|
2011-10-24 23:44:00 +02:00
|
|
|
sectAddress += Sect->Address;
|
2011-09-08 22:52:17 +02:00
|
|
|
}
|
|
|
|
InMemoryStruct<macho::RelocationEntry> RE;
|
|
|
|
getRelocation(Rel, RE);
|
2011-10-26 22:42:54 +02:00
|
|
|
|
|
|
|
unsigned Arch = getArch();
|
|
|
|
bool isScattered = (Arch != Triple::x86_64) &&
|
|
|
|
(RE->Word0 & macho::RF_Scattered);
|
|
|
|
uint64_t RelAddr = 0;
|
2011-11-29 18:40:10 +01:00
|
|
|
if (isScattered)
|
2011-10-26 22:42:54 +02:00
|
|
|
RelAddr = RE->Word0 & 0xFFFFFF;
|
|
|
|
else
|
|
|
|
RelAddr = RE->Word0;
|
|
|
|
|
|
|
|
Res = reinterpret_cast<uintptr_t>(sectAddress + RelAddr);
|
2011-09-08 22:52:17 +02:00
|
|
|
return object_error::success;
|
|
|
|
}
|
2011-11-29 18:40:10 +01:00
|
|
|
error_code MachOObjectFile::getRelocationOffset(DataRefImpl Rel,
|
|
|
|
uint64_t &Res) const {
|
|
|
|
InMemoryStruct<macho::RelocationEntry> RE;
|
|
|
|
getRelocation(Rel, RE);
|
|
|
|
|
|
|
|
unsigned Arch = getArch();
|
|
|
|
bool isScattered = (Arch != Triple::x86_64) &&
|
|
|
|
(RE->Word0 & macho::RF_Scattered);
|
|
|
|
if (isScattered)
|
|
|
|
Res = RE->Word0 & 0xFFFFFF;
|
|
|
|
else
|
|
|
|
Res = RE->Word0;
|
|
|
|
return object_error::success;
|
|
|
|
}
|
2011-09-08 22:52:17 +02:00
|
|
|
error_code MachOObjectFile::getRelocationSymbol(DataRefImpl Rel,
|
|
|
|
SymbolRef &Res) const {
|
|
|
|
InMemoryStruct<macho::RelocationEntry> RE;
|
|
|
|
getRelocation(Rel, RE);
|
|
|
|
uint32_t SymbolIdx = RE->Word1 & 0xffffff;
|
|
|
|
bool isExtern = (RE->Word1 >> 27) & 1;
|
|
|
|
|
|
|
|
DataRefImpl Sym;
|
|
|
|
Sym.d.a = Sym.d.b = 0;
|
|
|
|
moveToNextSymbol(Sym);
|
|
|
|
if (isExtern) {
|
|
|
|
for (unsigned i = 0; i < SymbolIdx; i++) {
|
|
|
|
Sym.d.b++;
|
|
|
|
moveToNextSymbol(Sym);
|
2011-09-09 02:16:50 +02:00
|
|
|
assert(Sym.d.a < MachOObj->getHeader().NumLoadCommands &&
|
2011-09-08 22:52:17 +02:00
|
|
|
"Relocation symbol index out of range!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Res = SymbolRef(Sym, this);
|
|
|
|
return object_error::success;
|
|
|
|
}
|
|
|
|
error_code MachOObjectFile::getRelocationType(DataRefImpl Rel,
|
2011-10-26 19:08:49 +02:00
|
|
|
uint64_t &Res) const {
|
2011-09-08 22:52:17 +02:00
|
|
|
InMemoryStruct<macho::RelocationEntry> RE;
|
|
|
|
getRelocation(Rel, RE);
|
2011-10-26 19:10:22 +02:00
|
|
|
Res = RE->Word0;
|
|
|
|
Res <<= 32;
|
|
|
|
Res |= RE->Word1;
|
2011-09-08 22:52:17 +02:00
|
|
|
return object_error::success;
|
|
|
|
}
|
2011-10-07 21:25:32 +02:00
|
|
|
error_code MachOObjectFile::getRelocationTypeName(DataRefImpl Rel,
|
|
|
|
SmallVectorImpl<char> &Result) const {
|
2011-10-24 23:44:00 +02:00
|
|
|
// TODO: Support scattered relocations.
|
|
|
|
StringRef res;
|
|
|
|
InMemoryStruct<macho::RelocationEntry> RE;
|
|
|
|
getRelocation(Rel, RE);
|
|
|
|
|
|
|
|
unsigned Arch = getArch();
|
2011-10-26 22:42:54 +02:00
|
|
|
bool isScattered = (Arch != Triple::x86_64) &&
|
|
|
|
(RE->Word0 & macho::RF_Scattered);
|
|
|
|
|
|
|
|
unsigned r_type;
|
|
|
|
if (isScattered)
|
|
|
|
r_type = (RE->Word0 >> 24) & 0xF;
|
|
|
|
else
|
|
|
|
r_type = (RE->Word1 >> 28) & 0xF;
|
|
|
|
|
2011-10-24 23:44:00 +02:00
|
|
|
switch (Arch) {
|
|
|
|
case Triple::x86: {
|
|
|
|
const char* Table[] = {
|
|
|
|
"GENERIC_RELOC_VANILLA",
|
|
|
|
"GENERIC_RELOC_PAIR",
|
|
|
|
"GENERIC_RELOC_SECTDIFF",
|
2011-10-27 22:46:09 +02:00
|
|
|
"GENERIC_RELOC_PB_LA_PTR",
|
2011-10-24 23:44:00 +02:00
|
|
|
"GENERIC_RELOC_LOCAL_SECTDIFF",
|
2011-10-27 22:46:09 +02:00
|
|
|
"GENERIC_RELOC_TLV" };
|
2011-10-24 23:44:00 +02:00
|
|
|
|
2011-10-27 22:46:09 +02:00
|
|
|
if (r_type > 6)
|
2011-10-24 23:44:00 +02:00
|
|
|
res = "Unknown";
|
|
|
|
else
|
|
|
|
res = Table[r_type];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Triple::x86_64: {
|
|
|
|
const char* Table[] = {
|
2011-10-25 01:20:07 +02:00
|
|
|
"X86_64_RELOC_UNSIGNED",
|
|
|
|
"X86_64_RELOC_SIGNED",
|
2011-10-24 23:44:00 +02:00
|
|
|
"X86_64_RELOC_BRANCH",
|
|
|
|
"X86_64_RELOC_GOT_LOAD",
|
|
|
|
"X86_64_RELOC_GOT",
|
2011-10-25 01:20:07 +02:00
|
|
|
"X86_64_RELOC_SUBTRACTOR",
|
|
|
|
"X86_64_RELOC_SIGNED_1",
|
|
|
|
"X86_64_RELOC_SIGNED_2",
|
|
|
|
"X86_64_RELOC_SIGNED_4",
|
|
|
|
"X86_64_RELOC_TLV" };
|
2011-10-24 23:44:00 +02:00
|
|
|
|
2011-10-25 01:20:07 +02:00
|
|
|
if (r_type > 9)
|
2011-10-24 23:44:00 +02:00
|
|
|
res = "Unknown";
|
|
|
|
else
|
|
|
|
res = Table[r_type];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Triple::arm: {
|
|
|
|
const char* Table[] = {
|
|
|
|
"ARM_RELOC_VANILLA",
|
|
|
|
"ARM_RELOC_PAIR",
|
|
|
|
"ARM_RELOC_SECTDIFF",
|
|
|
|
"ARM_RELOC_LOCAL_SECTDIFF",
|
|
|
|
"ARM_RELOC_PB_LA_PTR",
|
|
|
|
"ARM_RELOC_BR24",
|
|
|
|
"ARM_THUMB_RELOC_BR22",
|
|
|
|
"ARM_THUMB_32BIT_BRANCH",
|
|
|
|
"ARM_RELOC_HALF",
|
|
|
|
"ARM_RELOC_HALF_SECTDIFF" };
|
|
|
|
|
|
|
|
if (r_type > 9)
|
|
|
|
res = "Unknown";
|
|
|
|
else
|
|
|
|
res = Table[r_type];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Triple::ppc: {
|
|
|
|
const char* Table[] = {
|
|
|
|
"PPC_RELOC_VANILLA",
|
|
|
|
"PPC_RELOC_PAIR",
|
|
|
|
"PPC_RELOC_BR14",
|
|
|
|
"PPC_RELOC_BR24",
|
|
|
|
"PPC_RELOC_HI16",
|
|
|
|
"PPC_RELOC_LO16",
|
|
|
|
"PPC_RELOC_HA16",
|
|
|
|
"PPC_RELOC_LO14",
|
|
|
|
"PPC_RELOC_SECTDIFF",
|
|
|
|
"PPC_RELOC_PB_LA_PTR",
|
|
|
|
"PPC_RELOC_HI16_SECTDIFF",
|
|
|
|
"PPC_RELOC_LO16_SECTDIFF",
|
|
|
|
"PPC_RELOC_HA16_SECTDIFF",
|
|
|
|
"PPC_RELOC_JBSR",
|
|
|
|
"PPC_RELOC_LO14_SECTDIFF",
|
|
|
|
"PPC_RELOC_LOCAL_SECTDIFF" };
|
|
|
|
|
|
|
|
res = Table[r_type];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case Triple::UnknownArch:
|
|
|
|
res = "Unknown";
|
|
|
|
break;
|
|
|
|
}
|
2011-10-24 22:19:18 +02:00
|
|
|
Result.append(res.begin(), res.end());
|
2011-10-07 21:25:32 +02:00
|
|
|
return object_error::success;
|
|
|
|
}
|
2011-09-08 22:52:17 +02:00
|
|
|
error_code MachOObjectFile::getRelocationAdditionalInfo(DataRefImpl Rel,
|
|
|
|
int64_t &Res) const {
|
|
|
|
InMemoryStruct<macho::RelocationEntry> RE;
|
|
|
|
getRelocation(Rel, RE);
|
|
|
|
bool isExtern = (RE->Word1 >> 27) & 1;
|
|
|
|
Res = 0;
|
|
|
|
if (!isExtern) {
|
|
|
|
const uint8_t* sectAddress = base();
|
|
|
|
if (MachOObj->is64Bit()) {
|
|
|
|
InMemoryStruct<macho::Section64> Sect;
|
|
|
|
getSection64(Sections[Rel.d.b], Sect);
|
|
|
|
sectAddress += Sect->Offset;
|
|
|
|
} else {
|
|
|
|
InMemoryStruct<macho::Section> Sect;
|
|
|
|
getSection(Sections[Rel.d.b], Sect);
|
|
|
|
sectAddress += Sect->Offset;
|
|
|
|
}
|
|
|
|
Res = reinterpret_cast<uintptr_t>(sectAddress);
|
|
|
|
}
|
|
|
|
return object_error::success;
|
|
|
|
}
|
2011-10-25 01:20:07 +02:00
|
|
|
|
|
|
|
// Helper to advance a section or symbol iterator multiple increments at a time.
|
|
|
|
template<class T>
|
|
|
|
error_code advance(T &it, size_t Val) {
|
|
|
|
error_code ec;
|
|
|
|
while (Val--) {
|
|
|
|
it.increment(ec);
|
|
|
|
}
|
|
|
|
return ec;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
void advanceTo(T &it, size_t Val) {
|
|
|
|
if (error_code ec = advance(it, Val))
|
|
|
|
report_fatal_error(ec.message());
|
|
|
|
}
|
|
|
|
|
2011-10-26 22:42:54 +02:00
|
|
|
void MachOObjectFile::printRelocationTargetName(
|
|
|
|
InMemoryStruct<macho::RelocationEntry>& RE,
|
|
|
|
raw_string_ostream &fmt) const {
|
|
|
|
unsigned Arch = getArch();
|
|
|
|
bool isScattered = (Arch != Triple::x86_64) &&
|
|
|
|
(RE->Word0 & macho::RF_Scattered);
|
|
|
|
|
|
|
|
// Target of a scattered relocation is an address. In the interest of
|
|
|
|
// generating pretty output, scan through the symbol table looking for a
|
|
|
|
// symbol that aligns with that address. If we find one, print it.
|
|
|
|
// Otherwise, we just print the hex address of the target.
|
|
|
|
if (isScattered) {
|
|
|
|
uint32_t Val = RE->Word1;
|
|
|
|
|
|
|
|
error_code ec;
|
|
|
|
for (symbol_iterator SI = begin_symbols(), SE = end_symbols(); SI != SE;
|
|
|
|
SI.increment(ec)) {
|
|
|
|
if (ec) report_fatal_error(ec.message());
|
|
|
|
|
|
|
|
uint64_t Addr;
|
|
|
|
StringRef Name;
|
|
|
|
|
|
|
|
if ((ec = SI->getAddress(Addr)))
|
|
|
|
report_fatal_error(ec.message());
|
|
|
|
if (Addr != Val) continue;
|
|
|
|
if ((ec = SI->getName(Name)))
|
|
|
|
report_fatal_error(ec.message());
|
|
|
|
fmt << Name;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-27 23:53:50 +02:00
|
|
|
// If we couldn't find a symbol that this relocation refers to, try
|
|
|
|
// to find a section beginning instead.
|
|
|
|
for (section_iterator SI = begin_sections(), SE = end_sections(); SI != SE;
|
|
|
|
SI.increment(ec)) {
|
|
|
|
if (ec) report_fatal_error(ec.message());
|
|
|
|
|
|
|
|
uint64_t Addr;
|
|
|
|
StringRef Name;
|
|
|
|
|
|
|
|
if ((ec = SI->getAddress(Addr)))
|
|
|
|
report_fatal_error(ec.message());
|
|
|
|
if (Addr != Val) continue;
|
|
|
|
if ((ec = SI->getName(Name)))
|
|
|
|
report_fatal_error(ec.message());
|
|
|
|
fmt << Name;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-26 22:42:54 +02:00
|
|
|
fmt << format("0x%x", Val);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRef S;
|
|
|
|
bool isExtern = (RE->Word1 >> 27) & 1;
|
|
|
|
uint32_t Val = RE->Word1 & 0xFFFFFF;
|
2011-10-25 01:20:07 +02:00
|
|
|
|
|
|
|
if (isExtern) {
|
|
|
|
symbol_iterator SI = begin_symbols();
|
|
|
|
advanceTo(SI, Val);
|
2011-10-26 22:42:54 +02:00
|
|
|
SI->getName(S);
|
2011-10-25 01:20:07 +02:00
|
|
|
} else {
|
|
|
|
section_iterator SI = begin_sections();
|
|
|
|
advanceTo(SI, Val);
|
2011-10-26 22:42:54 +02:00
|
|
|
SI->getName(S);
|
2011-10-25 01:20:07 +02:00
|
|
|
}
|
|
|
|
|
2011-10-26 22:42:54 +02:00
|
|
|
fmt << S;
|
2011-10-25 01:20:07 +02:00
|
|
|
}
|
|
|
|
|
2011-10-07 21:25:32 +02:00
|
|
|
error_code MachOObjectFile::getRelocationValueString(DataRefImpl Rel,
|
|
|
|
SmallVectorImpl<char> &Result) const {
|
2011-10-24 23:44:00 +02:00
|
|
|
InMemoryStruct<macho::RelocationEntry> RE;
|
|
|
|
getRelocation(Rel, RE);
|
|
|
|
|
2011-10-26 22:42:54 +02:00
|
|
|
unsigned Arch = getArch();
|
|
|
|
bool isScattered = (Arch != Triple::x86_64) &&
|
|
|
|
(RE->Word0 & macho::RF_Scattered);
|
2011-10-25 01:20:07 +02:00
|
|
|
|
2011-10-25 20:48:41 +02:00
|
|
|
std::string fmtbuf;
|
|
|
|
raw_string_ostream fmt(fmtbuf);
|
|
|
|
|
2011-10-26 22:42:54 +02:00
|
|
|
unsigned Type;
|
|
|
|
if (isScattered)
|
|
|
|
Type = (RE->Word0 >> 24) & 0xF;
|
|
|
|
else
|
|
|
|
Type = (RE->Word1 >> 28) & 0xF;
|
|
|
|
|
2011-10-27 22:46:09 +02:00
|
|
|
bool isPCRel;
|
|
|
|
if (isScattered)
|
|
|
|
isPCRel = ((RE->Word0 >> 30) & 1);
|
|
|
|
else
|
|
|
|
isPCRel = ((RE->Word1 >> 24) & 1);
|
|
|
|
|
2011-10-25 01:20:07 +02:00
|
|
|
// Determine any addends that should be displayed with the relocation.
|
|
|
|
// These require decoding the relocation type, which is triple-specific.
|
2011-10-24 23:44:00 +02:00
|
|
|
|
2011-10-25 01:20:07 +02:00
|
|
|
// X86_64 has entirely custom relocation types.
|
|
|
|
if (Arch == Triple::x86_64) {
|
2011-10-26 19:05:20 +02:00
|
|
|
bool isPCRel = ((RE->Word1 >> 24) & 1);
|
2011-10-25 20:48:41 +02:00
|
|
|
|
2011-10-25 01:20:07 +02:00
|
|
|
switch (Type) {
|
2011-10-26 22:42:54 +02:00
|
|
|
case macho::RIT_X86_64_GOTLoad: // X86_64_RELOC_GOT_LOAD
|
|
|
|
case macho::RIT_X86_64_GOT: { // X86_64_RELOC_GOT
|
|
|
|
printRelocationTargetName(RE, fmt);
|
|
|
|
fmt << "@GOT";
|
2011-10-26 19:05:20 +02:00
|
|
|
if (isPCRel) fmt << "PCREL";
|
|
|
|
break;
|
|
|
|
}
|
2011-10-26 22:42:54 +02:00
|
|
|
case macho::RIT_X86_64_Subtractor: { // X86_64_RELOC_SUBTRACTOR
|
2011-10-25 20:48:41 +02:00
|
|
|
InMemoryStruct<macho::RelocationEntry> RENext;
|
|
|
|
DataRefImpl RelNext = Rel;
|
|
|
|
RelNext.d.a++;
|
|
|
|
getRelocation(RelNext, RENext);
|
2011-10-25 01:20:07 +02:00
|
|
|
|
|
|
|
// X86_64_SUBTRACTOR must be followed by a relocation of type
|
|
|
|
// X86_64_RELOC_UNSIGNED.
|
2011-10-26 22:42:54 +02:00
|
|
|
// NOTE: Scattered relocations don't exist on x86_64.
|
2011-10-25 20:48:41 +02:00
|
|
|
unsigned RType = (RENext->Word1 >> 28) & 0xF;
|
2011-10-25 01:20:07 +02:00
|
|
|
if (RType != 0)
|
|
|
|
report_fatal_error("Expected X86_64_RELOC_UNSIGNED after "
|
|
|
|
"X86_64_RELOC_SUBTRACTOR.");
|
|
|
|
|
2011-10-26 19:28:49 +02:00
|
|
|
// The X86_64_RELOC_UNSIGNED contains the minuend symbol,
|
|
|
|
// X86_64_SUBTRACTOR contains to the subtrahend.
|
2011-10-26 22:42:54 +02:00
|
|
|
printRelocationTargetName(RENext, fmt);
|
|
|
|
fmt << "-";
|
|
|
|
printRelocationTargetName(RE, fmt);
|
2011-10-25 01:20:07 +02:00
|
|
|
}
|
2011-10-27 22:46:09 +02:00
|
|
|
case macho::RIT_X86_64_TLV:
|
|
|
|
printRelocationTargetName(RE, fmt);
|
|
|
|
fmt << "@TLV";
|
|
|
|
if (isPCRel) fmt << "P";
|
|
|
|
break;
|
2011-10-26 22:42:54 +02:00
|
|
|
case macho::RIT_X86_64_Signed1: // X86_64_RELOC_SIGNED1
|
|
|
|
printRelocationTargetName(RE, fmt);
|
|
|
|
fmt << "-1";
|
2011-10-25 01:20:07 +02:00
|
|
|
break;
|
2011-10-26 22:42:54 +02:00
|
|
|
case macho::RIT_X86_64_Signed2: // X86_64_RELOC_SIGNED2
|
|
|
|
printRelocationTargetName(RE, fmt);
|
|
|
|
fmt << "-2";
|
2011-10-25 01:20:07 +02:00
|
|
|
break;
|
2011-10-26 22:42:54 +02:00
|
|
|
case macho::RIT_X86_64_Signed4: // X86_64_RELOC_SIGNED4
|
|
|
|
printRelocationTargetName(RE, fmt);
|
|
|
|
fmt << "-4";
|
2011-10-25 20:48:41 +02:00
|
|
|
break;
|
|
|
|
default:
|
2011-10-26 22:42:54 +02:00
|
|
|
printRelocationTargetName(RE, fmt);
|
2011-10-25 01:20:07 +02:00
|
|
|
break;
|
2011-10-24 23:44:00 +02:00
|
|
|
}
|
2011-10-25 01:20:07 +02:00
|
|
|
// X86 and ARM share some relocation types in common.
|
2011-10-25 20:48:41 +02:00
|
|
|
} else if (Arch == Triple::x86 || Arch == Triple::arm) {
|
|
|
|
// Generic relocation types...
|
2011-10-25 01:20:07 +02:00
|
|
|
switch (Type) {
|
2011-10-26 22:42:54 +02:00
|
|
|
case macho::RIT_Pair: // GENERIC_RELOC_PAIR - prints no info
|
2011-10-25 01:20:07 +02:00
|
|
|
return object_error::success;
|
2011-10-27 22:46:09 +02:00
|
|
|
case macho::RIT_Difference: { // GENERIC_RELOC_SECTDIFF
|
2011-10-25 20:48:41 +02:00
|
|
|
InMemoryStruct<macho::RelocationEntry> RENext;
|
|
|
|
DataRefImpl RelNext = Rel;
|
|
|
|
RelNext.d.a++;
|
|
|
|
getRelocation(RelNext, RENext);
|
2011-10-25 01:20:07 +02:00
|
|
|
|
|
|
|
// X86 sect diff's must be followed by a relocation of type
|
|
|
|
// GENERIC_RELOC_PAIR.
|
2011-10-26 22:42:54 +02:00
|
|
|
bool isNextScattered = (Arch != Triple::x86_64) &&
|
|
|
|
(RENext->Word0 & macho::RF_Scattered);
|
|
|
|
unsigned RType;
|
|
|
|
if (isNextScattered)
|
|
|
|
RType = (RENext->Word0 >> 24) & 0xF;
|
|
|
|
else
|
|
|
|
RType = (RENext->Word1 >> 28) & 0xF;
|
2011-10-25 01:20:07 +02:00
|
|
|
if (RType != 1)
|
|
|
|
report_fatal_error("Expected GENERIC_RELOC_PAIR after "
|
2011-10-27 22:46:09 +02:00
|
|
|
"GENERIC_RELOC_SECTDIFF.");
|
2011-10-25 01:20:07 +02:00
|
|
|
|
2011-10-26 22:42:54 +02:00
|
|
|
printRelocationTargetName(RE, fmt);
|
|
|
|
fmt << "-";
|
|
|
|
printRelocationTargetName(RENext, fmt);
|
2011-10-25 20:48:41 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-10-25 01:20:07 +02:00
|
|
|
|
2011-10-26 22:42:54 +02:00
|
|
|
if (Arch == Triple::x86) {
|
2011-10-25 20:48:41 +02:00
|
|
|
// All X86 relocations that need special printing were already
|
|
|
|
// handled in the generic code.
|
2011-10-27 22:46:09 +02:00
|
|
|
switch (Type) {
|
|
|
|
case macho::RIT_Generic_LocalDifference:{// GENERIC_RELOC_LOCAL_SECTDIFF
|
|
|
|
InMemoryStruct<macho::RelocationEntry> RENext;
|
|
|
|
DataRefImpl RelNext = Rel;
|
|
|
|
RelNext.d.a++;
|
|
|
|
getRelocation(RelNext, RENext);
|
|
|
|
|
|
|
|
// X86 sect diff's must be followed by a relocation of type
|
|
|
|
// GENERIC_RELOC_PAIR.
|
|
|
|
bool isNextScattered = (Arch != Triple::x86_64) &&
|
|
|
|
(RENext->Word0 & macho::RF_Scattered);
|
|
|
|
unsigned RType;
|
|
|
|
if (isNextScattered)
|
|
|
|
RType = (RENext->Word0 >> 24) & 0xF;
|
|
|
|
else
|
|
|
|
RType = (RENext->Word1 >> 28) & 0xF;
|
|
|
|
if (RType != 1)
|
|
|
|
report_fatal_error("Expected GENERIC_RELOC_PAIR after "
|
|
|
|
"GENERIC_RELOC_LOCAL_SECTDIFF.");
|
|
|
|
|
|
|
|
printRelocationTargetName(RE, fmt);
|
|
|
|
fmt << "-";
|
|
|
|
printRelocationTargetName(RENext, fmt);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case macho::RIT_Generic_TLV: {
|
|
|
|
printRelocationTargetName(RE, fmt);
|
|
|
|
fmt << "@TLV";
|
|
|
|
if (isPCRel) fmt << "P";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
printRelocationTargetName(RE, fmt);
|
|
|
|
}
|
2011-10-25 20:48:41 +02:00
|
|
|
} else { // ARM-specific relocations
|
|
|
|
switch (Type) {
|
2011-10-26 22:42:54 +02:00
|
|
|
case macho::RIT_ARM_Half: // ARM_RELOC_HALF
|
|
|
|
case macho::RIT_ARM_HalfDifference: { // ARM_RELOC_HALF_SECTDIFF
|
2011-10-25 20:48:41 +02:00
|
|
|
// Half relocations steal a bit from the length field to encode
|
|
|
|
// whether this is an upper16 or a lower16 relocation.
|
2011-10-26 22:42:54 +02:00
|
|
|
bool isUpper;
|
|
|
|
if (isScattered)
|
|
|
|
isUpper = (RE->Word0 >> 28) & 1;
|
|
|
|
else
|
|
|
|
isUpper = (RE->Word1 >> 25) & 1;
|
|
|
|
|
2011-10-25 20:48:41 +02:00
|
|
|
if (isUpper)
|
2011-10-26 22:42:54 +02:00
|
|
|
fmt << ":upper16:(";
|
2011-10-25 20:48:41 +02:00
|
|
|
else
|
2011-10-26 22:42:54 +02:00
|
|
|
fmt << ":lower16:(";
|
|
|
|
printRelocationTargetName(RE, fmt);
|
2011-10-25 20:48:41 +02:00
|
|
|
|
|
|
|
InMemoryStruct<macho::RelocationEntry> RENext;
|
|
|
|
DataRefImpl RelNext = Rel;
|
|
|
|
RelNext.d.a++;
|
|
|
|
getRelocation(RelNext, RENext);
|
|
|
|
|
|
|
|
// ARM half relocs must be followed by a relocation of type
|
|
|
|
// ARM_RELOC_PAIR.
|
2011-10-26 22:42:54 +02:00
|
|
|
bool isNextScattered = (Arch != Triple::x86_64) &&
|
|
|
|
(RENext->Word0 & macho::RF_Scattered);
|
|
|
|
unsigned RType;
|
|
|
|
if (isNextScattered)
|
|
|
|
RType = (RENext->Word0 >> 24) & 0xF;
|
|
|
|
else
|
|
|
|
RType = (RENext->Word1 >> 28) & 0xF;
|
|
|
|
|
2011-10-25 20:48:41 +02:00
|
|
|
if (RType != 1)
|
|
|
|
report_fatal_error("Expected ARM_RELOC_PAIR after "
|
|
|
|
"GENERIC_RELOC_HALF");
|
|
|
|
|
2011-10-26 22:42:54 +02:00
|
|
|
// NOTE: The half of the target virtual address is stashed in the
|
|
|
|
// address field of the secondary relocation, but we can't reverse
|
|
|
|
// engineer the constant offset from it without decoding the movw/movt
|
|
|
|
// instruction to find the other half in its immediate field.
|
2011-10-25 20:48:41 +02:00
|
|
|
|
|
|
|
// ARM_RELOC_HALF_SECTDIFF encodes the second section in the
|
|
|
|
// symbol/section pointer of the follow-on relocation.
|
2011-10-26 22:42:54 +02:00
|
|
|
if (Type == macho::RIT_ARM_HalfDifference) {
|
|
|
|
fmt << "-";
|
|
|
|
printRelocationTargetName(RENext, fmt);
|
2011-10-25 20:48:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fmt << ")";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: {
|
2011-10-26 22:42:54 +02:00
|
|
|
printRelocationTargetName(RE, fmt);
|
2011-10-25 20:48:41 +02:00
|
|
|
}
|
2011-10-25 01:20:07 +02:00
|
|
|
}
|
|
|
|
}
|
2011-10-26 22:42:54 +02:00
|
|
|
} else
|
|
|
|
printRelocationTargetName(RE, fmt);
|
2011-10-24 23:44:00 +02:00
|
|
|
|
|
|
|
fmt.flush();
|
|
|
|
Result.append(fmtbuf.begin(), fmtbuf.end());
|
2011-10-07 21:25:32 +02:00
|
|
|
return object_error::success;
|
2011-09-08 22:52:17 +02:00
|
|
|
}
|
|
|
|
|
2011-10-25 22:35:53 +02:00
|
|
|
error_code MachOObjectFile::getRelocationHidden(DataRefImpl Rel,
|
|
|
|
bool &Result) const {
|
|
|
|
InMemoryStruct<macho::RelocationEntry> RE;
|
|
|
|
getRelocation(Rel, RE);
|
|
|
|
|
|
|
|
unsigned Arch = getArch();
|
2011-10-26 22:42:54 +02:00
|
|
|
bool isScattered = (Arch != Triple::x86_64) &&
|
|
|
|
(RE->Word0 & macho::RF_Scattered);
|
|
|
|
unsigned Type;
|
|
|
|
if (isScattered)
|
|
|
|
Type = (RE->Word0 >> 24) & 0xF;
|
|
|
|
else
|
|
|
|
Type = (RE->Word1 >> 28) & 0xF;
|
2011-10-25 22:35:53 +02:00
|
|
|
|
|
|
|
Result = false;
|
|
|
|
|
|
|
|
// On arches that use the generic relocations, GENERIC_RELOC_PAIR
|
|
|
|
// is always hidden.
|
|
|
|
if (Arch == Triple::x86 || Arch == Triple::arm) {
|
2011-10-26 22:42:54 +02:00
|
|
|
if (Type == macho::RIT_Pair) Result = true;
|
2011-10-25 22:35:53 +02:00
|
|
|
} else if (Arch == Triple::x86_64) {
|
|
|
|
// On x86_64, X86_64_RELOC_UNSIGNED is hidden only when it follows
|
|
|
|
// an X864_64_RELOC_SUBTRACTOR.
|
2011-10-26 22:42:54 +02:00
|
|
|
if (Type == macho::RIT_X86_64_Unsigned && Rel.d.a > 0) {
|
2011-10-25 22:35:53 +02:00
|
|
|
DataRefImpl RelPrev = Rel;
|
|
|
|
RelPrev.d.a--;
|
|
|
|
InMemoryStruct<macho::RelocationEntry> REPrev;
|
|
|
|
getRelocation(RelPrev, REPrev);
|
|
|
|
|
|
|
|
unsigned PrevType = (REPrev->Word1 >> 28) & 0xF;
|
|
|
|
|
2011-10-26 22:42:54 +02:00
|
|
|
if (PrevType == macho::RIT_X86_64_Subtractor) Result = true;
|
2011-10-25 22:35:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return object_error::success;
|
|
|
|
}
|
|
|
|
|
2012-03-01 02:36:50 +01:00
|
|
|
error_code MachOObjectFile::getLibraryNext(DataRefImpl LibData,
|
|
|
|
LibraryRef &Res) const {
|
|
|
|
report_fatal_error("Needed libraries unimplemented in MachOObjectFile");
|
|
|
|
}
|
|
|
|
|
|
|
|
error_code MachOObjectFile::getLibraryPath(DataRefImpl LibData,
|
|
|
|
StringRef &Res) const {
|
|
|
|
report_fatal_error("Needed libraries unimplemented in MachOObjectFile");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-22 05:19:48 +02:00
|
|
|
/*===-- Miscellaneous -----------------------------------------------------===*/
|
|
|
|
|
|
|
|
uint8_t MachOObjectFile::getBytesInAddress() const {
|
|
|
|
return MachOObj->is64Bit() ? 8 : 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRef MachOObjectFile::getFileFormatName() const {
|
|
|
|
if (!MachOObj->is64Bit()) {
|
|
|
|
switch (MachOObj->getHeader().CPUType) {
|
2011-04-22 08:34:01 +02:00
|
|
|
case llvm::MachO::CPUTypeI386:
|
2011-04-22 06:08:58 +02:00
|
|
|
return "Mach-O 32-bit i386";
|
2011-04-22 08:34:01 +02:00
|
|
|
case llvm::MachO::CPUTypeARM:
|
2011-04-22 06:08:58 +02:00
|
|
|
return "Mach-O arm";
|
2011-04-22 08:34:01 +02:00
|
|
|
case llvm::MachO::CPUTypePowerPC:
|
2011-04-22 06:08:58 +02:00
|
|
|
return "Mach-O 32-bit ppc";
|
|
|
|
default:
|
2011-04-22 08:34:01 +02:00
|
|
|
assert((MachOObj->getHeader().CPUType & llvm::MachO::CPUArchABI64) == 0 &&
|
2011-04-22 06:08:58 +02:00
|
|
|
"64-bit object file when we're not 64-bit?");
|
|
|
|
return "Mach-O 32-bit unknown";
|
2011-04-22 05:19:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (MachOObj->getHeader().CPUType) {
|
2011-04-22 08:34:01 +02:00
|
|
|
case llvm::MachO::CPUTypeX86_64:
|
2011-04-22 06:08:58 +02:00
|
|
|
return "Mach-O 64-bit x86-64";
|
2011-04-22 08:34:01 +02:00
|
|
|
case llvm::MachO::CPUTypePowerPC64:
|
2011-04-22 06:08:58 +02:00
|
|
|
return "Mach-O 64-bit ppc64";
|
2011-04-22 05:19:48 +02:00
|
|
|
default:
|
2011-04-22 08:34:01 +02:00
|
|
|
assert((MachOObj->getHeader().CPUType & llvm::MachO::CPUArchABI64) == 1 &&
|
2011-04-22 06:08:58 +02:00
|
|
|
"32-bit object file when we're 64-bit?");
|
|
|
|
return "Mach-O 64-bit unknown";
|
2011-04-22 05:19:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned MachOObjectFile::getArch() const {
|
|
|
|
switch (MachOObj->getHeader().CPUType) {
|
2011-04-22 08:34:01 +02:00
|
|
|
case llvm::MachO::CPUTypeI386:
|
2011-04-22 05:19:48 +02:00
|
|
|
return Triple::x86;
|
2011-04-22 08:34:01 +02:00
|
|
|
case llvm::MachO::CPUTypeX86_64:
|
2011-04-22 05:19:48 +02:00
|
|
|
return Triple::x86_64;
|
2011-04-22 08:34:01 +02:00
|
|
|
case llvm::MachO::CPUTypeARM:
|
2011-04-22 05:19:48 +02:00
|
|
|
return Triple::arm;
|
2011-04-22 08:34:01 +02:00
|
|
|
case llvm::MachO::CPUTypePowerPC:
|
2011-04-22 05:19:48 +02:00
|
|
|
return Triple::ppc;
|
2011-04-22 08:34:01 +02:00
|
|
|
case llvm::MachO::CPUTypePowerPC64:
|
2011-04-22 05:19:48 +02:00
|
|
|
return Triple::ppc64;
|
|
|
|
default:
|
|
|
|
return Triple::UnknownArch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-11 19:32:27 +02:00
|
|
|
} // end namespace object
|
2011-04-22 05:19:48 +02:00
|
|
|
} // end namespace llvm
|