2011-06-25 17:54:29 +00:00
|
|
|
//===- Binary.cpp - A generic binary 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 the Binary class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Object/Binary.h"
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
2013-06-11 14:39:59 +00:00
|
|
|
#include "llvm/Support/FileSystem.h"
|
2014-01-07 11:48:04 +00:00
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
2011-06-25 17:54:29 +00:00
|
|
|
#include "llvm/Support/Path.h"
|
|
|
|
|
2011-06-25 17:54:50 +00:00
|
|
|
// Include headers for createBinary.
|
2011-09-27 19:36:55 +00:00
|
|
|
#include "llvm/Object/Archive.h"
|
2013-06-18 15:03:28 +00:00
|
|
|
#include "llvm/Object/MachOUniversal.h"
|
2011-09-27 19:36:55 +00:00
|
|
|
#include "llvm/Object/ObjectFile.h"
|
2011-06-25 17:54:50 +00:00
|
|
|
|
2011-06-25 17:54:29 +00:00
|
|
|
using namespace llvm;
|
|
|
|
using namespace object;
|
|
|
|
|
|
|
|
Binary::~Binary() {
|
2014-01-24 21:32:21 +00:00
|
|
|
if (BufferOwned)
|
|
|
|
delete Data;
|
2011-06-25 17:54:29 +00:00
|
|
|
}
|
|
|
|
|
2014-01-24 21:32:21 +00:00
|
|
|
Binary::Binary(unsigned int Type, MemoryBuffer *Source, bool BufferOwned)
|
|
|
|
: TypeID(Type), BufferOwned(BufferOwned), Data(Source) {}
|
2011-06-25 17:54:29 +00:00
|
|
|
|
|
|
|
StringRef Binary::getData() const {
|
|
|
|
return Data->getBuffer();
|
|
|
|
}
|
|
|
|
|
|
|
|
StringRef Binary::getFileName() const {
|
|
|
|
return Data->getBufferIdentifier();
|
|
|
|
}
|
|
|
|
|
2014-01-22 16:04:52 +00:00
|
|
|
ErrorOr<Binary *> object::createBinary(MemoryBuffer *Source,
|
2014-02-21 20:10:59 +00:00
|
|
|
LLVMContext *Context) {
|
2014-03-06 05:51:42 +00:00
|
|
|
std::unique_ptr<MemoryBuffer> scopedSource(Source);
|
2014-02-21 20:10:59 +00:00
|
|
|
sys::fs::file_magic Type = sys::fs::identify_magic(Source->getBuffer());
|
2014-01-22 16:04:52 +00:00
|
|
|
|
|
|
|
switch (Type) {
|
2014-01-21 23:06:54 +00:00
|
|
|
case sys::fs::file_magic::archive:
|
2014-03-05 10:19:29 +00:00
|
|
|
return Archive::create(scopedSource.release());
|
2013-06-11 14:39:59 +00:00
|
|
|
case sys::fs::file_magic::elf_relocatable:
|
|
|
|
case sys::fs::file_magic::elf_executable:
|
|
|
|
case sys::fs::file_magic::elf_shared_object:
|
2014-01-21 23:06:54 +00:00
|
|
|
case sys::fs::file_magic::elf_core:
|
2013-06-11 14:39:59 +00: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:
|
2013-06-28 09:44:05 +00:00
|
|
|
case sys::fs::file_magic::macho_dynamically_linked_shared_lib_stub:
|
2014-01-21 23:06:54 +00:00
|
|
|
case sys::fs::file_magic::macho_dsym_companion:
|
2013-06-11 14:39:59 +00:00
|
|
|
case sys::fs::file_magic::coff_object:
|
2013-11-15 21:22:02 +00:00
|
|
|
case sys::fs::file_magic::coff_import_library:
|
2014-01-21 23:06:54 +00:00
|
|
|
case sys::fs::file_magic::pecoff_executable:
|
2014-02-21 20:10:59 +00:00
|
|
|
case sys::fs::file_magic::bitcode:
|
2014-03-05 10:19:29 +00:00
|
|
|
return ObjectFile::createSymbolicFile(scopedSource.release(), true, Type,
|
2014-02-21 20:10:59 +00:00
|
|
|
Context);
|
2014-01-22 16:04:52 +00:00
|
|
|
case sys::fs::file_magic::macho_universal_binary:
|
2014-03-05 10:19:29 +00:00
|
|
|
return MachOUniversalBinary::create(scopedSource.release());
|
2013-06-28 09:44:05 +00:00
|
|
|
case sys::fs::file_magic::unknown:
|
2014-01-22 16:04:52 +00:00
|
|
|
case sys::fs::file_magic::windows_resource:
|
2013-06-28 09:44:05 +00:00
|
|
|
// Unrecognized object file format.
|
2011-06-25 17:54:50 +00:00
|
|
|
return object_error::invalid_file_type;
|
|
|
|
}
|
2013-06-28 09:44:05 +00:00
|
|
|
llvm_unreachable("Unexpected Binary File Type");
|
2011-06-25 17:54:29 +00:00
|
|
|
}
|
|
|
|
|
2014-01-15 19:37:43 +00:00
|
|
|
ErrorOr<Binary *> object::createBinary(StringRef Path) {
|
2014-03-06 05:51:42 +00:00
|
|
|
std::unique_ptr<MemoryBuffer> File;
|
2014-06-12 21:46:39 +00:00
|
|
|
if (std::error_code EC = MemoryBuffer::getFileOrSTDIN(Path, File))
|
2014-01-15 19:37:43 +00:00
|
|
|
return EC;
|
2014-03-05 10:19:29 +00:00
|
|
|
return createBinary(File.release());
|
2011-06-25 17:54:29 +00:00
|
|
|
}
|