#
59e5a644 |
| 21-Feb-2017 |
Vassil Vassilev <v.g.vassilev@gmail.com> |
Do not leak OpenedHandles.
Reviewed by Vedant Kumar (D30178)
llvm-svn: 295737
|
Revision tags: llvmorg-4.0.0-rc2, llvmorg-4.0.0-rc1, llvmorg-3.9.1, llvmorg-3.9.1-rc3, llvmorg-3.9.1-rc2 |
|
#
5d92bc5b |
| 30-Nov-2016 |
Pavel Labath <labath@google.com> |
[Support] Use HAVE_DLOPEN to guard dlopen(3) usage
Summary: The usage was previously guarded by HAVE_DLFCN. This breaks on Android with LLVM_BUILD_STATIC as the platform does not provide a static ve
[Support] Use HAVE_DLOPEN to guard dlopen(3) usage
Summary: The usage was previously guarded by HAVE_DLFCN. This breaks on Android with LLVM_BUILD_STATIC as the platform does not provide a static version of libdl. Using HAVE_DLOPEN fixes it as the code will only get used if we are actually able to link an executable using dlopen.
Reviewers: rafael, beanz
Subscribers: tberghammer, danalbert, llvm-commits
Differential Revision: https://reviews.llvm.org/D26504
llvm-svn: 288246
show more ...
|
Revision tags: llvmorg-3.9.1-rc1, llvmorg-3.9.0, llvmorg-3.9.0-rc3, llvmorg-3.9.0-rc2, llvmorg-3.9.0-rc1, llvmorg-3.8.1, llvmorg-3.8.1-rc1, llvmorg-3.8.0, llvmorg-3.8.0-rc3, llvmorg-3.8.0-rc2, llvmorg-3.8.0-rc1, llvmorg-3.7.1, llvmorg-3.7.1-rc2, llvmorg-3.7.1-rc1, llvmorg-3.7.0, llvmorg-3.7.0-rc4, llvmorg-3.7.0-rc3, studio-1.4, llvmorg-3.7.0-rc2, llvmorg-3.7.0-rc1, llvmorg-3.6.2, llvmorg-3.6.2-rc1 |
|
#
af79f3db |
| 09-Jun-2015 |
Eli Bendersky <eliben@google.com> |
Add more wrappers for symbol APIs to the C API.
This represents some of the functionality we expose in the llvmlite Python binding.
Patch by Antoine Pitrou
Differential Revision: http://reviews.ll
Add more wrappers for symbol APIs to the C API.
This represents some of the functionality we expose in the llvmlite Python binding.
Patch by Antoine Pitrou
Differential Revision: http://reviews.llvm.org/D10222
llvm-svn: 239411
show more ...
|
Revision tags: llvmorg-3.6.1, llvmorg-3.6.1-rc1, llvmorg-3.5.2, llvmorg-3.5.2-rc1, llvmorg-3.6.0, llvmorg-3.6.0-rc4, llvmorg-3.6.0-rc3, llvmorg-3.6.0-rc2, llvmorg-3.6.0-rc1, llvmorg-3.5.1, llvmorg-3.5.1-rc2, llvmorg-3.5.1-rc1, llvmorg-3.5.0, llvmorg-3.5.0-rc4 |
|
#
74a46c24 |
| 27-Aug-2014 |
Zachary Turner <zturner@google.com> |
Revert "Limit the symbol search in DynamicLibrary to the module that was opened."
This reverts commit r216563, which breaks lli's dynamic symbol resolution.
llvm-svn: 216569
|
#
0611d014 |
| 27-Aug-2014 |
Zachary Turner <zturner@google.com> |
Limit the symbol search in DynamicLibrary to the module that was opened.
Differential Revision: http://reviews.llvm.org/D5030
Reviewed By: Reid Kleckner, Rafael Espindola
llvm-svn: 216563
|
Revision tags: llvmorg-3.5.0-rc3, llvmorg-3.5.0-rc2, llvmorg-3.5.0-rc1 |
|
#
cfe341f5 |
| 20-Jun-2014 |
Hans Wennborg <hans@hanshq.net> |
Fix .cpp files claiming to be header files
llvm-svn: 211334
|
Revision tags: llvmorg-3.4.2, llvmorg-3.4.2-rc1, llvmorg-3.4.1, llvmorg-3.4.1-rc2, llvmorg-3.4.1-rc1 |
|
#
8d399f87 |
| 09-Apr-2014 |
Craig Topper <craig.topper@gmail.com> |
[C++11] Replace some comparisons with 'nullptr' with simple boolean checks to reduce verbosity.
llvm-svn: 205829
|
#
c10719f5 |
| 07-Apr-2014 |
Craig Topper <craig.topper@gmail.com> |
[C++11] Make use of 'nullptr' in the Support library.
llvm-svn: 205697
|
#
8a8cd2ba |
| 07-Jan-2014 |
Chandler Carruth <chandlerc@gmail.com> |
Re-sort all of the includes with ./utils/sort_includes.py so that subsequent changes are easier to review. About to fix some layering issues, and wanted to separate out the necessary churn.
Also com
Re-sort all of the includes with ./utils/sort_includes.py so that subsequent changes are easier to review. About to fix some layering issues, and wanted to separate out the necessary churn.
Also comment and sink the include of "Windows.h" in three .inc files to match the usage in Memory.inc.
llvm-svn: 198685
show more ...
|
Revision tags: llvmorg-3.4.0, llvmorg-3.4.0-rc3, llvmorg-3.4.0-rc2, llvmorg-3.4.0-rc1 |
|
#
505d2408 |
| 13-Nov-2013 |
Benjamin Kramer <benny.kra@googlemail.com> |
Make sure LLVMLoadLibraryPermanently gets an extern "C" symbol.
Otherwise it's impossible to use it. Also don't include C++ headers in a C header.
llvm-svn: 194581
|
#
62fdeb8e |
| 06-Nov-2013 |
Peter Zotov <whitequark@whitequark.org> |
Add newline at EOF in DynamicLibrary.cpp
llvm-svn: 194144
|
#
671fe2ee |
| 06-Nov-2013 |
Peter Zotov <whitequark@whitequark.org> |
[llvm-c] Specify explicit namespace in LLVMLoadLibraryPermanently
Presence of using namespace llvm depended on several #ifdef's, and this broke the build on mswin32.
llvm-svn: 194142
|
#
34ddbf1a |
| 06-Nov-2013 |
Peter Zotov <whitequark@whitequark.org> |
[llvm-c] Expose LLVMLoadLibraryPermanently
Original patch by Chris Wailes
llvm-svn: 194139
|
#
57093e88 |
| 18-Sep-2013 |
Filip Pizlo <fpizlo@apple.com> |
Make DynamicLibrary use ManagedStatic. This is pretty simple and should just work as advertised - but it does have the caveat that calls to DynamicLibrary::AddSymbol will "reset" if you shutdown ll
Make DynamicLibrary use ManagedStatic. This is pretty simple and should just work as advertised - but it does have the caveat that calls to DynamicLibrary::AddSymbol will "reset" if you shutdown llvm and try to come back for seconds. This is a subtle behavior change, but I'm assuming that nobody is affected by it.
llvm-svn: 190946
show more ...
|
#
591f1541 |
| 18-Sep-2013 |
Filip Pizlo <fpizlo@apple.com> |
Revert r190921. It broke Windows.
I'll roll it back in when I have a chance to look at it in detail.
llvm-svn: 190923
|
#
4389ee38 |
| 18-Sep-2013 |
Filip Pizlo <fpizlo@apple.com> |
Make DynamicLibrary use ManagedStatic. This is pretty simple and should just work as advertised - but it does have the caveat that calls to DynamicLibrary::AddSymbol will "reset" if you shutdown ll
Make DynamicLibrary use ManagedStatic. This is pretty simple and should just work as advertised - but it does have the caveat that calls to DynamicLibrary::AddSymbol will "reset" if you shutdown llvm and try to come back for seconds. This is a subtle behavior change, but I'm assuming that nobody is affected by it.
llvm-svn: 190921
show more ...
|
Revision tags: llvmorg-3.3.1-rc1, llvmorg-3.3.0, llvmorg-3.3.0-rc3, llvmorg-3.3.0-rc2, llvmorg-3.3.0-rc1 |
|
#
226fea5b |
| 13-Jan-2013 |
Dmitri Gribenko <gribozavr@gmail.com> |
Remove redundant 'llvm::' qualifications
llvm-svn: 172358
|
Revision tags: llvmorg-3.2.0, llvmorg-3.2.0-rc3 |
|
#
ed0881b2 |
| 03-Dec-2012 |
Chandler Carruth <chandlerc@gmail.com> |
Use the new script to sort the includes of every file under lib.
Sooooo many of these had incorrect or strange main module includes. I have manually inspected all of these, and fixed the main module
Use the new script to sort the includes of every file under lib.
Sooooo many of these had incorrect or strange main module includes. I have manually inspected all of these, and fixed the main module include to be the nearest plausible thing I could find. If you own or care about any of these source files, I encourage you to take some time and check that these edits were sensible. I can't have broken anything (I strictly added headers, and reordered them, never removed), but they may not be the headers you'd really like to identify as containing the API being implemented.
Many forward declarations and missing includes were added to a header files to allow them to parse cleanly when included first. The main module rule does in fact have its merits. =]
llvm-svn: 169131
show more ...
|
Revision tags: llvmorg-3.2.0-rc2, llvmorg-3.2.0-rc1 |
|
#
c439a426 |
| 04-Sep-2012 |
Evgeniy Stepanov <eugeni.stepanov@gmail.com> |
Fix Android build of gtest and lib/Support.
llvm-svn: 163131
|
Revision tags: llvmorg-3.1.0, llvmorg-3.1.0-rc3, llvmorg-3.1.0-rc2, llvmorg-3.1.0-rc1, llvmorg-3.0.0, llvmorg-3.0.0-rc4, llvmorg-3.0.0-rc3, llvmorg-3.0.0-rc2, llvmorg-3.0.0-rc1 |
|
#
5765f4c2 |
| 22-Aug-2011 |
Jordy Rose <jediknil@belkadan.com> |
Make DynamicLibrary thread-safe w/r/t call to dlerror() after dlopen(). PR10718
llvm-svn: 138260
|
#
04bc405a |
| 17-Aug-2011 |
Jordy Rose <jediknil@belkadan.com> |
Static fields require an out-of-line definition. Fix DynamicLibrary for real.
llvm-svn: 137844
|
#
a19917da |
| 17-Aug-2011 |
Jordy Rose <jediknil@belkadan.com> |
Use DynamicLibrary instances as a way to get symbols from a specific library. Preparation for upcoming (preliminary) support for plugins for the static analyzer.
llvm-svn: 137791
|
Revision tags: llvmorg-2.9.0, llvmorg-2.9.0-rc3, llvmorg-2.9.0-rc2, llvmorg-2.9.0-rc1 |
|
#
10e1b56e |
| 07-Dec-2010 |
Owen Anderson <resistor@mac.com> |
Don't leak the mutex when loading dynamic libraries.
llvm-svn: 121119
|
#
447762da |
| 29-Nov-2010 |
Michael J. Spencer <bigcheesegs@gmail.com> |
Merge System into Support.
llvm-svn: 120298
|