diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-29 10:39:46 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-29 10:39:46 +0000 |
| commit | 72a7457a9021a088381ba9768908feeea928be58 (patch) | |
| tree | fcc8bbfb743d5b6c91fae0f059750735819a3f13 /llvm/lib | |
| parent | 073173568d181279720142f281259e1f0c82da0f (diff) | |
| download | bcm5719-llvm-72a7457a9021a088381ba9768908feeea928be58.tar.gz bcm5719-llvm-72a7457a9021a088381ba9768908feeea928be58.zip | |
Implement the default constructor which causes the current program to be
opened as if it was a dynamic library so its symbols can be searched too.
llvm-svn: 18341
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/System/DynamicLibrary.cpp | 10 | ||||
| -rw-r--r-- | llvm/lib/System/Unix/DynamicLibrary.cpp | 10 | ||||
| -rw-r--r-- | llvm/lib/System/Win32/DynamicLibrary.cpp | 14 |
3 files changed, 29 insertions, 5 deletions
diff --git a/llvm/lib/System/DynamicLibrary.cpp b/llvm/lib/System/DynamicLibrary.cpp index ca7bee661a6..477e3051c03 100644 --- a/llvm/lib/System/DynamicLibrary.cpp +++ b/llvm/lib/System/DynamicLibrary.cpp @@ -28,6 +28,16 @@ using namespace sys; #ifdef HAVE_LT_DLOPEN +DynamicLibrary::DynamicLibrary() : handle(0) { + if (0 != lt_dlinit()) + throw std::string(lt_dlerror()); + + handle = lt_dlopen(0); + + if (handle == 0) + throw std::string("Can't open program as dynamic library"); +} + DynamicLibrary::DynamicLibrary(const char*filename) : handle(0) { if (0 != lt_dlinit()) throw std::string(lt_dlerror()); diff --git a/llvm/lib/System/Unix/DynamicLibrary.cpp b/llvm/lib/System/Unix/DynamicLibrary.cpp index c513f51f95c..24d7f5fb846 100644 --- a/llvm/lib/System/Unix/DynamicLibrary.cpp +++ b/llvm/lib/System/Unix/DynamicLibrary.cpp @@ -16,8 +16,16 @@ namespace llvm { using namespace sys; +DynamicLibrary::DynamicLibrary() : handle(0) { +#if defined (HAVE_DLOPEN) + if ((handle = dlopen(0, RTLD_NOW | RTLD_GLOBAL)) == 0) + throw std::string( dlerror() ); +#else + assert(!"Dynamic object linking not implemented for this platform"); +#endif +} -DynamicLibrary::DynamicLibrary(const char *filename) { +DynamicLibrary::DynamicLibrary(const char *filename) : handle(0) { #if defined (HAVE_DLOPEN) if ((handle = dlopen (filename, RTLD_NOW | RTLD_GLOBAL)) == 0) throw std::string( dlerror() ); diff --git a/llvm/lib/System/Win32/DynamicLibrary.cpp b/llvm/lib/System/Win32/DynamicLibrary.cpp index b2add2ffe90..d743454746a 100644 --- a/llvm/lib/System/Win32/DynamicLibrary.cpp +++ b/llvm/lib/System/Win32/DynamicLibrary.cpp @@ -22,15 +22,21 @@ using namespace sys; //=== and must not be UNIX code //===----------------------------------------------------------------------===// +DynamicLibrary::DynamicLibrary() : handle(0) { + handle = new HMODULE; + *((HMODULE*)handle) = GetModuleHandle(NULL); + + if (*((HMODULE*)handle) == 0) { + ThrowError("Can't GetModuleHandle: "); + } +} + DynamicLibrary::DynamicLibrary(const char*filename) : handle(0) { handle = new HMODULE; *((HMODULE*)handle) = LoadLibrary(filename); if (*((HMODULE*)handle) == 0) { - char Buffer[100]; - // FIXME: This should use FormatMessage - sprintf(Buffer, "Windows error code %d\n", GetLastError()); - throw std::string(Buffer); + ThrowError("Can't LoadLibrary: "); } } |

