]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
MFV r319740: 8168 NULL pointer dereference in zfs_create()
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / ExecutionEngine / RuntimeDyld / RTDyldMemoryManager.cpp
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 // Implementation of the runtime dynamic memory manager base class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/Config/config.h"
15 #include "llvm/ExecutionEngine/RTDyldMemoryManager.h"
16 #include "llvm/Support/Compiler.h"
17 #include "llvm/Support/DynamicLibrary.h"
18 #include "llvm/Support/ErrorHandling.h"
19 #include <cstdlib>
20
21 #ifdef __linux__
22   // These includes used by RTDyldMemoryManager::getPointerToNamedFunction()
23   // for Glibc trickery. See comments in this function for more information.
24   #ifdef HAVE_SYS_STAT_H
25     #include <sys/stat.h>
26   #endif
27   #include <fcntl.h>
28   #include <unistd.h>
29 #endif
30
31 namespace llvm {
32
33 RTDyldMemoryManager::~RTDyldMemoryManager() {}
34
35 // Determine whether we can register EH tables.
36 #if (defined(__GNUC__) && !defined(__ARM_EABI__) && !defined(__ia64__) && \
37      !defined(__SEH__) && !defined(__USING_SJLJ_EXCEPTIONS__))
38 #define HAVE_EHTABLE_SUPPORT 1
39 #else
40 #define HAVE_EHTABLE_SUPPORT 0
41 #endif
42
43 #if HAVE_EHTABLE_SUPPORT
44 extern "C" void __register_frame(void *);
45 extern "C" void __deregister_frame(void *);
46 #else
47 // The building compiler does not have __(de)register_frame but
48 // it may be found at runtime in a dynamically-loaded library.
49 // For example, this happens when building LLVM with Visual C++
50 // but using the MingW runtime.
51 void __register_frame(void *p) {
52   static bool Searched = false;
53   static void((*rf)(void *)) = 0;
54
55   if (!Searched) {
56     Searched = true;
57     *(void **)&rf =
58         llvm::sys::DynamicLibrary::SearchForAddressOfSymbol("__register_frame");
59   }
60   if (rf)
61     rf(p);
62 }
63
64 void __deregister_frame(void *p) {
65   static bool Searched = false;
66   static void((*df)(void *)) = 0;
67
68   if (!Searched) {
69     Searched = true;
70     *(void **)&df = llvm::sys::DynamicLibrary::SearchForAddressOfSymbol(
71         "__deregister_frame");
72   }
73   if (df)
74     df(p);
75 }
76 #endif
77
78 #ifdef __APPLE__
79
80 static const char *processFDE(const char *Entry, bool isDeregister) {
81   const char *P = Entry;
82   uint32_t Length = *((const uint32_t *)P);
83   P += 4;
84   uint32_t Offset = *((const uint32_t *)P);
85   if (Offset != 0) {
86     if (isDeregister)
87       __deregister_frame(const_cast<char *>(Entry));
88     else
89       __register_frame(const_cast<char *>(Entry));
90   }
91   return P + Length;
92 }
93
94 // This implementation handles frame registration for local targets.
95 // Memory managers for remote targets should re-implement this function
96 // and use the LoadAddr parameter.
97 void RTDyldMemoryManager::registerEHFramesInProcess(uint8_t *Addr,
98                                                     size_t Size) {
99   // On OS X OS X __register_frame takes a single FDE as an argument.
100   // See http://lists.llvm.org/pipermail/llvm-dev/2013-April/061737.html
101   // and projects/libunwind/src/UnwindLevel1-gcc-ext.c.
102   const char *P = (const char *)Addr;
103   const char *End = P + Size;
104   do  {
105     P = processFDE(P, false);
106   } while(P != End);
107 }
108
109 void RTDyldMemoryManager::deregisterEHFramesInProcess(uint8_t *Addr,
110                                                       size_t Size) {
111   const char *P = (const char *)Addr;
112   const char *End = P + Size;
113   do  {
114     P = processFDE(P, true);
115   } while(P != End);
116 }
117
118 #else
119
120 void RTDyldMemoryManager::registerEHFramesInProcess(uint8_t *Addr,
121                                                     size_t Size) {
122   // On Linux __register_frame takes a single argument: 
123   // a pointer to the start of the .eh_frame section.
124
125   // How can it find the end? Because crtendS.o is linked 
126   // in and it has an .eh_frame section with four zero chars.
127   __register_frame(Addr);
128 }
129
130 void RTDyldMemoryManager::deregisterEHFramesInProcess(uint8_t *Addr,
131                                                       size_t Size) {
132   __deregister_frame(Addr);
133 }
134
135 #endif
136
137 static int jit_noop() {
138   return 0;
139 }
140
141 // ARM math functions are statically linked on Android from libgcc.a, but not
142 // available at runtime for dynamic linking. On Linux these are usually placed
143 // in libgcc_s.so so can be found by normal dynamic lookup.
144 #if defined(__BIONIC__) && defined(__arm__)
145 // List of functions which are statically linked on Android and can be generated
146 // by LLVM. This is done as a nested macro which is used once to declare the
147 // imported functions with ARM_MATH_DECL and once to compare them to the
148 // user-requested symbol in getSymbolAddress with ARM_MATH_CHECK. The test
149 // assumes that all functions start with __aeabi_ and getSymbolAddress must be
150 // modified if that changes.
151 #define ARM_MATH_IMPORTS(PP) \
152   PP(__aeabi_d2f) \
153   PP(__aeabi_d2iz) \
154   PP(__aeabi_d2lz) \
155   PP(__aeabi_d2uiz) \
156   PP(__aeabi_d2ulz) \
157   PP(__aeabi_dadd) \
158   PP(__aeabi_dcmpeq) \
159   PP(__aeabi_dcmpge) \
160   PP(__aeabi_dcmpgt) \
161   PP(__aeabi_dcmple) \
162   PP(__aeabi_dcmplt) \
163   PP(__aeabi_dcmpun) \
164   PP(__aeabi_ddiv) \
165   PP(__aeabi_dmul) \
166   PP(__aeabi_dsub) \
167   PP(__aeabi_f2d) \
168   PP(__aeabi_f2iz) \
169   PP(__aeabi_f2lz) \
170   PP(__aeabi_f2uiz) \
171   PP(__aeabi_f2ulz) \
172   PP(__aeabi_fadd) \
173   PP(__aeabi_fcmpeq) \
174   PP(__aeabi_fcmpge) \
175   PP(__aeabi_fcmpgt) \
176   PP(__aeabi_fcmple) \
177   PP(__aeabi_fcmplt) \
178   PP(__aeabi_fcmpun) \
179   PP(__aeabi_fdiv) \
180   PP(__aeabi_fmul) \
181   PP(__aeabi_fsub) \
182   PP(__aeabi_i2d) \
183   PP(__aeabi_i2f) \
184   PP(__aeabi_idiv) \
185   PP(__aeabi_idivmod) \
186   PP(__aeabi_l2d) \
187   PP(__aeabi_l2f) \
188   PP(__aeabi_lasr) \
189   PP(__aeabi_ldivmod) \
190   PP(__aeabi_llsl) \
191   PP(__aeabi_llsr) \
192   PP(__aeabi_lmul) \
193   PP(__aeabi_ui2d) \
194   PP(__aeabi_ui2f) \
195   PP(__aeabi_uidiv) \
196   PP(__aeabi_uidivmod) \
197   PP(__aeabi_ul2d) \
198   PP(__aeabi_ul2f) \
199   PP(__aeabi_uldivmod)
200
201 // Declare statically linked math functions on ARM. The function declarations
202 // here do not have the correct prototypes for each function in
203 // ARM_MATH_IMPORTS, but it doesn't matter because only the symbol addresses are
204 // needed. In particular the __aeabi_*divmod functions do not have calling
205 // conventions which match any C prototype.
206 #define ARM_MATH_DECL(name) extern "C" void name();
207 ARM_MATH_IMPORTS(ARM_MATH_DECL)
208 #undef ARM_MATH_DECL
209 #endif
210
211 #if defined(__linux__) && defined(__GLIBC__) && \
212       (defined(__i386__) || defined(__x86_64__))
213 extern "C" LLVM_ATTRIBUTE_WEAK void __morestack();
214 #endif
215
216 uint64_t
217 RTDyldMemoryManager::getSymbolAddressInProcess(const std::string &Name) {
218   // This implementation assumes that the host program is the target.
219   // Clients generating code for a remote target should implement their own
220   // memory manager.
221 #if defined(__linux__) && defined(__GLIBC__)
222   //===--------------------------------------------------------------------===//
223   // Function stubs that are invoked instead of certain library calls
224   //
225   // Force the following functions to be linked in to anything that uses the
226   // JIT. This is a hack designed to work around the all-too-clever Glibc
227   // strategy of making these functions work differently when inlined vs. when
228   // not inlined, and hiding their real definitions in a separate archive file
229   // that the dynamic linker can't see. For more info, search for
230   // 'libc_nonshared.a' on Google, or read http://llvm.org/PR274.
231   if (Name == "stat") return (uint64_t)&stat;
232   if (Name == "fstat") return (uint64_t)&fstat;
233   if (Name == "lstat") return (uint64_t)&lstat;
234   if (Name == "stat64") return (uint64_t)&stat64;
235   if (Name == "fstat64") return (uint64_t)&fstat64;
236   if (Name == "lstat64") return (uint64_t)&lstat64;
237   if (Name == "atexit") return (uint64_t)&atexit;
238   if (Name == "mknod") return (uint64_t)&mknod;
239
240 #if defined(__i386__) || defined(__x86_64__)
241   // __morestack lives in libgcc, a static library.
242   if (&__morestack && Name == "__morestack")
243     return (uint64_t)&__morestack;
244 #endif
245 #endif // __linux__ && __GLIBC__
246   
247   // See ARM_MATH_IMPORTS definition for explanation
248 #if defined(__BIONIC__) && defined(__arm__)
249   if (Name.compare(0, 8, "__aeabi_") == 0) {
250     // Check if the user has requested any of the functions listed in
251     // ARM_MATH_IMPORTS, and if so redirect to the statically linked symbol.
252 #define ARM_MATH_CHECK(fn) if (Name == #fn) return (uint64_t)&fn;
253     ARM_MATH_IMPORTS(ARM_MATH_CHECK)
254 #undef ARM_MATH_CHECK
255   }
256 #endif
257
258   // We should not invoke parent's ctors/dtors from generated main()!
259   // On Mingw and Cygwin, the symbol __main is resolved to
260   // callee's(eg. tools/lli) one, to invoke wrong duplicated ctors
261   // (and register wrong callee's dtors with atexit(3)).
262   // We expect ExecutionEngine::runStaticConstructorsDestructors()
263   // is called before ExecutionEngine::runFunctionAsMain() is called.
264   if (Name == "__main") return (uint64_t)&jit_noop;
265
266   const char *NameStr = Name.c_str();
267
268   // DynamicLibrary::SearchForAddresOfSymbol expects an unmangled 'C' symbol
269   // name so ff we're on Darwin, strip the leading '_' off.
270 #ifdef __APPLE__
271   if (NameStr[0] == '_')
272     ++NameStr;
273 #endif
274
275   return (uint64_t)sys::DynamicLibrary::SearchForAddressOfSymbol(NameStr);
276 }
277
278 void *RTDyldMemoryManager::getPointerToNamedFunction(const std::string &Name,
279                                                      bool AbortOnFailure) {
280   uint64_t Addr = getSymbolAddress(Name);
281
282   if (!Addr && AbortOnFailure)
283     report_fatal_error("Program used external function '" + Name +
284                        "' which could not be resolved!");
285
286   return (void*)Addr;
287 }
288
289 } // namespace llvm