aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/DynamicLibrary.cpp
AgeCommit message (Expand)AuthorFilesLines
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth1-4/+3
2018-04-29s/LLVM_ON_WIN32/_WIN32/, llvmNico Weber1-3/+3
2017-07-12Allow clients to specify search order of DynamicLibraries.Frederich Munch1-11/+32
2017-05-26Fix the ManagedStatic list ordering when using DynamicLibrary::addPermanentLi...Frederich Munch1-3/+8
2017-04-27Refactor DynamicLibrary so searching for a symbol will have a defined order andFrederich Munch1-121/+116
2017-04-24Revert "Refactor DynamicLibrary so searching for a symbol will have a defined...Frederich Munch1-116/+121
2017-04-24Refactor DynamicLibrary so searching for a symbol will have a defined order andFrederich Munch1-121/+116
2017-04-24Revert "Refactor DynamicLibrary so searching for a symbol will have a defined...Frederich Munch1-116/+121
2017-04-24Fix warning converting from boolean to pointer introduced in r301153.Frederich Munch1-1/+1
2017-04-24Fix warning converting from void* to boolean introduced in r301153.Frederich Munch1-1/+1
2017-04-24Refactor DynamicLibrary so searching for a symbol will have a defined order andFrederich Munch1-121/+116
2017-04-21[Test commit] Remove extra newline.Frederich Munch1-1/+0
2017-03-02Reland r296442 with modifications reverted in r296463.Vassil Vassilev1-0/+12
2017-02-28Revert r296442 (and r296443), "Allow externally dlopen-ed libraries to be reg...NAKAMURA Takumi1-25/+1
2017-02-28Allow externally dlopen-ed libraries to be registered as permanent libraries.Vassil Vassilev1-1/+25
2017-02-21Do not leak OpenedHandles.Vassil Vassilev1-7/+2
2016-11-30[Support] Use HAVE_DLOPEN to guard dlopen(3) usagePavel Labath1-2/+2
2015-06-09Add more wrappers for symbol APIs to the C API.Eli Bendersky1-0/+9
2014-08-27Revert "Limit the symbol search in DynamicLibrary to the module that was open...Zachary Turner1-9/+2
2014-08-27Limit the symbol search in DynamicLibrary to the module that was opened.Zachary Turner1-2/+9
2014-06-20Fix .cpp files claiming to be header filesHans Wennborg1-1/+1
2014-04-09[C++11] Replace some comparisons with 'nullptr' with simple boolean checks to...Craig Topper1-3/+3
2014-04-07[C++11] Make use of 'nullptr' in the Support library.Craig Topper1-5/+5
2014-01-07Re-sort all of the includes with ./utils/sort_includes.py so thatChandler Carruth1-2/+2
2013-11-13Make sure LLVMLoadLibraryPermanently gets an extern "C" symbol.Benjamin Kramer1-1/+1
2013-11-06Add newline at EOF in DynamicLibrary.cppPeter Zotov1-1/+1
2013-11-06[llvm-c] Specify explicit namespace in LLVMLoadLibraryPermanentlyPeter Zotov1-1/+1
2013-11-06[llvm-c] Expose LLVMLoadLibraryPermanentlyPeter Zotov1-0/+9
2013-09-18Make DynamicLibrary use ManagedStatic. This is pretty simple and should just ...Filip Pizlo1-25/+7
2013-09-18Revert r190921. It broke Windows.Filip Pizlo1-7/+25
2013-09-18Make DynamicLibrary use ManagedStatic. This is pretty simple and should just ...Filip Pizlo1-25/+7
2013-01-13Remove redundant 'llvm::' qualificationsDmitri Gribenko1-1/+1
2012-12-03Use the new script to sort the includes of every file under lib.Chandler Carruth1-3/+3
2012-09-04Fix Android build of gtest and lib/Support.Evgeniy Stepanov1-1/+1
2011-08-22Make DynamicLibrary thread-safe w/r/t call to dlerror() after dlopen(). PR10718Jordy Rose1-1/+2
2011-08-17Static fields require an out-of-line definition. Fix DynamicLibrary for real.Jordy Rose1-0/+2
2011-08-17Use DynamicLibrary instances as a way to get symbols from a specific library....Jordy Rose1-41/+57
2010-12-07Don't leak the mutex when loading dynamic libraries.Owen Anderson1-12/+5
2010-11-29Merge System into Support.Michael J. Spencer1-0/+177