blob: 32b8fa269be0d4b64ba55a5694e2b986f494d834 [file] [log] [blame]
David Majnemer1a666e02015-03-07 20:21:27 +00001//===-- 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#include "llvm/ADT/DenseMap.h"
19
20#define DEBUG_TYPE "dyld"
21
22using namespace llvm;
23
24namespace llvm {
25
26// Common base class for COFF dynamic linker support.
27// Concrete subclasses for each target can be found in ./Targets.
28class RuntimeDyldCOFF : public RuntimeDyldImpl {
29
30public:
31 std::unique_ptr<RuntimeDyld::LoadedObjectInfo>
32 loadObject(const object::ObjectFile &Obj) override;
33 bool isCompatibleFile(const object::ObjectFile &Obj) const override;
Lang Hames633fe142015-03-30 03:37:06 +000034
35 static std::unique_ptr<RuntimeDyldCOFF>
36 create(Triple::ArchType Arch, RuntimeDyld::MemoryManager &MemMgr,
37 RuntimeDyld::SymbolResolver &Resolver);
David Majnemer1a666e02015-03-07 20:21:27 +000038
39protected:
Lang Hames633fe142015-03-30 03:37:06 +000040 RuntimeDyldCOFF(RuntimeDyld::MemoryManager &MemMgr,
41 RuntimeDyld::SymbolResolver &Resolver)
42 : RuntimeDyldImpl(MemMgr, Resolver) {}
David Majnemer1a666e02015-03-07 20:21:27 +000043 uint64_t getSymbolOffset(const SymbolRef &Sym);
44};
45
46} // end namespace llvm
47
48#undef DEBUG_TYPE
49
50#endif