2017-04-20 01:02:10 +02:00
|
|
|
//===- ObjectFile.cpp - File format independent object file ---------------===//
|
2010-11-15 04:21:41 +01:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines a file format independent ObjectFile class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2017-06-06 13:49:48 +02:00
|
|
|
#include "llvm/Object/ObjectFile.h"
|
2017-04-20 01:02:10 +02:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2017-06-07 05:48:56 +02:00
|
|
|
#include "llvm/BinaryFormat/Magic.h"
|
2017-04-20 01:02:10 +02:00
|
|
|
#include "llvm/Object/Binary.h"
|
2014-07-31 05:12:45 +02:00
|
|
|
#include "llvm/Object/COFF.h"
|
2017-04-20 01:02:10 +02:00
|
|
|
#include "llvm/Object/Error.h"
|
2014-07-31 05:12:45 +02:00
|
|
|
#include "llvm/Object/MachO.h"
|
2016-11-30 17:49:11 +01:00
|
|
|
#include "llvm/Object/Wasm.h"
|
2017-04-20 01:02:10 +02:00
|
|
|
#include "llvm/Support/Error.h"
|
2010-11-15 04:21:41 +01:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2017-04-20 01:02:10 +02:00
|
|
|
#include "llvm/Support/ErrorOr.h"
|
2013-06-11 17:19:04 +02:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2010-11-15 04:21:41 +01:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2014-02-21 21:42:18 +01:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2017-04-20 01:02:10 +02:00
|
|
|
#include <algorithm>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <memory>
|
2014-06-12 19:38:55 +02:00
|
|
|
#include <system_error>
|
2010-11-15 04:21:41 +01:00
|
|
|
|
2010-11-16 02:06:51 +01:00
|
|
|
using namespace llvm;
|
|
|
|
using namespace object;
|
2010-11-15 04:21:41 +01:00
|
|
|
|
2017-04-20 01:02:10 +02:00
|
|
|
void ObjectFile::anchor() {}
|
2011-12-20 03:50:00 +01:00
|
|
|
|
2014-08-19 20:44:46 +02:00
|
|
|
ObjectFile::ObjectFile(unsigned int Type, MemoryBufferRef Source)
|
|
|
|
: SymbolicFile(Type, Source) {}
|
2014-02-21 21:10:59 +01:00
|
|
|
|
2015-06-30 22:18:49 +02:00
|
|
|
bool SectionRef::containsSymbol(SymbolRef S) const {
|
2016-05-02 22:28:12 +02:00
|
|
|
Expected<section_iterator> SymSec = S.getSection();
|
|
|
|
if (!SymSec) {
|
|
|
|
// TODO: Actually report errors helpfully.
|
|
|
|
consumeError(SymSec.takeError());
|
2015-06-30 22:18:49 +02:00
|
|
|
return false;
|
2016-05-02 22:28:12 +02:00
|
|
|
}
|
2015-08-08 01:27:14 +02:00
|
|
|
return *this == **SymSec;
|
2015-06-30 22:18:49 +02:00
|
|
|
}
|
|
|
|
|
2015-07-07 19:12:59 +02:00
|
|
|
uint64_t ObjectFile::getSymbolValue(DataRefImpl Ref) const {
|
|
|
|
uint32_t Flags = getSymbolFlags(Ref);
|
|
|
|
if (Flags & SymbolRef::SF_Undefined)
|
|
|
|
return 0;
|
|
|
|
if (Flags & SymbolRef::SF_Common)
|
|
|
|
return getCommonSymbolSize(Ref);
|
|
|
|
return getSymbolValueImpl(Ref);
|
|
|
|
}
|
|
|
|
|
2014-06-13 04:24:39 +02:00
|
|
|
std::error_code ObjectFile::printSymbolName(raw_ostream &OS,
|
|
|
|
DataRefImpl Symb) const {
|
2016-04-20 23:24:34 +02:00
|
|
|
Expected<StringRef> Name = getSymbolName(Symb);
|
|
|
|
if (!Name)
|
|
|
|
return errorToErrorCode(Name.takeError());
|
2015-07-02 22:55:21 +02:00
|
|
|
OS << *Name;
|
2015-06-09 17:20:42 +02:00
|
|
|
return std::error_code();
|
2014-02-21 21:10:59 +01:00
|
|
|
}
|
2010-11-15 04:21:41 +01:00
|
|
|
|
2015-06-01 01:52:50 +02:00
|
|
|
uint32_t ObjectFile::getSymbolAlignment(DataRefImpl DRI) const { return 0; }
|
2013-04-30 00:24:22 +02:00
|
|
|
|
2016-02-29 20:40:10 +01:00
|
|
|
bool ObjectFile::isSectionBitcode(DataRefImpl Sec) const {
|
|
|
|
StringRef SectName;
|
|
|
|
if (!getSectionName(Sec, SectName))
|
|
|
|
return SectName == ".llvmbc";
|
|
|
|
return false;
|
|
|
|
}
|
2017-09-26 16:22:35 +02:00
|
|
|
|
|
|
|
bool ObjectFile::isSectionStripped(DataRefImpl Sec) const { return false; }
|
2016-02-29 20:40:10 +01:00
|
|
|
|
2013-05-30 05:05:14 +02:00
|
|
|
section_iterator ObjectFile::getRelocatedSection(DataRefImpl Sec) const {
|
|
|
|
return section_iterator(SectionRef(Sec, this));
|
|
|
|
}
|
|
|
|
|
2017-09-19 04:22:48 +02:00
|
|
|
Triple ObjectFile::makeTriple() const {
|
|
|
|
Triple TheTriple;
|
|
|
|
auto Arch = getArch();
|
|
|
|
TheTriple.setArch(Triple::ArchType(Arch));
|
|
|
|
|
|
|
|
// For ARM targets, try to use the build attributes to build determine
|
|
|
|
// the build target. Target features are also added, but later during
|
|
|
|
// disassembly.
|
|
|
|
if (Arch == Triple::arm || Arch == Triple::armeb)
|
|
|
|
setARMSubArch(TheTriple);
|
|
|
|
|
|
|
|
// TheTriple defaults to ELF, and COFF doesn't have an environment:
|
|
|
|
// the best we can do here is indicate that it is mach-o.
|
|
|
|
if (isMachO())
|
|
|
|
TheTriple.setObjectFormat(Triple::MachO);
|
|
|
|
|
|
|
|
if (isCOFF()) {
|
|
|
|
const auto COFFObj = dyn_cast<COFFObjectFile>(this);
|
|
|
|
if (COFFObj->getArch() == Triple::thumb)
|
|
|
|
TheTriple.setTriple("thumbv7-windows");
|
|
|
|
}
|
|
|
|
|
|
|
|
return TheTriple;
|
|
|
|
}
|
|
|
|
|
2016-04-07 00:14:09 +02:00
|
|
|
Expected<std::unique_ptr<ObjectFile>>
|
2017-06-07 05:48:56 +02:00
|
|
|
ObjectFile::createObjectFile(MemoryBufferRef Object, file_magic Type) {
|
2014-08-19 20:44:46 +02:00
|
|
|
StringRef Data = Object.getBuffer();
|
2017-06-07 05:48:56 +02:00
|
|
|
if (Type == file_magic::unknown)
|
|
|
|
Type = identify_magic(Data);
|
2014-01-22 01:14:49 +01:00
|
|
|
|
2013-06-11 17:19:04 +02:00
|
|
|
switch (Type) {
|
2017-06-07 05:48:56 +02:00
|
|
|
case file_magic::unknown:
|
|
|
|
case file_magic::bitcode:
|
|
|
|
case file_magic::coff_cl_gl_object:
|
|
|
|
case file_magic::archive:
|
|
|
|
case file_magic::macho_universal_binary:
|
|
|
|
case file_magic::windows_resource:
|
2016-04-07 00:14:09 +02:00
|
|
|
return errorCodeToError(object_error::invalid_file_type);
|
2017-06-07 05:48:56 +02:00
|
|
|
case file_magic::elf:
|
|
|
|
case file_magic::elf_relocatable:
|
|
|
|
case file_magic::elf_executable:
|
|
|
|
case file_magic::elf_shared_object:
|
|
|
|
case file_magic::elf_core:
|
2016-04-07 00:14:09 +02:00
|
|
|
return errorOrToExpected(createELFObjectFile(Object));
|
2017-06-07 05:48:56 +02:00
|
|
|
case file_magic::macho_object:
|
|
|
|
case file_magic::macho_executable:
|
|
|
|
case file_magic::macho_fixed_virtual_memory_shared_lib:
|
|
|
|
case file_magic::macho_core:
|
|
|
|
case file_magic::macho_preload_executable:
|
|
|
|
case file_magic::macho_dynamically_linked_shared_lib:
|
|
|
|
case file_magic::macho_dynamic_linker:
|
|
|
|
case file_magic::macho_bundle:
|
|
|
|
case file_magic::macho_dynamically_linked_shared_lib_stub:
|
|
|
|
case file_magic::macho_dsym_companion:
|
|
|
|
case file_magic::macho_kext_bundle:
|
2016-04-07 00:14:09 +02:00
|
|
|
return createMachOObjectFile(Object);
|
2017-06-07 05:48:56 +02:00
|
|
|
case file_magic::coff_object:
|
|
|
|
case file_magic::coff_import_library:
|
|
|
|
case file_magic::pecoff_executable:
|
2016-04-07 00:14:09 +02:00
|
|
|
return errorOrToExpected(createCOFFObjectFile(Object));
|
2017-06-07 05:48:56 +02:00
|
|
|
case file_magic::wasm_object:
|
2016-11-30 17:49:11 +01:00
|
|
|
return createWasmObjectFile(Object);
|
2010-11-15 04:21:41 +01:00
|
|
|
}
|
2013-06-11 17:19:04 +02:00
|
|
|
llvm_unreachable("Unexpected Object File Type");
|
2010-11-15 04:21:41 +01:00
|
|
|
}
|
|
|
|
|
2016-04-07 00:14:09 +02:00
|
|
|
Expected<OwningBinary<ObjectFile>>
|
2014-07-31 05:12:45 +02:00
|
|
|
ObjectFile::createObjectFile(StringRef ObjectPath) {
|
2014-07-06 19:43:13 +02:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> FileOrErr =
|
|
|
|
MemoryBuffer::getFile(ObjectPath);
|
|
|
|
if (std::error_code EC = FileOrErr.getError())
|
2016-04-07 00:14:09 +02:00
|
|
|
return errorCodeToError(EC);
|
2014-08-19 20:44:46 +02:00
|
|
|
std::unique_ptr<MemoryBuffer> Buffer = std::move(FileOrErr.get());
|
|
|
|
|
2016-04-07 00:14:09 +02:00
|
|
|
Expected<std::unique_ptr<ObjectFile>> ObjOrErr =
|
2014-08-19 20:44:46 +02:00
|
|
|
createObjectFile(Buffer->getMemBufferRef());
|
2016-10-18 07:17:23 +02:00
|
|
|
if (Error Err = ObjOrErr.takeError())
|
|
|
|
return std::move(Err);
|
2014-08-19 20:44:46 +02:00
|
|
|
std::unique_ptr<ObjectFile> Obj = std::move(ObjOrErr.get());
|
|
|
|
|
|
|
|
return OwningBinary<ObjectFile>(std::move(Obj), std::move(Buffer));
|
2010-11-15 04:21:41 +01:00
|
|
|
}
|