2004-11-18 04:33:39 +00:00
|
|
|
//===-- DynamicLibrary.cpp - Runtime link/load libraries --------*- C++ -*-===//
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2004-11-18 04:33:39 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2005-04-21 22:55:34 +00:00
|
|
|
// This file was developed by Reid Spencer and is distributed under the
|
2004-11-18 04:33:39 +00:00
|
|
|
// University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 22:55:34 +00:00
|
|
|
//
|
2004-11-18 04:33:39 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This header file implements the operating system DynamicLibrary concept.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/System/DynamicLibrary.h"
|
2004-12-24 16:26:47 +00:00
|
|
|
#include "llvm/Config/config.h"
|
2006-01-30 04:33:51 +00:00
|
|
|
#include <map>
|
|
|
|
|
|
|
|
// Collection of symbol name/value pairs to be searched prior to any libraries.
|
|
|
|
static std::map<std::string, void *> g_symbols;
|
|
|
|
|
2006-07-07 17:12:36 +00:00
|
|
|
void llvm::sys::DynamicLibrary::AddSymbol(const char* symbolName,
|
|
|
|
void *symbolValue) {
|
2006-01-30 04:33:51 +00:00
|
|
|
g_symbols[symbolName] = symbolValue;
|
|
|
|
}
|
2004-12-24 07:57:09 +00:00
|
|
|
|
|
|
|
// It is not possible to use ltdl.c on VC++ builds as the terms of its LGPL
|
|
|
|
// license and special exception would cause all of LLVM to be placed under
|
|
|
|
// the LGPL. This is because the exception applies only when libtool is
|
|
|
|
// used, and obviously libtool is not used with Visual Studio. An entirely
|
|
|
|
// separate implementation is provided in win32/DynamicLibrary.cpp.
|
|
|
|
|
2004-12-24 16:26:47 +00:00
|
|
|
#ifdef LLVM_ON_WIN32
|
2004-12-24 07:57:09 +00:00
|
|
|
|
2005-01-09 23:29:00 +00:00
|
|
|
#include "Win32/DynamicLibrary.inc"
|
2004-12-24 07:57:09 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2004-11-29 12:39:10 +00:00
|
|
|
#include "ltdl.h"
|
2004-11-18 04:33:39 +00:00
|
|
|
#include <cassert>
|
2004-12-03 23:02:42 +00:00
|
|
|
using namespace llvm;
|
|
|
|
using namespace llvm::sys;
|
2004-11-18 04:33:39 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//=== WARNING: Implementation here must contain only TRULY operating system
|
2005-04-21 22:55:34 +00:00
|
|
|
//=== independent code.
|
2004-11-18 04:33:39 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2004-11-29 13:33:28 +00:00
|
|
|
static inline void check_ltdl_initialization() {
|
For PR797:
Final commit for this bug. This removes the last EH holdouts in LLVM
and turns off exception support by using the -fno-exceptions option. This
leads to the following reduction in library and executable sizes:
DEBUG BUILD RELEASE BUILD
before after delta before after delta
lib 162,328K 157,616K 4,712 17,864K 16,416K 1,448K
bin 571,444K 557,156K 14,288 63,296K 56,996K 6,300K
Debug Improvement: 19,000K (2.59%)
Release Improvement: 7,748K (9.55%)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29882 91177308-0d34-0410-b5e6-96231b3b80d8
2006-08-25 19:54:53 +00:00
|
|
|
static bool did_initialize_ltdl = false;
|
2004-11-29 13:33:28 +00:00
|
|
|
if (!did_initialize_ltdl) {
|
For PR797:
Final commit for this bug. This removes the last EH holdouts in LLVM
and turns off exception support by using the -fno-exceptions option. This
leads to the following reduction in library and executable sizes:
DEBUG BUILD RELEASE BUILD
before after delta before after delta
lib 162,328K 157,616K 4,712 17,864K 16,416K 1,448K
bin 571,444K 557,156K 14,288 63,296K 56,996K 6,300K
Debug Improvement: 19,000K (2.59%)
Release Improvement: 7,748K (9.55%)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29882 91177308-0d34-0410-b5e6-96231b3b80d8
2006-08-25 19:54:53 +00:00
|
|
|
assert(0 == lt_dlinit() || "Can't init the ltdl library");
|
2004-11-29 13:33:28 +00:00
|
|
|
did_initialize_ltdl = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::vector<lt_dlhandle> OpenedHandles;
|
|
|
|
|
2004-11-29 10:39:46 +00:00
|
|
|
DynamicLibrary::DynamicLibrary() : handle(0) {
|
2004-11-29 13:33:28 +00:00
|
|
|
check_ltdl_initialization();
|
2004-11-29 10:39:46 +00:00
|
|
|
|
2004-11-29 13:33:28 +00:00
|
|
|
lt_dlhandle a_handle = lt_dlopen(0);
|
2004-11-29 10:39:46 +00:00
|
|
|
|
For PR797:
Final commit for this bug. This removes the last EH holdouts in LLVM
and turns off exception support by using the -fno-exceptions option. This
leads to the following reduction in library and executable sizes:
DEBUG BUILD RELEASE BUILD
before after delta before after delta
lib 162,328K 157,616K 4,712 17,864K 16,416K 1,448K
bin 571,444K 557,156K 14,288 63,296K 56,996K 6,300K
Debug Improvement: 19,000K (2.59%)
Release Improvement: 7,748K (9.55%)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29882 91177308-0d34-0410-b5e6-96231b3b80d8
2006-08-25 19:54:53 +00:00
|
|
|
assert(a_handle == 0 || "Can't open program as dynamic library");
|
2005-04-21 22:55:34 +00:00
|
|
|
|
2004-11-29 13:33:28 +00:00
|
|
|
handle = a_handle;
|
|
|
|
OpenedHandles.push_back(a_handle);
|
2004-11-29 10:39:46 +00:00
|
|
|
}
|
|
|
|
|
For PR797:
Final commit for this bug. This removes the last EH holdouts in LLVM
and turns off exception support by using the -fno-exceptions option. This
leads to the following reduction in library and executable sizes:
DEBUG BUILD RELEASE BUILD
before after delta before after delta
lib 162,328K 157,616K 4,712 17,864K 16,416K 1,448K
bin 571,444K 557,156K 14,288 63,296K 56,996K 6,300K
Debug Improvement: 19,000K (2.59%)
Release Improvement: 7,748K (9.55%)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29882 91177308-0d34-0410-b5e6-96231b3b80d8
2006-08-25 19:54:53 +00:00
|
|
|
/*
|
2004-11-18 04:33:39 +00:00
|
|
|
DynamicLibrary::DynamicLibrary(const char*filename) : handle(0) {
|
2004-11-29 13:33:28 +00:00
|
|
|
check_ltdl_initialization();
|
2004-11-18 04:33:39 +00:00
|
|
|
|
2004-11-29 13:33:28 +00:00
|
|
|
lt_dlhandle a_handle = lt_dlopen(filename);
|
2004-11-18 04:33:39 +00:00
|
|
|
|
2004-11-29 13:33:28 +00:00
|
|
|
if (a_handle == 0)
|
|
|
|
a_handle = lt_dlopenext(filename);
|
2004-11-18 04:33:39 +00:00
|
|
|
|
2004-11-29 13:33:28 +00:00
|
|
|
if (a_handle == 0)
|
|
|
|
throw std::string("Can't open :") + filename + ": " + lt_dlerror();
|
|
|
|
|
|
|
|
handle = a_handle;
|
|
|
|
OpenedHandles.push_back(a_handle);
|
2004-11-18 04:33:39 +00:00
|
|
|
}
|
For PR797:
Final commit for this bug. This removes the last EH holdouts in LLVM
and turns off exception support by using the -fno-exceptions option. This
leads to the following reduction in library and executable sizes:
DEBUG BUILD RELEASE BUILD
before after delta before after delta
lib 162,328K 157,616K 4,712 17,864K 16,416K 1,448K
bin 571,444K 557,156K 14,288 63,296K 56,996K 6,300K
Debug Improvement: 19,000K (2.59%)
Release Improvement: 7,748K (9.55%)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29882 91177308-0d34-0410-b5e6-96231b3b80d8
2006-08-25 19:54:53 +00:00
|
|
|
*/
|
2004-11-18 04:33:39 +00:00
|
|
|
|
|
|
|
DynamicLibrary::~DynamicLibrary() {
|
2004-11-29 13:33:28 +00:00
|
|
|
lt_dlhandle a_handle = (lt_dlhandle) handle;
|
|
|
|
if (a_handle) {
|
|
|
|
lt_dlclose(a_handle);
|
|
|
|
|
|
|
|
for (std::vector<lt_dlhandle>::iterator I = OpenedHandles.begin(),
|
|
|
|
E = OpenedHandles.end(); I != E; ++I) {
|
|
|
|
if (*I == a_handle) {
|
|
|
|
// Note: don't use the swap/pop_back trick here. Order is important.
|
|
|
|
OpenedHandles.erase(I);
|
2006-05-12 18:13:11 +00:00
|
|
|
return;
|
2004-11-29 13:33:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-11-18 04:33:39 +00:00
|
|
|
}
|
|
|
|
|
2006-07-07 17:12:36 +00:00
|
|
|
bool DynamicLibrary::LoadLibraryPermanently(const char *Filename,
|
|
|
|
std::string *ErrMsg) {
|
2004-11-29 13:33:28 +00:00
|
|
|
check_ltdl_initialization();
|
2006-07-07 17:12:36 +00:00
|
|
|
lt_dlhandle a_handle = lt_dlopen(Filename);
|
2004-11-18 04:33:39 +00:00
|
|
|
|
2004-11-29 13:33:28 +00:00
|
|
|
if (a_handle == 0)
|
2006-07-07 17:12:36 +00:00
|
|
|
a_handle = lt_dlopenext(Filename);
|
2004-11-18 04:33:39 +00:00
|
|
|
|
2006-07-07 17:12:36 +00:00
|
|
|
if (a_handle == 0) {
|
|
|
|
if (ErrMsg)
|
|
|
|
*ErrMsg = std::string("Can't open :") +
|
|
|
|
(Filename ? Filename : "<current process>") + ": " + lt_dlerror();
|
|
|
|
return true;
|
|
|
|
}
|
2004-11-29 13:33:28 +00:00
|
|
|
|
|
|
|
lt_dlmakeresident(a_handle);
|
|
|
|
|
|
|
|
OpenedHandles.push_back(a_handle);
|
2006-07-07 17:12:36 +00:00
|
|
|
return false;
|
2004-11-18 04:33:39 +00:00
|
|
|
}
|
|
|
|
|
2004-11-29 13:33:28 +00:00
|
|
|
void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) {
|
|
|
|
check_ltdl_initialization();
|
2006-01-30 04:33:51 +00:00
|
|
|
|
|
|
|
// First check symbols added via AddSymbol().
|
|
|
|
std::map<std::string, void *>::iterator I = g_symbols.find(symbolName);
|
|
|
|
if (I != g_symbols.end())
|
|
|
|
return I->second;
|
|
|
|
|
|
|
|
// Now search the libraries.
|
2004-11-29 13:33:28 +00:00
|
|
|
for (std::vector<lt_dlhandle>::iterator I = OpenedHandles.begin(),
|
|
|
|
E = OpenedHandles.end(); I != E; ++I) {
|
|
|
|
lt_ptr ptr = lt_dlsym(*I, symbolName);
|
|
|
|
if (ptr)
|
|
|
|
return ptr;
|
|
|
|
}
|
2004-12-03 23:02:42 +00:00
|
|
|
|
|
|
|
// If this is darwin, it has some funky issues, try to solve them here. Some
|
|
|
|
// important symbols are marked 'private external' which doesn't allow
|
|
|
|
// SearchForAddressOfSymbol to find them. As such, we special case them here,
|
|
|
|
// there is only a small handful of them.
|
|
|
|
#ifdef __APPLE__
|
|
|
|
{
|
2004-12-04 04:17:20 +00:00
|
|
|
#define EXPLICIT_SYMBOL(SYM) \
|
|
|
|
extern void *SYM; if (!strcmp(symbolName, #SYM)) return &SYM
|
|
|
|
EXPLICIT_SYMBOL(__ashldi3);
|
|
|
|
EXPLICIT_SYMBOL(__ashrdi3);
|
|
|
|
EXPLICIT_SYMBOL(__cmpdi2);
|
|
|
|
EXPLICIT_SYMBOL(__divdi3);
|
|
|
|
EXPLICIT_SYMBOL(__eprintf);
|
|
|
|
EXPLICIT_SYMBOL(__fixdfdi);
|
|
|
|
EXPLICIT_SYMBOL(__fixsfdi);
|
|
|
|
EXPLICIT_SYMBOL(__fixunsdfdi);
|
|
|
|
EXPLICIT_SYMBOL(__fixunssfdi);
|
|
|
|
EXPLICIT_SYMBOL(__floatdidf);
|
|
|
|
EXPLICIT_SYMBOL(__floatdisf);
|
|
|
|
EXPLICIT_SYMBOL(__lshrdi3);
|
|
|
|
EXPLICIT_SYMBOL(__moddi3);
|
|
|
|
EXPLICIT_SYMBOL(__udivdi3);
|
|
|
|
EXPLICIT_SYMBOL(__umoddi3);
|
|
|
|
#undef EXPLICIT_SYMBOL
|
2004-12-03 23:02:42 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-11-18 04:33:39 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-11-29 13:33:28 +00:00
|
|
|
void *DynamicLibrary::GetAddressOfSymbol(const char *symbolName) {
|
|
|
|
assert(handle != 0 && "Invalid DynamicLibrary handle");
|
|
|
|
return lt_dlsym((lt_dlhandle) handle, symbolName);
|
|
|
|
}
|
2004-11-18 04:33:39 +00:00
|
|
|
|
2004-12-24 16:26:47 +00:00
|
|
|
#endif // LLVM_ON_WIN32
|
2006-07-26 16:55:39 +00:00
|
|
|
|
|
|
|
DEFINING_FILE_FOR(SystemDynamicLibrary)
|