blob: ca157a79298c7e72c51e3088235de4839ef3dc12 [file] [log] [blame]
Andrew Kaylor1b2cfb62013-10-04 00:49:38 +00001//===- RemoteMemoryManager.h - LLI MCJIT recording memory manager ------===//
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 memory manager allocates local storage and keeps a record of each
11// allocation. Iterators are provided for all data and code allocations.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef REMOTEMEMORYMANAGER_H
16#define REMOTEMEMORYMANAGER_H
17
18#include "llvm/ADT/DenseMap.h"
19#include "llvm/ADT/SmallVector.h"
20#include "llvm/ExecutionEngine/JITMemoryManager.h"
21#include "llvm/Support/ErrorHandling.h"
22#include "llvm/Support/Memory.h"
23#include <utility>
24
25#include "RemoteTarget.h"
26
27namespace llvm {
28
29class RemoteMemoryManager : public JITMemoryManager {
30public:
31 // Notice that this structure takes ownership of the memory allocated.
32 struct Allocation {
Andrew Kaylor97231762013-10-04 20:09:36 +000033 Allocation() {}
Andrew Kaylor1b2cfb62013-10-04 00:49:38 +000034 Allocation(sys::MemoryBlock mb, unsigned a, bool code)
35 : MB(mb), Alignment(a), IsCode(code) {}
36
37 sys::MemoryBlock MB;
38 unsigned Alignment;
39 bool IsCode;
40 };
41
42private:
43 // This vector contains Allocation objects for all sections which we have
44 // allocated. This vector effectively owns the memory associated with the
45 // allocations.
46 SmallVector<Allocation, 2> AllocatedSections;
47
48 // This vector contains pointers to Allocation objects for any sections we
49 // have allocated locally but have not yet remapped for the remote target.
50 // When we receive notification of a completed module load, we will map
51 // these sections into the remote target.
Andrew Kaylor97231762013-10-04 20:09:36 +000052 SmallVector<Allocation, 2> UnmappedSections;
Andrew Kaylor1b2cfb62013-10-04 00:49:38 +000053
54 // This map tracks the sections we have remapped for the remote target
55 // but have not yet copied to the target.
Andrew Kaylor97231762013-10-04 20:09:36 +000056 DenseMap<uint64_t, Allocation> MappedSections;
Andrew Kaylor1b2cfb62013-10-04 00:49:38 +000057
58 // FIXME: This is part of a work around to keep sections near one another
59 // when MCJIT performs relocations after code emission but before
60 // the generated code is moved to the remote target.
61 sys::MemoryBlock Near;
62 sys::MemoryBlock allocateSection(uintptr_t Size);
63
64 RemoteTarget *Target;
65
66public:
67 RemoteMemoryManager() : Target(NULL) {}
68 virtual ~RemoteMemoryManager();
69
70 uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
71 unsigned SectionID, StringRef SectionName);
72
73 uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
74 unsigned SectionID, StringRef SectionName,
75 bool IsReadOnly);
76
77 void *getPointerToNamedFunction(const std::string &Name,
78 bool AbortOnFailure = true);
79
80 void notifyObjectLoaded(ExecutionEngine *EE, const ObjectImage *Obj);
81
82 bool finalizeMemory(std::string *ErrMsg);
83
84 // This is a non-interface function used by lli
85 void setRemoteTarget(RemoteTarget *T) { Target = T; }
86
87 // The following obsolete JITMemoryManager calls are stubbed out for
88 // this model.
89 void setMemoryWritable();
90 void setMemoryExecutable();
91 void setPoisonMemory(bool poison);
92 void AllocateGOT();
93 uint8_t *getGOTBase() const;
94 uint8_t *startFunctionBody(const Function *F, uintptr_t &ActualSize);
95 uint8_t *allocateStub(const GlobalValue* F, unsigned StubSize,
96 unsigned Alignment);
97 void endFunctionBody(const Function *F, uint8_t *FunctionStart,
98 uint8_t *FunctionEnd);
99 uint8_t *allocateSpace(intptr_t Size, unsigned Alignment);
100 uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment);
101 void deallocateFunctionBody(void *Body);
102};
103
104} // end namespace llvm
105
106#endif