| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix an inconsistency in treatment of trailing / in path::const_iterator | Ben Langmuir | 2014-03-05 | 1 | -0/+29 |
* | [C++11] Add overloads for externally used OwningPtr functions. | Ahmed Charles | 2014-03-05 | 1 | -1/+1 |
* | [C++11] Replace OwningPtr::take() with OwningPtr::release(). | Ahmed Charles | 2014-03-05 | 3 | -41/+41 |
* | [C++11] Add release() to OwningPtr. | Ahmed Charles | 2014-03-05 | 1 | -0/+18 |
* | Hey, we can stop depending on the IR library from the Support unittests | Chandler Carruth | 2014-03-04 | 1 | -1/+0 |
* | [Modules] Move the LeakDetector header into the IR library where the | Chandler Carruth | 2014-03-04 | 3 | -3/+3 |
* | [Modules] Move the ConstantRange class into the IR library. This is | Chandler Carruth | 2014-03-04 | 3 | -3/+3 |
* | [Modules] Move the NoFolder into the IR library as it creates | Chandler Carruth | 2014-03-04 | 2 | -2/+2 |
* | [Modules] Move ValueMap to the IR library. While this class does not | Chandler Carruth | 2014-03-04 | 1 | -1/+1 |
* | [Modules] Move ValueHandle into the IR library where Value itself lives. | Chandler Carruth | 2014-03-04 | 4 | -4/+4 |
* | [Modules] Move the LLVM IR pattern match header into the IR library, it | Chandler Carruth | 2014-03-04 | 1 | -1/+1 |
* | [Modules] Move InstIterator out of the Support library, where it had no | Chandler Carruth | 2014-03-04 | 1 | -1/+1 |
* | [cleanup] Re-sort all the includes with utils/sort_includes.py. | Chandler Carruth | 2014-03-04 | 2 | -3/+3 |
* | Cleaning up a bunch of pre-Visual C++ 2012 build hacks. | Yaron Keren | 2014-03-04 | 2 | -15/+0 |
* | Give APInt move semantics. | Benjamin Kramer | 2014-03-02 | 2 | -0/+45 |
* | [C++11] Replace LLVM_STATIC_ASSERT with static_assert, we now have | Chandler Carruth | 2014-03-02 | 1 | -2/+1 |
* | [C++11] Replace llvm::next and llvm::prior with std::next and std::prev. | Benjamin Kramer | 2014-03-02 | 3 | -46/+46 |
* | Switch all uses of LLVM_OVERRIDE to just use 'override' directly. | Craig Topper | 2014-03-02 | 1 | -1/+1 |
* | [C++11] Switch all uses of the llvm_move macro to use std::move | Chandler Carruth | 2014-03-02 | 3 | -3/+3 |
* | [C++11] Add support for OwningPtr<T> to be converted to and from | Chandler Carruth | 2014-03-02 | 1 | -0/+78 |
* | [C++11] Add unit tests for OwningPtr<T> in preparation for changes to make | Chandler Carruth | 2014-03-02 | 2 | -0/+178 |
* | [C++11] Remove LLVM_HAS_CXX11_STDLIB now that it is just on. | Chandler Carruth | 2014-03-01 | 1 | -6/+0 |
* | [C++11] Remove uses of LLVM_HAS_RVALUE_REFERENCES from the unittests. | Chandler Carruth | 2014-03-01 | 6 | -46/+0 |
* | With rpaths being set correctly, SHLIBPATH_VAR is not needed anymore. | Rafael Espindola | 2014-02-28 | 1 | -4/+1 |
* | Correctly set rpath for unittests. | Rafael Espindola | 2014-02-28 | 1 | -0/+6 |
* | Use the overloaded std::abs rather than C's abs(int) to address Clang's -Wabs... | David Blaikie | 2014-02-26 | 1 | -1/+1 |
* | fix crash in SmallDenseMap copy constructor | Duncan P. N. Exon Smith | 2014-02-25 | 1 | -0/+28 |
* | Fix resetting the DataLayout in a Module. | Rafael Espindola | 2014-02-25 | 1 | -0/+8 |
* | Make DataLayout a plain object, not a pass. | Rafael Espindola | 2014-02-25 | 1 | -10/+10 |
* | Disable old JIT unittests for AARch64 | Renato Golin | 2014-02-25 | 3 | -5/+7 |
* | Disable an MCJIT test on older Darwins until we have a better interface. | Andrew Trick | 2014-02-24 | 1 | -0/+4 |
* | Replace the F_Binary flag with a F_Text one. | Rafael Espindola | 2014-02-24 | 1 | -3/+3 |
* | Fix windows unittest I missed in the raw_fd_ostream constructor change. | Rafael Espindola | 2014-02-24 | 1 | -1/+1 |
* | Simplify remove, create_directory and create_directories. | Rafael Espindola | 2014-02-23 | 2 | -20/+28 |
* | Move get[S|U]LEB128Size() to LEB128.h. | Logan Chien | 2014-02-22 | 2 | -0/+312 |
* | This test was failing on non-X86-64 platforms because stackmaps only work on ... | Filip Pizlo | 2014-02-21 | 1 | -0/+9 |
* | Stackmaps are used for OSR exits, which is a custom kind of unwinding. Hence,... | Filip Pizlo | 2014-02-20 | 3 | -1/+92 |
* | Add support for hashing attributes with DW_FORM_block. This required | Eric Christopher | 2014-02-20 | 1 | -0/+55 |
* | This tests DW_FORM_sdata, not DW_FORM_block. Make the test say so. | Eric Christopher | 2014-02-20 | 1 | -1/+1 |
* | Fix commit thinkos from splitting out patches. | Eric Christopher | 2014-02-20 | 1 | -3/+1 |
* | Add support for hashing DW_FORM_sdata and a small testcase. | Eric Christopher | 2014-02-20 | 1 | -0/+47 |
* | Format. | Eric Christopher | 2014-02-20 | 1 | -4/+8 |
* | Remove tautological test line (unsigneds are always >=0). | Lang Hames | 2014-02-15 | 1 | -1/+0 |
* | Tweak an _MSC_VER ifdef to use typename with clang in a unittest | Reid Kleckner | 2014-02-13 | 1 | -1/+1 |
* | Fix misleading comment. | Lang Hames | 2014-02-13 | 1 | -1/+1 |
* | The new MCJIT C-API unit test is generating objects without constant data | Lang Hames | 2014-02-13 | 1 | -1/+1 |
* | Extend RTDyld API to enable optionally precomputing the total amount of memory | Lang Hames | 2014-02-12 | 1 | -1/+132 |
* | Remove TimeValue::toPosixTime() -- it is buggy, semantics are unclear, and its | Dmitri Gribenko | 2014-02-11 | 1 | -1/+2 |
* | Make succ_iterator a real random access iterator and clean up a couple of users. | Benjamin Kramer | 2014-02-10 | 1 | -22/+35 |
* | Fix layering StringRef copy using BumpPtrAllocator. | Nick Kledzik | 2014-02-05 | 4 | -28/+49 |