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 {
|
|
|
|
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);
|
2014-06-23 21:53:12 +00:00
|
|
|
~IRObjectFile();
|
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-07-03 18:59:23 +00:00
|
|
|
const GlobalValue *getSymbolGV(DataRefImpl Symb) const;
|
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-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-03 17:59:23 +00:00
|
|
|
static ErrorOr<std::unique_ptr<IRObjectFile>>
|
|
|
|
createIRObjectFile(MemoryBufferRef Object, LLVMContext &Context);
|
2014-02-21 20:10:59 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|