2014-02-21 20:10:59 +00:00
|
|
|
//===- IRObjectFile.h - LLVM IR object file implementation ------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file declares the IRObjectFile template class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_OBJECT_IROBJECTFILE_H
|
|
|
|
#define LLVM_OBJECT_IROBJECTFILE_H
|
2014-02-21 20:10:59 +00:00
|
|
|
|
|
|
|
#include "llvm/Object/SymbolicFile.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
2014-02-28 02:17:23 +00:00
|
|
|
class Mangler;
|
2014-02-21 20:10:59 +00:00
|
|
|
class Module;
|
|
|
|
class GlobalValue;
|
|
|
|
|
|
|
|
namespace object {
|
2014-09-18 21:28:49 +00:00
|
|
|
class ObjectFile;
|
|
|
|
|
2014-02-21 20:10:59 +00:00
|
|
|
class IRObjectFile : public SymbolicFile {
|
2014-03-06 05:51:42 +00:00
|
|
|
std::unique_ptr<Module> M;
|
|
|
|
std::unique_ptr<Mangler> Mang;
|
2014-07-03 18:59:23 +00:00
|
|
|
std::vector<std::pair<std::string, uint32_t>> AsmSymbols;
|
2014-03-06 05:51:42 +00:00
|
|
|
|
2014-02-21 20:10:59 +00:00
|
|
|
public:
|
2014-08-19 18:44:46 +00:00
|
|
|
IRObjectFile(MemoryBufferRef Object, std::unique_ptr<Module> M);
|
2015-04-11 02:11:45 +00:00
|
|
|
~IRObjectFile() override;
|
2014-03-02 09:09:27 +00:00
|
|
|
void moveSymbolNext(DataRefImpl &Symb) const override;
|
2014-06-12 21:46:39 +00:00
|
|
|
std::error_code printSymbolName(raw_ostream &OS,
|
|
|
|
DataRefImpl Symb) const override;
|
2014-03-02 09:09:27 +00:00
|
|
|
uint32_t getSymbolFlags(DataRefImpl Symb) const override;
|
2014-12-09 16:13:59 +00:00
|
|
|
GlobalValue *getSymbolGV(DataRefImpl Symb);
|
|
|
|
const GlobalValue *getSymbolGV(DataRefImpl Symb) const {
|
|
|
|
return const_cast<IRObjectFile *>(this)->getSymbolGV(Symb);
|
|
|
|
}
|
2014-03-02 09:09:27 +00:00
|
|
|
basic_symbol_iterator symbol_begin_impl() const override;
|
|
|
|
basic_symbol_iterator symbol_end_impl() const override;
|
2014-02-21 20:10:59 +00:00
|
|
|
|
2014-07-04 18:40:36 +00:00
|
|
|
const Module &getModule() const {
|
|
|
|
return const_cast<IRObjectFile*>(this)->getModule();
|
|
|
|
}
|
|
|
|
Module &getModule() {
|
|
|
|
return *M;
|
|
|
|
}
|
2014-12-09 16:18:11 +00:00
|
|
|
std::unique_ptr<Module> takeModule();
|
2014-07-04 18:40:36 +00:00
|
|
|
|
2014-02-21 20:10:59 +00:00
|
|
|
static inline bool classof(const Binary *v) {
|
|
|
|
return v->isIR();
|
|
|
|
}
|
2014-07-03 23:03:50 +00:00
|
|
|
|
2014-09-18 21:28:49 +00:00
|
|
|
/// \brief Finds and returns bitcode embedded in the given object file, or an
|
|
|
|
/// error code if not found.
|
|
|
|
static ErrorOr<MemoryBufferRef> findBitcodeInObject(const ObjectFile &Obj);
|
|
|
|
|
|
|
|
/// \brief Finds and returns bitcode in the given memory buffer (which may
|
|
|
|
/// be either a bitcode file or a native object file with embedded bitcode),
|
|
|
|
/// or an error code if not found.
|
|
|
|
static ErrorOr<MemoryBufferRef>
|
|
|
|
findBitcodeInMemBuffer(MemoryBufferRef Object);
|
|
|
|
|
2014-12-09 20:36:13 +00:00
|
|
|
static ErrorOr<std::unique_ptr<IRObjectFile>> create(MemoryBufferRef Object,
|
|
|
|
LLVMContext &Context);
|
2014-02-21 20:10:59 +00:00
|
|
|
};
|
2015-06-23 09:49:53 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-21 20:10:59 +00:00
|
|
|
|
|
|
|
#endif
|