2010-11-15 11:21:41 +08:00
|
|
|
//===- ObjectFile.cpp - File format independent object file -----*- 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 a file format independent ObjectFile class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Object/ObjectFile.h"
|
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2013-06-11 23:19:04 +08:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2010-11-15 11:21:41 +08:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2014-02-22 04:42:18 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2014-06-13 01:38:55 +08:00
|
|
|
#include <system_error>
|
2010-11-15 11:21:41 +08:00
|
|
|
|
2010-11-16 09:06:51 +08:00
|
|
|
using namespace llvm;
|
|
|
|
using namespace object;
|
2010-11-15 11:21:41 +08:00
|
|
|
|
2011-12-20 10:50:00 +08:00
|
|
|
void ObjectFile::anchor() { }
|
|
|
|
|
2014-06-24 21:56:32 +08:00
|
|
|
ObjectFile::ObjectFile(unsigned int Type, std::unique_ptr<MemoryBuffer> Source)
|
|
|
|
: SymbolicFile(Type, std::move(Source)) {}
|
2014-02-22 04:10:59 +08:00
|
|
|
|
2014-06-13 10:24:39 +08:00
|
|
|
std::error_code ObjectFile::printSymbolName(raw_ostream &OS,
|
|
|
|
DataRefImpl Symb) const {
|
2014-02-22 04:10:59 +08:00
|
|
|
StringRef Name;
|
2014-06-13 10:24:39 +08:00
|
|
|
if (std::error_code EC = getSymbolName(Symb, Name))
|
2014-02-22 04:10:59 +08:00
|
|
|
return EC;
|
|
|
|
OS << Name;
|
|
|
|
return object_error::success;
|
|
|
|
}
|
2010-11-15 11:21:41 +08:00
|
|
|
|
2014-06-13 10:24:39 +08:00
|
|
|
std::error_code ObjectFile::getSymbolAlignment(DataRefImpl DRI,
|
|
|
|
uint32_t &Result) const {
|
2013-04-30 06:24:22 +08:00
|
|
|
Result = 0;
|
|
|
|
return object_error::success;
|
|
|
|
}
|
|
|
|
|
2013-05-30 11:05:14 +08:00
|
|
|
section_iterator ObjectFile::getRelocatedSection(DataRefImpl Sec) const {
|
|
|
|
return section_iterator(SectionRef(Sec, this));
|
|
|
|
}
|
|
|
|
|
2014-06-24 06:00:37 +08:00
|
|
|
ErrorOr<ObjectFile *>
|
|
|
|
ObjectFile::createObjectFile(std::unique_ptr<MemoryBuffer> &Object,
|
|
|
|
sys::fs::file_magic Type) {
|
2014-01-23 00:04:52 +08:00
|
|
|
if (Type == sys::fs::file_magic::unknown)
|
|
|
|
Type = sys::fs::identify_magic(Object->getBuffer());
|
2014-01-22 08:14:49 +08:00
|
|
|
|
2013-06-11 23:19:04 +08:00
|
|
|
switch (Type) {
|
|
|
|
case sys::fs::file_magic::unknown:
|
2013-06-11 23:29:10 +08:00
|
|
|
case sys::fs::file_magic::bitcode:
|
|
|
|
case sys::fs::file_magic::archive:
|
2013-06-18 23:03:28 +08:00
|
|
|
case sys::fs::file_magic::macho_universal_binary:
|
2013-10-16 06:45:38 +08:00
|
|
|
case sys::fs::file_magic::windows_resource:
|
2014-01-22 08:14:49 +08:00
|
|
|
return object_error::invalid_file_type;
|
2013-06-11 23:19:04 +08:00
|
|
|
case sys::fs::file_magic::elf_relocatable:
|
|
|
|
case sys::fs::file_magic::elf_executable:
|
|
|
|
case sys::fs::file_magic::elf_shared_object:
|
|
|
|
case sys::fs::file_magic::elf_core:
|
2014-06-24 05:53:12 +08:00
|
|
|
return createELFObjectFile(Object);
|
2013-06-11 23:19:04 +08:00
|
|
|
case sys::fs::file_magic::macho_object:
|
|
|
|
case sys::fs::file_magic::macho_executable:
|
|
|
|
case sys::fs::file_magic::macho_fixed_virtual_memory_shared_lib:
|
|
|
|
case sys::fs::file_magic::macho_core:
|
|
|
|
case sys::fs::file_magic::macho_preload_executable:
|
|
|
|
case sys::fs::file_magic::macho_dynamically_linked_shared_lib:
|
|
|
|
case sys::fs::file_magic::macho_dynamic_linker:
|
|
|
|
case sys::fs::file_magic::macho_bundle:
|
|
|
|
case sys::fs::file_magic::macho_dynamically_linked_shared_lib_stub:
|
|
|
|
case sys::fs::file_magic::macho_dsym_companion:
|
2014-06-24 05:53:12 +08:00
|
|
|
return createMachOObjectFile(Object);
|
2013-06-11 23:19:04 +08:00
|
|
|
case sys::fs::file_magic::coff_object:
|
2013-11-16 05:22:02 +08:00
|
|
|
case sys::fs::file_magic::coff_import_library:
|
2013-06-11 23:19:04 +08:00
|
|
|
case sys::fs::file_magic::pecoff_executable:
|
2014-06-24 21:56:32 +08:00
|
|
|
return createCOFFObjectFile(std::move(Object));
|
2010-11-15 11:21:41 +08:00
|
|
|
}
|
2013-06-11 23:19:04 +08:00
|
|
|
llvm_unreachable("Unexpected Object File Type");
|
2010-11-15 11:21:41 +08:00
|
|
|
}
|
|
|
|
|
2014-01-22 08:14:49 +08:00
|
|
|
ErrorOr<ObjectFile *> ObjectFile::createObjectFile(StringRef ObjectPath) {
|
2014-07-07 01:43:13 +08:00
|
|
|
ErrorOr<std::unique_ptr<MemoryBuffer>> FileOrErr =
|
|
|
|
MemoryBuffer::getFile(ObjectPath);
|
|
|
|
if (std::error_code EC = FileOrErr.getError())
|
2014-01-22 08:14:49 +08:00
|
|
|
return EC;
|
2014-07-07 01:43:13 +08:00
|
|
|
return createObjectFile(FileOrErr.get());
|
2010-11-15 11:21:41 +08:00
|
|
|
}
|