Provide configuration support and usage for MINGW32 platform
[oota-llvm.git] / lib / System / DynamicLibrary.cpp
1 //===-- DynamicLibrary.cpp - Runtime link/load libraries --------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Reid Spencer and is distributed under the
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 //  This header file implements the operating system DynamicLibrary concept.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/System/DynamicLibrary.h"
15 #include "llvm/Config/config.h"
16 #include <map>
17
18 // Collection of symbol name/value pairs to be searched prior to any libraries.
19 static std::map<std::string, void *> g_symbols;
20
21 void llvm::sys::DynamicLibrary::AddSymbol(const char* symbolName, void *symbolValue) {
22   g_symbols[symbolName] = symbolValue;
23 }
24
25 // It is not possible to use ltdl.c on VC++ builds as the terms of its LGPL
26 // license and special exception would cause all of LLVM to be placed under
27 // the LGPL.  This is because the exception applies only when libtool is
28 // used, and obviously libtool is not used with Visual Studio.  An entirely
29 // separate implementation is provided in win32/DynamicLibrary.cpp.
30
31 #ifdef LLVM_ON_WIN32
32
33 #include "Win32/DynamicLibrary.inc"
34
35 #else
36
37 #include "ltdl.h"
38 #include <cassert>
39 using namespace llvm;
40 using namespace llvm::sys;
41
42 //===----------------------------------------------------------------------===//
43 //=== WARNING: Implementation here must contain only TRULY operating system
44 //===          independent code.
45 //===----------------------------------------------------------------------===//
46
47 static bool did_initialize_ltdl = false;
48
49 static inline void check_ltdl_initialization() {
50   if (!did_initialize_ltdl) {
51     if (0 != lt_dlinit())
52       throw std::string(lt_dlerror());
53     did_initialize_ltdl = true;
54   }
55 }
56
57 static std::vector<lt_dlhandle> OpenedHandles;
58
59 DynamicLibrary::DynamicLibrary() : handle(0) {
60   check_ltdl_initialization();
61
62   lt_dlhandle a_handle = lt_dlopen(0);
63
64   if (a_handle == 0)
65     throw std::string("Can't open program as dynamic library");
66
67   handle = a_handle;
68   OpenedHandles.push_back(a_handle);
69 }
70
71 DynamicLibrary::DynamicLibrary(const char*filename) : handle(0) {
72   check_ltdl_initialization();
73
74   lt_dlhandle a_handle = lt_dlopen(filename);
75
76   if (a_handle == 0)
77     a_handle = lt_dlopenext(filename);
78
79   if (a_handle == 0)
80     throw std::string("Can't open :") + filename + ": " + lt_dlerror();
81
82   handle = a_handle;
83   OpenedHandles.push_back(a_handle);
84 }
85
86 DynamicLibrary::~DynamicLibrary() {
87   lt_dlhandle a_handle = (lt_dlhandle) handle;
88   if (a_handle) {
89     lt_dlclose(a_handle);
90
91     for (std::vector<lt_dlhandle>::iterator I = OpenedHandles.begin(),
92          E = OpenedHandles.end(); I != E; ++I) {
93       if (*I == a_handle) {
94         // Note: don't use the swap/pop_back trick here. Order is important.
95         OpenedHandles.erase(I);
96         return;
97       }
98     }
99   }
100 }
101
102 void DynamicLibrary::LoadLibraryPermanently(const char* filename) {
103   check_ltdl_initialization();
104   lt_dlhandle a_handle = lt_dlopen(filename);
105
106   if (a_handle == 0)
107     a_handle = lt_dlopenext(filename);
108
109   if (a_handle == 0)
110     throw std::string("Can't open :") +
111           (filename ? filename : "<current process>") + ": " + lt_dlerror();
112
113   lt_dlmakeresident(a_handle);
114
115   OpenedHandles.push_back(a_handle);
116 }
117
118 void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) {
119   check_ltdl_initialization();
120
121   // First check symbols added via AddSymbol().
122   std::map<std::string, void *>::iterator I = g_symbols.find(symbolName);
123   if (I != g_symbols.end())
124     return I->second;
125
126   // Now search the libraries.
127   for (std::vector<lt_dlhandle>::iterator I = OpenedHandles.begin(),
128        E = OpenedHandles.end(); I != E; ++I) {
129     lt_ptr ptr = lt_dlsym(*I, symbolName);
130     if (ptr)
131       return ptr;
132   }
133
134   // If this is darwin, it has some funky issues, try to solve them here.  Some
135   // important symbols are marked 'private external' which doesn't allow
136   // SearchForAddressOfSymbol to find them.  As such, we special case them here,
137   // there is only a small handful of them.
138 #ifdef __APPLE__
139   {
140 #define EXPLICIT_SYMBOL(SYM) \
141    extern void *SYM; if (!strcmp(symbolName, #SYM)) return &SYM
142     EXPLICIT_SYMBOL(__ashldi3);
143     EXPLICIT_SYMBOL(__ashrdi3);
144     EXPLICIT_SYMBOL(__cmpdi2);
145     EXPLICIT_SYMBOL(__divdi3);
146     EXPLICIT_SYMBOL(__eprintf);
147     EXPLICIT_SYMBOL(__fixdfdi);
148     EXPLICIT_SYMBOL(__fixsfdi);
149     EXPLICIT_SYMBOL(__fixunsdfdi);
150     EXPLICIT_SYMBOL(__fixunssfdi);
151     EXPLICIT_SYMBOL(__floatdidf);
152     EXPLICIT_SYMBOL(__floatdisf);
153     EXPLICIT_SYMBOL(__lshrdi3);
154     EXPLICIT_SYMBOL(__moddi3);
155     EXPLICIT_SYMBOL(__udivdi3);
156     EXPLICIT_SYMBOL(__umoddi3);
157 #undef EXPLICIT_SYMBOL
158   }
159 #endif
160
161   return 0;
162 }
163
164 void *DynamicLibrary::GetAddressOfSymbol(const char *symbolName) {
165   assert(handle != 0 && "Invalid DynamicLibrary handle");
166   return lt_dlsym((lt_dlhandle) handle, symbolName);
167 }
168
169 #endif // LLVM_ON_WIN32