| Commit message (Expand) | Author | Age | Files | Lines |
* | [Support] Replace sys::Mutex with their standard equivalents. | Benjamin Kramer | 2019-08-19 | 1 | -6/+5 |
* | Replace llvm::MutexGuard/UniqueLock with their standard equivalents | Benjamin Kramer | 2019-08-07 | 1 | -3/+3 |
* | Update the file headers across all of the LLVM projects in the monorepo | Chandler Carruth | 2019-01-19 | 1 | -4/+3 |
* | Remove trailing space | Fangrui Song | 2018-07-30 | 1 | -3/+3 |
* | [NFC] Remove inaccurate comment | JF Bastien | 2018-05-12 | 1 | -3/+0 |
* | Revamp llvm::once_flag to be closer to std::once_flag | Kamil Rytarowski | 2017-02-05 | 1 | -1/+1 |
* | [ManagedStatic] Reimplement double-checked locking with std::atomic. | Benjamin Kramer | 2016-06-29 | 1 | -12/+3 |
* | [LPM] Reinstate r271781 which reinstated r271652 to replace the | Chandler Carruth | 2016-06-04 | 1 | -1/+1 |
* | [LPM] Revert r271781 which was a re-commit of r271652. | Chandler Carruth | 2016-06-04 | 1 | -1/+1 |
* | [LPM] Reinstate r271652 to replace the CALL_ONCE_... macro in the legacy | Chandler Carruth | 2016-06-04 | 1 | -1/+1 |
* | This is yet another attempt to re-instate r220932 as discussed in | Chandler Carruth | 2016-06-02 | 1 | -4/+11 |
* | Revert "Revert "Revert 220932.": "Removing the static initializer in ManagedS... | Mehdi Amini | 2016-05-14 | 1 | -11/+4 |
* | Revert "Revert 220932.": "Removing the static initializer in ManagedStatic.cp... | Mehdi Amini | 2016-05-14 | 1 | -4/+11 |
* | [NFC] Header cleanup | Mehdi Amini | 2016-04-18 | 1 | -1/+0 |
* | Support: Clean up TSan annotations. | Peter Collingbourne | 2015-08-18 | 1 | -0/+1 |
* | Revert 220932. | Jiangning Liu | 2014-11-05 | 1 | -11/+4 |
* | Removing the static initializer in ManagedStatic.cpp by using llvm_call_once ... | Chris Bieneman | 2014-10-30 | 1 | -4/+11 |
* | Revert r219638, (r219640 and r219676), "Removing the static destructor from M... | NAKAMURA Takumi | 2014-10-14 | 1 | -17/+6 |
* | Removing the static destructor from ManagedStatic.cpp by controlling the allo... | Chris Bieneman | 2014-10-13 | 1 | -6/+17 |
* | Fix the MinGW builder. Apparently std::call_once and | Zachary Turner | 2014-06-21 | 1 | -17/+10 |
* | Remove use of removed function, llvm_stop_multithreading | David Blaikie | 2014-06-19 | 1 | -2/+0 |
* | Kill the LLVM global lock. | Zachary Turner | 2014-06-19 | 1 | -3/+20 |
* | Revert r211066, 211067, 211068, 211069, 211070. | Zachary Turner | 2014-06-16 | 1 | -23/+5 |
* | Kill the LLVM global lock. | Zachary Turner | 2014-06-16 | 1 | -1/+22 |
* | Remove some code churn. | Zachary Turner | 2014-06-16 | 1 | -1/+1 |
* | Remove some more code out into a separate CL. | Zachary Turner | 2014-06-16 | 1 | -3/+1 |
* | Users of the llvm global mutex must now acquire it manually. | Zachary Turner | 2014-06-16 | 1 | -3/+2 |
* | Revert "Remove support for runtime multi-threading." | Zachary Turner | 2014-06-10 | 1 | -2/+4 |
* | Remove support for runtime multi-threading. | Zachary Turner | 2014-06-10 | 1 | -4/+2 |
* | ManagedStatic is never built with a null constructor, remove support for it. | David Blaikie | 2014-04-17 | 1 | -2/+3 |
* | [C++11] More 'nullptr' conversion. In some cases just using a boolean check i... | Craig Topper | 2014-04-15 | 1 | -1/+1 |
* | [C++11] Replace some comparisons with 'nullptr' with simple boolean checks to... | Craig Topper | 2014-04-09 | 1 | -1/+1 |
* | [C++11] Make use of 'nullptr' in the Support library. | Craig Topper | 2014-04-07 | 1 | -7/+7 |
* | Revert "[C++11] Replace LLVM atomics with std::atomic." | Benjamin Kramer | 2014-03-03 | 1 | -1/+2 |
* | [C++11] Replace LLVM atomics with std::atomic. | Benjamin Kramer | 2014-03-03 | 1 | -2/+1 |
* | Add support for tsan annotations (thread sanitizer, a valgrind-based tool). | Nick Lewycky | 2011-11-14 | 1 | -1/+7 |
* | Merge System into Support. | Michael J. Spencer | 2010-11-29 | 1 | -1/+1 |
* | Split the thread-related APIs out into their own file, and add a few more | Owen Anderson | 2009-06-16 | 1 | -20/+4 |
* | Untabification. | Bill Wendling | 2009-05-30 | 1 | -1/+1 |
* | Have llvm_start_multithreaded return a bool indicating whether multithreaded | Owen Anderson | 2009-05-20 | 1 | -2/+3 |
* | Add llvm_start_multithreaded(), which starts up the LLVM internals in thread-... | Owen Anderson | 2009-05-20 | 1 | -8/+45 |
* | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
* | Not all managedstatics need object pointers. | Chris Lattner | 2007-02-20 | 1 | -1/+1 |
* | Define this in the correct n/s | Chris Lattner | 2006-09-29 | 1 | -1/+1 |
* | new helper class to provide more explicit management of static ctor/dtors. | Chris Lattner | 2006-09-28 | 1 | -0/+53 |