Skip to content

Commit b2a1e19

Browse files
author
Filip Pizlo
committed
Put RTDyldMemoryManager into its own file, and make it linked into
libExecutionEngine. Move method implementations that aren't specific to allocation out of SectionMemoryManager and into RTDyldMemoryManager. This is in preparation for exposing RTDyldMemoryManager through the C API. This is a fixed version of r182407. That revision broke builds because I forgot to move the conditional includes of various POSIX headers from SectionMemoryManager into RTDyldMemoryManager. Those includes are necessary because of how getPointerToNamedFunction works around the glibc libc_nonshared.a thing. llvm-svn: 182411
1 parent 0e171fe commit b2a1e19

File tree

7 files changed

+193
-159
lines changed

7 files changed

+193
-159
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
//===-- RTDyldMemoryManager.cpp - Memory manager 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+
// Interface of the runtime dynamic memory manager base class.
11+
//
12+
//===----------------------------------------------------------------------===//
13+
14+
#ifndef LLVM_EXECUTIONENGINE_RT_DYLD_MEMORY_MANAGER_H
15+
#define LLVM_EXECUTIONENGINE_RT_DYLD_MEMORY_MANAGER_H
16+
17+
#include "llvm/ADT/StringRef.h"
18+
#include "llvm/Support/CBindingWrapping.h"
19+
#include "llvm/Support/Memory.h"
20+
#include "llvm-c/ExecutionEngine.h"
21+
22+
namespace llvm {
23+
24+
// RuntimeDyld clients often want to handle the memory management of
25+
// what gets placed where. For JIT clients, this is the subset of
26+
// JITMemoryManager required for dynamic loading of binaries.
27+
//
28+
// FIXME: As the RuntimeDyld fills out, additional routines will be needed
29+
// for the varying types of objects to be allocated.
30+
class RTDyldMemoryManager {
31+
RTDyldMemoryManager(const RTDyldMemoryManager&) LLVM_DELETED_FUNCTION;
32+
void operator=(const RTDyldMemoryManager&) LLVM_DELETED_FUNCTION;
33+
public:
34+
RTDyldMemoryManager() {}
35+
virtual ~RTDyldMemoryManager();
36+
37+
/// Allocate a memory block of (at least) the given size suitable for
38+
/// executable code. The SectionID is a unique identifier assigned by the JIT
39+
/// engine, and optionally recorded by the memory manager to access a loaded
40+
/// section.
41+
virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
42+
unsigned SectionID) = 0;
43+
44+
/// Allocate a memory block of (at least) the given size suitable for data.
45+
/// The SectionID is a unique identifier assigned by the JIT engine, and
46+
/// optionally recorded by the memory manager to access a loaded section.
47+
virtual uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
48+
unsigned SectionID, bool IsReadOnly) = 0;
49+
50+
/// Register the EH frames with the runtime so that c++ exceptions work.
51+
virtual void registerEHFrames(StringRef SectionData);
52+
53+
/// This method returns the address of the specified function. As such it is
54+
/// only useful for resolving library symbols, not code generated symbols.
55+
///
56+
/// If \p AbortOnFailure is false and no function with the given name is
57+
/// found, this function returns a null pointer. Otherwise, it prints a
58+
/// message to stderr and aborts.
59+
virtual void *getPointerToNamedFunction(const std::string &Name,
60+
bool AbortOnFailure = true);
61+
62+
/// This method is called when object loading is complete and section page
63+
/// permissions can be applied. It is up to the memory manager implementation
64+
/// to decide whether or not to act on this method. The memory manager will
65+
/// typically allocate all sections as read-write and then apply specific
66+
/// permissions when this method is called. Code sections cannot be executed
67+
/// until this function has been called. In addition, any cache coherency
68+
/// operations needed to reliably use the memory are also performed.
69+
///
70+
/// Returns true if an error occurred, false otherwise.
71+
virtual bool finalizeMemory(std::string *ErrMsg = 0) = 0;
72+
};
73+
74+
} // namespace llvm
75+
76+
#endif // LLVM_EXECUTIONENGINE_RT_DYLD_MEMORY_MANAGER_H

llvm/include/llvm/ExecutionEngine/RuntimeDyld.h

+1-52
Original file line numberDiff line numberDiff line change
@@ -16,65 +16,14 @@
1616

1717
#include "llvm/ADT/StringRef.h"
1818
#include "llvm/ExecutionEngine/ObjectBuffer.h"
19+
#include "llvm/ExecutionEngine/RTDyldMemoryManager.h"
1920
#include "llvm/Support/Memory.h"
2021

