14
14
15
15
#include " llvm/Config/config.h"
16
16
#include " llvm/ExecutionEngine/SectionMemoryManager.h"
17
- #include " llvm/Support/DynamicLibrary.h"
18
17
#include " llvm/Support/MathExtras.h"
19
18
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
-
30
19
namespace llvm {
31
20
32
21
uint8_t *SectionMemoryManager::allocateDataSection (uintptr_t Size ,
@@ -146,38 +135,6 @@ bool SectionMemoryManager::finalizeMemory(std::string *ErrMsg)
146
135
return false ;
147
136
}
148
137
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
-
181
138
error_code SectionMemoryManager::applyMemoryGroupPermissions (MemoryGroup &MemGroup,
182
139
unsigned Permissions) {
183
140
@@ -199,57 +156,6 @@ void SectionMemoryManager::invalidateInstructionCache() {
199
156
CodeMem.AllocatedMem [i].size ());
200
157
}
201
158
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
-
253
159
SectionMemoryManager::~SectionMemoryManager () {
254
160
for (unsigned i = 0 , e = CodeMem.AllocatedMem .size (); i != e; ++i)
255
161
sys::Memory::releaseMappedMemory (CodeMem.AllocatedMem [i]);
0 commit comments