LLVM  8.0.1
RuntimeDyldCOFF.h
Go to the documentation of this file.
1 //===-- RuntimeDyldCOFF.h - Run-time dynamic linker for MC-JIT ---*- 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 // COFF support for MC-JIT runtime dynamic linker.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #ifndef LLVM_RUNTIME_DYLD_COFF_H
15 #define LLVM_RUNTIME_DYLD_COFF_H
16 
17 #include "RuntimeDyldImpl.h"
18 
19 #define DEBUG_TYPE "dyld"
20 
21 using namespace llvm;
22 
23 namespace llvm {
24 
25 // Common base class for COFF dynamic linker support.
26 // Concrete subclasses for each target can be found in ./Targets.
28 
29 public:
30  std::unique_ptr<RuntimeDyld::LoadedObjectInfo>
31  loadObject(const object::ObjectFile &Obj) override;
32  bool isCompatibleFile(const object::ObjectFile &Obj) const override;
33 
34  static std::unique_ptr<RuntimeDyldCOFF>
37 
38 protected:
40  JITSymbolResolver &Resolver)
41  : RuntimeDyldImpl(MemMgr, Resolver) {}
42  uint64_t getSymbolOffset(const SymbolRef &Sym);
43 };
44 
45 } // end namespace llvm
46 
47 #undef DEBUG_TYPE
48 
49 #endif
bool isCompatibleFile(const object::ObjectFile &Obj) const override
This class represents lattice values for constants.
Definition: AllocatorList.h:24
RuntimeDyldCOFF(RuntimeDyld::MemoryManager &MemMgr, JITSymbolResolver &Resolver)
RuntimeDyld::MemoryManager & MemMgr
This class is the base class for all object file types.
Definition: ObjectFile.h:202
uint64_t getSymbolOffset(const SymbolRef &Sym)
Interface for looking up the initializer for a variable name, used by Init::resolveReferences.
Definition: Record.h:1774
Symbol resolution interface.
Definition: JITSymbol.h:344
This is a value type class that represents a single symbol in the list of symbols in the object file...
Definition: ObjectFile.h:141
Triple::ArchType Arch
static std::unique_ptr< RuntimeDyldCOFF > create(Triple::ArchType Arch, RuntimeDyld::MemoryManager &MemMgr, JITSymbolResolver &Resolver)
std::unique_ptr< RuntimeDyld::LoadedObjectInfo > loadObject(const object::ObjectFile &Obj) override