blob: 681a3e52d27d657a8686acb9ddf453c290f1f3b3 [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;
34 static std::unique_ptr<RuntimeDyldCOFF> create(Triple::ArchType Arch,
35 RTDyldMemoryManager *MM);
36
37protected:
38 RuntimeDyldCOFF(RTDyldMemoryManager *MM) : RuntimeDyldImpl(MM) {}
39 uint64_t getSymbolOffset(const SymbolRef &Sym);
40};
41
42} // end namespace llvm
43
44#undef DEBUG_TYPE
45
46#endif