Now that it is possible, use the mangler in IRObjectFile.
[oota-llvm.git] / include / llvm / Object / IRObjectFile.h
1 //===- IRObjectFile.h - LLVM IR object file implementation ------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the IRObjectFile template class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_OBJECT_IR_OBJECT_FILE_H
15 #define LLVM_OBJECT_IR_OBJECT_FILE_H
16
17 #include "llvm/Object/SymbolicFile.h"
18
19 namespace llvm {
20 class Mangler;
21 class Module;
22 class GlobalValue;
23
24 namespace object {
25 class IRObjectFile : public SymbolicFile {
26   OwningPtr<Module> M;
27   OwningPtr<Mangler> Mang;
28 public:
29   IRObjectFile(MemoryBuffer *Object, error_code &EC, LLVMContext &Context,
30                bool BufferOwned);
31   void moveSymbolNext(DataRefImpl &Symb) const LLVM_OVERRIDE;
32   error_code printSymbolName(raw_ostream &OS, DataRefImpl Symb) const
33       LLVM_OVERRIDE;
34   uint32_t getSymbolFlags(DataRefImpl Symb) const LLVM_OVERRIDE;
35   const GlobalValue &getSymbolGV(DataRefImpl Symb) const;
36   basic_symbol_iterator symbol_begin_impl() const LLVM_OVERRIDE;
37   basic_symbol_iterator symbol_end_impl() const LLVM_OVERRIDE;
38
39   static inline bool classof(const Binary *v) {
40     return v->isIR();
41   }
42 };
43 }
44 }
45
46 #endif