[PATCH] Augment the C API
Eli Bendersky
eliben at google.com
Tue Jun 9 09:01:53 PDT 2015
REPOSITORY
rL LLVM
http://reviews.llvm.org/D10222
Files:
llvm/trunk/include/llvm-c/Support.h
llvm/trunk/lib/Support/DynamicLibrary.cpp
Index: llvm/trunk/include/llvm-c/Support.h
===================================================================
--- llvm/trunk/include/llvm-c/Support.h
+++ llvm/trunk/include/llvm-c/Support.h
@@ -58,6 +58,24 @@
void LLVMParseCommandLineOptions(int argc, const char *const *argv,
const char *Overview);
+/**
+ * This function will search through all previously loaded dynamic
+ * libraries for the symbol \p symbolName. If it is found, the address of
+ * that symbol is returned. If not, null is returned.
+ *
+ * @see sys::DynamicLibrary::SearchForAddressOfSymbol()
+ */
+void *LLVMSearchForAddressOfSymbol(const char *symbolName);
+
+/**
+ * This functions permanently adds the symbol \p symbolName with the
+ * value \p symbolValue. These symbols are searched before any
+ * libraries.
+ *
+ * @see sys::DynamicLibrary::AddSymbol()
+ */
+void LLVMAddSymbol(const char *symbolName, void *symbolValue);
+
#ifdef __cplusplus
}
#endif
Index: llvm/trunk/lib/Support/DynamicLibrary.cpp
===================================================================
--- llvm/trunk/lib/Support/DynamicLibrary.cpp
+++ llvm/trunk/lib/Support/DynamicLibrary.cpp
@@ -178,3 +178,12 @@
LLVMBool LLVMLoadLibraryPermanently(const char* Filename) {
return llvm::sys::DynamicLibrary::LoadLibraryPermanently(Filename);
}
+
+void *LLVMSearchForAddressOfSymbol(const char *symbolName) {
+ return llvm::sys::DynamicLibrary::SearchForAddressOfSymbol(symbolName);
+}
+
+void LLVMAddSymbol(const char *symbolName, void *symbolValue) {
+ return llvm::sys::DynamicLibrary::AddSymbol(symbolName, symbolValue);
+}
+
EMAIL PREFERENCES
http://reviews.llvm.org/settings/panel/emailpreferences/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D10222.27379.patch
Type: text/x-patch
Size: 1625 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150609/96a70fac/attachment.bin>
More information about the llvm-commits
mailing list