2010-11-15 03:21:41 +00: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"
|
2010-12-16 03:29:14 +00:00
|
|
|
#include "llvm/ADT/OwningPtr.h"
|
2010-11-15 03:21:41 +00:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
2013-06-11 15:19:04 +00:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2010-11-15 03:21:41 +00:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2010-12-09 17:36:48 +00:00
|
|
|
#include "llvm/Support/system_error.h"
|
2010-11-15 03:21:41 +00:00
|
|
|
|
2010-11-16 01:06:51 +00:00
|
|
|
using namespace llvm;
|
|
|
|
using namespace object;
|
2010-11-15 03:21:41 +00:00
|
|
|
|
2011-12-20 02:50:00 +00:00
|
|
|
void ObjectFile::anchor() { }
|
|
|
|
|
2013-04-07 16:40:00 +00:00
|
|
|
ObjectFile::ObjectFile(unsigned int Type, MemoryBuffer *source)
|
2011-06-25 17:54:50 +00:00
|
|
|
: Binary(Type, source) {
|
2010-11-15 03:21:41 +00:00
|
|
|
}
|
|
|
|
|
2013-04-29 22:24:22 +00:00
|
|
|
error_code ObjectFile::getSymbolAlignment(DataRefImpl DRI,
|
|
|
|
uint32_t &Result) const {
|
|
|
|
Result = 0;
|
|
|
|
return object_error::success;
|
|
|
|
}
|
|
|
|
|
2013-05-30 03:05:14 +00:00
|
|
|
section_iterator ObjectFile::getRelocatedSection(DataRefImpl Sec) const {
|
|
|
|
return section_iterator(SectionRef(Sec, this));
|
|
|
|
}
|
|
|
|
|
2010-11-15 03:21:41 +00:00
|
|
|
ObjectFile *ObjectFile::createObjectFile(MemoryBuffer *Object) {
|
2013-07-24 14:00:26 +00:00
|
|
|
if (Object->getBufferSize() < 64) {
|
|
|
|
delete Object;
|
2010-11-15 03:21:41 +00:00
|
|
|
return 0;
|
2013-07-24 14:00:26 +00:00
|
|
|
}
|
2013-06-11 15:19:04 +00:00
|
|
|
|
|
|
|
sys::fs::file_magic Type = sys::fs::identify_magic(Object->getBuffer());
|
|
|
|
switch (Type) {
|
|
|
|
case sys::fs::file_magic::unknown:
|
2013-06-11 15:29:10 +00:00
|
|
|
case sys::fs::file_magic::bitcode:
|
|
|
|
case sys::fs::file_magic::archive:
|
2013-06-18 15:03:28 +00:00
|
|
|
case sys::fs::file_magic::macho_universal_binary:
|
2013-10-15 22:45:38 +00:00
|
|
|
case sys::fs::file_magic::windows_resource:
|
2013-07-24 14:00:26 +00:00
|
|
|
delete Object;
|
2013-06-11 15:19:04 +00:00
|
|
|
return 0;
|
|
|
|
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:
|
|
|
|
return createELFObjectFile(Object);
|
|
|
|
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:
|
|
|
|
return createMachOObjectFile(Object);
|
|
|
|
case sys::fs::file_magic::coff_object:
|
|
|
|
case sys::fs::file_magic::pecoff_executable:
|
|
|
|
return createCOFFObjectFile(Object);
|
2010-11-15 03:21:41 +00:00
|
|
|
}
|
2013-06-11 15:19:04 +00:00
|
|
|
llvm_unreachable("Unexpected Object File Type");
|
2010-11-15 03:21:41 +00:00
|
|
|
}
|
|
|
|
|
2010-11-16 01:06:51 +00:00
|
|
|
ObjectFile *ObjectFile::createObjectFile(StringRef ObjectPath) {
|
2010-12-16 03:29:14 +00:00
|
|
|
OwningPtr<MemoryBuffer> File;
|
2011-12-25 01:20:19 +00:00
|
|
|
if (MemoryBuffer::getFile(ObjectPath, File))
|
2010-12-16 03:29:14 +00:00
|
|
|
return NULL;
|
|
|
|
return createObjectFile(File.take());
|
2010-11-15 03:21:41 +00:00
|
|
|
}
|