summaryrefslogtreecommitdiffstats
path: root/lib/Support/DynamicLibrary.cpp
Commit message (Expand)AuthorAgeFilesLines
* Allow clients to specify search order of DynamicLibraries.Frederich Munch2017-07-121-11/+32
* Fix the ManagedStatic list ordering when using DynamicLibrary::addPermanentLi...Frederich Munch2017-05-261-3/+8
* Refactor DynamicLibrary so searching for a symbol will have a defined order andFrederich Munch2017-04-271-121/+116
* Revert "Refactor DynamicLibrary so searching for a symbol will have a defined...Frederich Munch2017-04-241-116/+121
* Refactor DynamicLibrary so searching for a symbol will have a defined order andFrederich Munch2017-04-241-121/+116
* Revert "Refactor DynamicLibrary so searching for a symbol will have a defined...Frederich Munch2017-04-241-116/+121
* Fix warning converting from boolean to pointer introduced in r301153.Frederich Munch2017-04-241-1/+1
* Fix warning converting from void* to boolean introduced in r301153.Frederich Munch2017-04-241-1/+1
* Refactor DynamicLibrary so searching for a symbol will have a defined order andFrederich Munch2017-04-241-121/+116
* [Test commit] Remove extra newline.Frederich Munch2017-04-211-1/+0
* Reland r296442 with modifications reverted in r296463.Vassil Vassilev2017-03-021-0/+12
* Revert r296442 (and r296443), "Allow externally dlopen-ed libraries to be reg...NAKAMURA Takumi2017-02-281-25/+1
* Allow externally dlopen-ed libraries to be registered as permanent libraries.Vassil Vassilev2017-02-281-1/+25
* Do not leak OpenedHandles.Vassil Vassilev2017-02-211-7/+2
* [Support] Use HAVE_DLOPEN to guard dlopen(3) usagePavel Labath2016-11-301-2/+2
* Add more wrappers for symbol APIs to the C API.Eli Bendersky2015-06-091-0/+9
* Revert "Limit the symbol search in DynamicLibrary to the module that was open...Zachary Turner2014-08-271-9/+2
* Limit the symbol search in DynamicLibrary to the module that was opened.Zachary Turner2014-08-271-2/+9
* Fix .cpp files claiming to be header filesHans Wennborg2014-06-201-1/+1
* [C++11] Replace some comparisons with 'nullptr' with simple boolean checks to...Craig Topper2014-04-091-3/+3
* [C++11] Make use of 'nullptr' in the Support library.Craig Topper2014-04-071-5/+5
* Re-sort all of the includes with ./utils/sort_includes.py so thatChandler Carruth2014-01-071-2/+2
* Make sure LLVMLoadLibraryPermanently gets an extern "C" symbol.Benjamin Kramer2013-11-131-1/+1
* Add newline at EOF in DynamicLibrary.cppPeter Zotov2013-11-061-1/+1
* [llvm-c] Specify explicit namespace in LLVMLoadLibraryPermanentlyPeter Zotov2013-11-061-1/+1
* [llvm-c] Expose LLVMLoadLibraryPermanentlyPeter Zotov2013-11-061-0/+9
* Make DynamicLibrary use ManagedStatic. This is pretty simple and should just ...Filip Pizlo2013-09-181-25/+7
* Revert r190921. It broke Windows.Filip Pizlo2013-09-181-7/+25
* Make DynamicLibrary use ManagedStatic. This is pretty simple and should just ...Filip Pizlo2013-09-181-25/+7
* Remove redundant 'llvm::' qualificationsDmitri Gribenko2013-01-131-1/+1
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-3/+3
* Fix Android build of gtest and lib/Support.Evgeniy Stepanov2012-09-041-1/+1
* Make DynamicLibrary thread-safe w/r/t call to dlerror() after dlopen(). PR10718Jordy Rose2011-08-221-1/+2
* Static fields require an out-of-line definition. Fix DynamicLibrary for real.Jordy Rose2011-08-171-0/+2
* Use DynamicLibrary instances as a way to get symbols from a specific library....Jordy Rose2011-08-171-41/+57
* Don't leak the mutex when loading dynamic libraries.Owen Anderson2010-12-071-12/+5
* Merge System into Support.Michael J. Spencer2010-11-291-0/+177