blob: e8aaa82a5f12b4606034f13caff60f0020d64179 [file] [log] [blame]
Andrew Kaylorcc7773b2012-11-27 19:00:17 +00001//===- SectionMemoryManager.cpp - Memory manager for MCJIT/RtDyld *- C++ -*-==//
Andrew Kaylor2d6d5852012-10-04 20:29:44 +00002//
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//
Andrew Kaylorcc7773b2012-11-27 19:00:17 +000010// This file implements the section-based memory manager used by the MCJIT
11// execution engine and RuntimeDyld
Andrew Kaylor2d6d5852012-10-04 20:29:44 +000012//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/Config/config.h"
16#include "llvm/Support/DynamicLibrary.h"
Amara Emersona25ad192012-10-31 17:41:51 +000017#include "llvm/Support/MathExtras.h"
Andrew Kaylor2d6d5852012-10-04 20:29:44 +000018#include "SectionMemoryManager.h"
19
20#ifdef __linux__
Andrew Kaylorcc7773b2012-11-27 19:00:17 +000021 // These includes used by SectionMemoryManager::getPointerToNamedFunction()
22 // for Glibc trickery. See comments in this function for more information.
23 #ifdef HAVE_SYS_STAT_H
24 #include <sys/stat.h>
25 #endif
26 #include <fcntl.h>
27 #include <unistd.h>
Andrew Kaylor2d6d5852012-10-04 20:29:44 +000028#endif
29
30namespace llvm {
31
32uint8_t *SectionMemoryManager::allocateDataSection(uintptr_t Size,
33 unsigned Alignment,
Andrew Kaylor53608a32012-11-15 23:50:01 +000034 unsigned SectionID,
35 bool IsReadOnly) {
Andrew Kaylorcc7773b2012-11-27 19:00:17 +000036 if (IsReadOnly)
37 return allocateSection(RODataMem, Size, Alignment);
38 return allocateSection(RWDataMem, Size, Alignment);
Andrew Kaylor2d6d5852012-10-04 20:29:44 +000039}
40
41uint8_t *SectionMemoryManager::allocateCodeSection(uintptr_t Size,
Andrew Kaylorcc7773b2012-11-27 19:00:17 +000042 unsigned Alignment,
43 unsigned SectionID) {
44 return allocateSection(CodeMem, Size, Alignment);
45}
46
47uint8_t *SectionMemoryManager::allocateSection(MemoryGroup &MemGroup,
48 uintptr_t Size,
49 unsigned Alignment) {
Andrew Kaylor2d6d5852012-10-04 20:29:44 +000050 if (!Alignment)
51 Alignment = 16;
Andrew Kaylorcc7773b2012-11-27 19:00:17 +000052
53 assert(!(Alignment & (Alignment - 1)) && "Alignment must be a power of two.");
54
55 uintptr_t RequiredSize = Alignment * ((Size + Alignment - 1)/Alignment + 1);
Andrew Kaylor2d6d5852012-10-04 20:29:44 +000056 uintptr_t Addr = 0;
Andrew Kaylorcc7773b2012-11-27 19:00:17 +000057
58 // Look in the list of free memory regions and use a block there if one
Andrew Kaylor2d6d5852012-10-04 20:29:44 +000059 // is available.
Andrew Kaylorcc7773b2012-11-27 19:00:17 +000060 for (int i = 0, e = MemGroup.FreeMem.size(); i != e; ++i) {
61 sys::MemoryBlock &MB = MemGroup.FreeMem[i];
62 if (MB.size() >= RequiredSize) {
Andrew Kaylor2d6d5852012-10-04 20:29:44 +000063 Addr = (uintptr_t)MB.base();
64 uintptr_t EndOfBlock = Addr + MB.size();
65 // Align the address.
66 Addr = (Addr + Alignment - 1) & ~(uintptr_t)(Alignment - 1);
67 // Store cutted free memory block.
Andrew Kaylorcc7773b2012-11-27 19:00:17 +000068 MemGroup.FreeMem[i] = sys::MemoryBlock((void*)(Addr + Size),
69 EndOfBlock - Addr - Size);
Andrew Kaylor2d6d5852012-10-04 20:29:44 +000070 return (uint8_t*)Addr;
71 }
72 }
73
74 // No pre-allocated free block was large enough. Allocate a new memory region.
Andrew Kaylorcc7773b2012-11-27 19:00:17 +000075 // Note that all sections get allocated as read-write. The permissions will
76 // be updated later based on memory group.
77 //
78 // FIXME: It would be useful to define a default allocation size (or add
79 // it as a constructor parameter) to minimize the number of allocations.
80 //
81 // FIXME: Initialize the Near member for each memory group to avoid
82 // interleaving.
83 error_code ec;
84 sys::MemoryBlock MB = sys::Memory::allocateMappedMemory(RequiredSize,
85 &MemGroup.Near,
86 sys::Memory::MF_READ |
87 sys::Memory::MF_WRITE,
88 ec);
89 if (ec) {
90 // FIXME: Add error propogation to the interface.
91 return NULL;
92 }
Andrew Kaylor2d6d5852012-10-04 20:29:44 +000093
Andrew Kaylorcc7773b2012-11-27 19:00:17 +000094 // Save this address as the basis for our next request
95 MemGroup.Near = MB;
96
97 MemGroup.AllocatedMem.push_back(MB);
Andrew Kaylor2d6d5852012-10-04 20:29:44 +000098 Addr = (uintptr_t)MB.base();
99 uintptr_t EndOfBlock = Addr + MB.size();
Andrew Kaylorcc7773b2012-11-27 19:00:17 +0000100
Andrew Kaylor2d6d5852012-10-04 20:29:44 +0000101 // Align the address.
102 Addr = (Addr + Alignment - 1) & ~(uintptr_t)(Alignment - 1);
Andrew Kaylorcc7773b2012-11-27 19:00:17 +0000103
104 // The allocateMappedMemory may allocate much more memory than we need. In
105 // this case, we store the unused memory as a free memory block.
Andrew Kaylor2d6d5852012-10-04 20:29:44 +0000106 unsigned FreeSize = EndOfBlock-Addr-Size;
107 if (FreeSize > 16)
Andrew Kaylorcc7773b2012-11-27 19:00:17 +0000108 MemGroup.FreeMem.push_back(sys::MemoryBlock((void*)(Addr + Size), FreeSize));
Andrew Kaylor2d6d5852012-10-04 20:29:44 +0000109
110 // Return aligned address
111 return (uint8_t*)Addr;
112}
113
Andrew Kaylorcc7773b2012-11-27 19:00:17 +0000114bool SectionMemoryManager::applyPermissions(std::string *ErrMsg)
115{
116 // FIXME: Should in-progress permissions be reverted if an error occurs?
117 error_code ec;
118
119 // Make code memory executable.
120 ec = applyMemoryGroupPermissions(CodeMem,
121 sys::Memory::MF_READ | sys::Memory::MF_EXEC);
122 if (ec) {
123 if (ErrMsg) {
124 *ErrMsg = ec.message();
125 }
126 return true;
127 }
128
129 // Make read-only data memory read-only.
130 ec = applyMemoryGroupPermissions(RODataMem,
131 sys::Memory::MF_READ | sys::Memory::MF_EXEC);
132 if (ec) {
133 if (ErrMsg) {
134 *ErrMsg = ec.message();
135 }
136 return true;
137 }
138
139 // Read-write data memory already has the correct permissions
140
141 return false;
142}
143
144error_code SectionMemoryManager::applyMemoryGroupPermissions(MemoryGroup &MemGroup,
145 unsigned Permissions) {
146
147 for (int i = 0, e = MemGroup.AllocatedMem.size(); i != e; ++i) {
148 error_code ec;
149 ec = sys::Memory::protectMappedMemory(MemGroup.AllocatedMem[i],
150 Permissions);
151 if (ec) {
152 return ec;
153 }
154 }
155
156 return error_code::success();
157}
158
Andrew Kaylor2d6d5852012-10-04 20:29:44 +0000159void SectionMemoryManager::invalidateInstructionCache() {
Andrew Kaylorcc7773b2012-11-27 19:00:17 +0000160 for (int i = 0, e = CodeMem.AllocatedMem.size(); i != e; ++i)
161 sys::Memory::InvalidateInstructionCache(CodeMem.AllocatedMem[i].base(),
162 CodeMem.AllocatedMem[i].size());
163}
164
165static int jit_noop() {
166 return 0;
Andrew Kaylor2d6d5852012-10-04 20:29:44 +0000167}
168
169void *SectionMemoryManager::getPointerToNamedFunction(const std::string &Name,
170 bool AbortOnFailure) {
171#if defined(__linux__)
172 //===--------------------------------------------------------------------===//
173 // Function stubs that are invoked instead of certain library calls
174 //
175 // Force the following functions to be linked in to anything that uses the
176 // JIT. This is a hack designed to work around the all-too-clever Glibc
177 // strategy of making these functions work differently when inlined vs. when
178 // not inlined, and hiding their real definitions in a separate archive file
179 // that the dynamic linker can't see. For more info, search for
180 // 'libc_nonshared.a' on Google, or read http://llvm.org/PR274.
181 if (Name == "stat") return (void*)(intptr_t)&stat;
182 if (Name == "fstat") return (void*)(intptr_t)&fstat;
183 if (Name == "lstat") return (void*)(intptr_t)&lstat;
184 if (Name == "stat64") return (void*)(intptr_t)&stat64;
185 if (Name == "fstat64") return (void*)(intptr_t)&fstat64;
186 if (Name == "lstat64") return (void*)(intptr_t)&lstat64;
187 if (Name == "atexit") return (void*)(intptr_t)&atexit;
188 if (Name == "mknod") return (void*)(intptr_t)&mknod;
189#endif // __linux__
190
Andrew Kaylorcc7773b2012-11-27 19:00:17 +0000191 // We should not invoke parent's ctors/dtors from generated main()!
192 // On Mingw and Cygwin, the symbol __main is resolved to
193 // callee's(eg. tools/lli) one, to invoke wrong duplicated ctors
194 // (and register wrong callee's dtors with atexit(3)).
195 // We expect ExecutionEngine::runStaticConstructorsDestructors()
196 // is called before ExecutionEngine::runFunctionAsMain() is called.
197 if (Name == "__main") return (void*)(intptr_t)&jit_noop;
198
Andrew Kaylor2d6d5852012-10-04 20:29:44 +0000199 const char *NameStr = Name.c_str();
200 void *Ptr = sys::DynamicLibrary::SearchForAddressOfSymbol(NameStr);
201 if (Ptr) return Ptr;
202
203 // If it wasn't found and if it starts with an underscore ('_') character,
204 // try again without the underscore.
205 if (NameStr[0] == '_') {
206 Ptr = sys::DynamicLibrary::SearchForAddressOfSymbol(NameStr+1);
207 if (Ptr) return Ptr;
208 }
209
210 if (AbortOnFailure)
211 report_fatal_error("Program used external function '" + Name +
212 "' which could not be resolved!");
213 return 0;
214}
215
216SectionMemoryManager::~SectionMemoryManager() {
Andrew Kaylorcc7773b2012-11-27 19:00:17 +0000217 for (unsigned i = 0, e = CodeMem.AllocatedMem.size(); i != e; ++i)
218 sys::Memory::releaseMappedMemory(CodeMem.AllocatedMem[i]);
219 for (unsigned i = 0, e = RWDataMem.AllocatedMem.size(); i != e; ++i)
220 sys::Memory::releaseMappedMemory(RWDataMem.AllocatedMem[i]);
221 for (unsigned i = 0, e = RODataMem.AllocatedMem.size(); i != e; ++i)
222 sys::Memory::releaseMappedMemory(RODataMem.AllocatedMem[i]);
Andrew Kaylor2d6d5852012-10-04 20:29:44 +0000223}
224
225} // namespace llvm
Andrew Kaylorcc7773b2012-11-27 19:00:17 +0000226