summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2008-03-13 16:55:34 +0000
committerDevang Patel <dpatel@apple.com>2008-03-13 16:55:34 +0000
commitaf305d23426ee2af8de429a07c3f558175f07d90 (patch)
treef76527c6b15bb338b9f14b5dce530f01c2edbdf4 /llvm
parent1fdd0a480e41ffd55ed48d73bb479f4bd6b2a760 (diff)
downloadbcm5719-llvm-af305d23426ee2af8de429a07c3f558175f07d90.tar.gz
bcm5719-llvm-af305d23426ee2af8de429a07c3f558175f07d90.zip
Remove unused GetAddressOfSymbol()
Thanks Daniel Dunbar! llvm-svn: 48340
Diffstat (limited to 'llvm')
-rw-r--r--llvm/include/llvm/System/DynamicLibrary.h27
-rw-r--r--llvm/lib/System/DynamicLibrary.cpp7
2 files changed, 3 insertions, 31 deletions
diff --git a/llvm/include/llvm/System/DynamicLibrary.h b/llvm/include/llvm/System/DynamicLibrary.h
index 4ac08d0f53f..5da0ea2f484 100644
--- a/llvm/include/llvm/System/DynamicLibrary.h
+++ b/llvm/include/llvm/System/DynamicLibrary.h
@@ -38,19 +38,13 @@ namespace sys {
public:
/// Construct a DynamicLibrary that represents the currently executing
/// program. The program must have been linked with -export-dynamic or
- /// -dlopen self for this to work. Any symbols retrieved with the
- /// GetAddressOfSymbol function will refer to the program not to any
- /// library.
+ /// -dlopen self for this to work.
/// @throws std::string indicating why the program couldn't be opened.
/// @brief Open program as dynamic library.
DynamicLibrary();
/// After destruction, the symbols of the library will no longer be
- /// available to the program. It is important to make sure the lifespan
- /// of a DynamicLibrary exceeds the lifetime of the pointers returned
- /// by the GetAddressOfSymbol otherwise the program may walk off into
- /// uncharted territory.
- /// @see GetAddressOfSymbol.
+ /// available to the program.
/// @brief Closes the DynamicLibrary
~DynamicLibrary();
@@ -92,26 +86,9 @@ namespace sys {
}
/// @}
- /// @name Accessors
- /// @{
- public:
- /// Looks up a \p symbolName in the DynamicLibrary and returns its address
- /// if it exists. If the symbol does not exist, returns (void*)0.
- /// @returns the address of the symbol or 0.
- /// @brief Get the address of a symbol in the DynamicLibrary.
- void* GetAddressOfSymbol(const char* symbolName);
-
- /// @brief Convenience function for C++ophiles.
- void* GetAddressOfSymbol(const std::string& symbolName) {
- return GetAddressOfSymbol(symbolName.c_str());
- }
-
- /// @}
/// @name Implementation
/// @{
protected:
- void* handle; // Opaque handle for information about the library
-
DynamicLibrary(const DynamicLibrary&); ///< Do not implement
DynamicLibrary& operator=(const DynamicLibrary&); ///< Do not implement
/// @}
diff --git a/llvm/lib/System/DynamicLibrary.cpp b/llvm/lib/System/DynamicLibrary.cpp
index bdbcbd406fd..7af718d490d 100644
--- a/llvm/lib/System/DynamicLibrary.cpp
+++ b/llvm/lib/System/DynamicLibrary.cpp
@@ -50,7 +50,7 @@ using namespace llvm::sys;
//static std::vector<lt_dlhandle> OpenedHandles;
static std::vector<void *> OpenedHandles;
-DynamicLibrary::DynamicLibrary() : handle(0) {}
+DynamicLibrary::DynamicLibrary() {}
DynamicLibrary::~DynamicLibrary() {
while(!OpenedHandles.empty()) {
@@ -158,11 +158,6 @@ void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) {
return 0;
}
-void *DynamicLibrary::GetAddressOfSymbol(const char *symbolName) {
- assert(handle != 0 && "Invalid DynamicLibrary handle");
- return dlsym(handle, symbolName);
-}
-
#endif // LLVM_ON_WIN32
DEFINING_FILE_FOR(SystemDynamicLibrary)
OpenPOWER on IntegriCloud