2122
namespace llvm {
2223

2324
class RuntimeDyldImpl;
2425
class ObjectImage;
2526

26-
// RuntimeDyld clients often want to handle the memory management of
27-
// what gets placed where. For JIT clients, this is the subset of
28-
// JITMemoryManager required for dynamic loading of binaries.
29-
//
30-
// FIXME: As the RuntimeDyld fills out, additional routines will be needed
31-
// for the varying types of objects to be allocated.
32-
class RTDyldMemoryManager {
33-
RTDyldMemoryManager(const RTDyldMemoryManager&) LLVM_DELETED_FUNCTION;
34-
void operator=(const RTDyldMemoryManager&) LLVM_DELETED_FUNCTION;
35-
public:
36-
RTDyldMemoryManager() {}
37-
virtual ~RTDyldMemoryManager();
38-
39-
/// Allocate a memory block of (at least) the given size suitable for
40-
/// executable code. The SectionID is a unique identifier assigned by the JIT
41-
/// engine, and optionally recorded by the memory manager to access a loaded
42-
/// section.
43-
virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
44-
unsigned SectionID) = 0;
45-
46-
/// Allocate a memory block of (at least) the given size suitable for data.
47-
/// The SectionID is a unique identifier assigned by the JIT engine, and
48-
/// optionally recorded by the memory manager to access a loaded section.
49-
virtual uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
50-
unsigned SectionID, bool IsReadOnly) = 0;
51-
52-
/// This method returns the address of the specified function. As such it is
53-
/// only useful for resolving library symbols, not code generated symbols.
54-
///
55-
/// If AbortOnFailure is false and no function with the given name is
56-
/// found, this function returns a null pointer. Otherwise, it prints a
57-
/// message to stderr and aborts.
58-
virtual void *getPointerToNamedFunction(const std::string &Name,
59-
bool AbortOnFailure = true) = 0;
60-
61-
/// This method is called when object loading is complete and section page
62-
/// permissions can be applied. It is up to the memory manager implementation
63-
/// to decide whether or not to act on this method. The memory manager will
64-
/// typically allocate all sections as read-write and then apply specific
65-
/// permissions when this method is called. Code sections cannot be executed
66-
/// until this function has been called. In addition, any cache coherency
67-
/// operations needed to reliably use the memory are also performed.
68-
///
69-
/// Returns true if an error occurred, false otherwise.
70-
virtual bool finalizeMemory(std::string *ErrMsg = 0) = 0;
71-
72-
/// Register the EH frames with the runtime so that c++ exceptions work. The
73-
/// default implementation does nothing. Look at SectionMemoryManager for one
74-
/// that uses __register_frame.
75-
virtual void registerEHFrames(StringRef SectionData);
76-
};
77-
7827
class RuntimeDyld {
7928
RuntimeDyld(const RuntimeDyld &) LLVM_DELETED_FUNCTION;
8029
void operator=(const RuntimeDyld &) LLVM_DELETED_FUNCTION;

llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h

-11
Original file line numberDiff line numberDiff line change
@@ -73,17 +73,6 @@ class SectionMemoryManager : public RTDyldMemoryManager {
7373
/// \returns true if an error occurred, false otherwise.
7474
virtual bool finalizeMemory(std::string *ErrMsg = 0);
7575

76-
void registerEHFrames(StringRef SectionData);
77-
78-
/// This method returns the address of the specified function. As such it is
79-
/// only useful for resolving library symbols, not code generated symbols.
80-
///
81-
/// If \p AbortOnFailure is false and no function with the given name is
82-
/// found, this function returns a null pointer. Otherwise, it prints a
83-
/// message to stderr and aborts.
84-
virtual void *getPointerToNamedFunction(const std::string &Name,
85-
bool AbortOnFailure = true);
86-
8776
/// \brief Invalidate instruction cache for code sections.
8877
///
8978
/// Some platforms with separate data cache and instruction cache require

llvm/lib/ExecutionEngine/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
add_llvm_library(LLVMExecutionEngine
44
ExecutionEngine.cpp
55
ExecutionEngineBindings.cpp
6+
RTDyldMemoryManager.cpp
67
TargetSelect.cpp
78
)
89

llvm/lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp

-94
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,8 @@
1414

1515
#include "llvm/Config/config.h"
1616
#include "llvm/ExecutionEngine/SectionMemoryManager.h"
17-
#include "llvm/Support/DynamicLibrary.h"
1817
#include "llvm/Support/MathExtras.h"
1918

20-
#ifdef __linux__
21-
// 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>
28-
#endif
29-
3019
namespace llvm {
3120

3221
uint8_t *SectionMemoryManager::allocateDataSection(uintptr_t Size,
@@ -146,38 +135,6 @@ bool SectionMemoryManager::finalizeMemory(std::string *ErrMsg)
146135
return false;
147136
}
148137

149-
// Determine whether we can register EH tables.
150-
#if (defined(__GNUC__) && !defined(__ARM_EABI__) && \
151-
!defined(__USING_SJLJ_EXCEPTIONS__))
152-
#define HAVE_EHTABLE_SUPPORT 1
153-
#else
154-
#define HAVE_EHTABLE_SUPPORT 0
155-
#endif
156-
157-
#if HAVE_EHTABLE_SUPPORT
158-
extern "C" void __register_frame(void*);
159-
160-
static const char *processFDE(const char *Entry) {
161-
const char *P = Entry;
162-
uint32_t Length = *((uint32_t*)P);
163-
P += 4;
164-
uint32_t Offset = *((uint32_t*)P);
165-
if (Offset != 0)
166-
__register_frame((void*)Entry);
167-
return P + Length;
168-
}
169-
#endif
170-
171-
void SectionMemoryManager::registerEHFrames(StringRef SectionData) {
172-
#if HAVE_EHTABLE_SUPPORT
173-
const char *P = SectionData.data();
174-
const char *End = SectionData.data() + SectionData.size();
175-
do {
176-
P = processFDE(P);
177-
} while(P != End);
178-
#endif
179-
}
180-
181138
error_code SectionMemoryManager::applyMemoryGroupPermissions(MemoryGroup &MemGroup,
182139
unsigned Permissions) {
183140

@@ -199,57 +156,6 @@ void SectionMemoryManager::invalidateInstructionCache() {
199156
CodeMem.AllocatedMem[i].size());
200157
}
201158

202-
static int jit_noop() {
203-
return 0;
204-
}
205-
206-
void *SectionMemoryManager::getPointerToNamedFunction(const std::string &Name,
207-
bool AbortOnFailure) {
208-
#if defined(__linux__)
209-
//===--------------------------------------------------------------------===//
210-
// Function stubs that are invoked instead of certain library calls
211-
//
212-
// Force the following functions to be linked in to anything that uses the
213-
// JIT. This is a hack designed to work around the all-too-clever Glibc
214-
// strategy of making these functions work differently when inlined vs. when
215-
// not inlined, and hiding their real definitions in a separate archive file
216-
// that the dynamic linker can't see. For more info, search for
217-
// 'libc_nonshared.a' on Google, or read http://llvm.org/PR274.
218-
if (Name == "stat") return (void*)(intptr_t)&stat;
219-
if (Name == "fstat") return (void*)(intptr_t)&fstat;
220-
if (Name == "lstat") return (void*)(intptr_t)&lstat;
221-
if (Name == "stat64") return (void*)(intptr_t)&stat64;
222-
if (Name == "fstat64") return (void*)(intptr_t)&fstat64;
223-
if (Name == "lstat64") return (void*)(intptr_t)&lstat64;
224-
if (Name == "atexit") return (void*)(intptr_t)&atexit;
225-
if (Name == "mknod") return (void*)(intptr_t)&mknod;
226-
#endif // __linux__
227-
228-
// We should not invoke parent's ctors/dtors from generated main()!
229-
// On Mingw and Cygwin, the symbol __main is resolved to
230-
// callee's(eg. tools/lli) one, to invoke wrong duplicated ctors
231-
// (and register wrong callee's dtors with atexit(3)).
232-
// We expect ExecutionEngine::runStaticConstructorsDestructors()
233-
// is called before ExecutionEngine::runFunctionAsMain() is called.
234-
if (Name == "__main") return (void*)(intptr_t)&jit_noop;
235-
236-
const char *NameStr = Name.c_str();
237-
void *Ptr = sys::DynamicLibrary::SearchForAddressOfSymbol(NameStr);
238-
if (Ptr) return Ptr;
239-
240-
// If it wasn't found and if it starts with an underscore ('_') character,
241-
// try again without the underscore.
242-
if (NameStr[0] == '_') {
243-
Ptr = sys::DynamicLibrary::SearchForAddressOfSymbol(NameStr+1);
244-
if (Ptr) return Ptr;
245-
}
246-
247-
if (AbortOnFailure)
248-
report_fatal_error("Program used external function '" + Name +
249-
"' which could not be resolved!");
250-
return 0;
251-
}
252-
253159
SectionMemoryManager::~SectionMemoryManager() {
254160
for (unsigned i = 0, e = CodeMem.AllocatedMem.size(); i != e; ++i)
255161
sys::Memory::releaseMappedMemory(CodeMem.AllocatedMem[i]);

0 commit comments

Comments
 (0)