| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Add a ValueMap<ValueOrSubclass*, T> type. ValueMap<Value*, T> is safe to use | Jeffrey Yasskin | 2009-10-22 | 1 | -0/+291 |
* | Move the Function*->allocated blocks map from the JITMemoryManager to the | Jeffrey Yasskin | 2009-10-20 | 1 | -38/+39 |
* | PowerPC ifdef'ing considered more complicated than one might like. | Daniel Dunbar | 2009-10-20 | 1 | -1/+1 |
* | Correct test for PowerPC. | Nick Lewycky | 2009-10-20 | 1 | -1/+1 |
* | Also check for __POWERPC__ when skipping these tests. | Daniel Dunbar | 2009-10-19 | 1 | -1/+1 |
* | Add raw_ostream::write_escaped, for writing escaped strings. | Daniel Dunbar | 2009-10-17 | 1 | -0/+16 |
* | Disable another unittest that doesn't work on arm and ppc. | Benjamin Kramer | 2009-10-15 | 1 | -1/+1 |
* | The ARM and PowerPC jits are broken in this regard. | Nick Lewycky | 2009-10-14 | 1 | -0/+2 |
* | Keep track of stubs that are created. This fixes PR5162 and probably PR4822 and | Jeffrey Yasskin | 2009-10-13 | 1 | -0/+96 |
* | Make the ExecutionEngine automatically remove global mappings on when their | Jeffrey Yasskin | 2009-10-13 | 1 | -0/+13 |
* | Pacify the compiler (signed with unsigned comparison) by making | Duncan Sands | 2009-10-13 | 1 | -6/+6 |
* | Add a ceilLogBase2 function to APInt. | Dan Gohman | 2009-10-13 | 1 | -0/+11 |
* | Fix http://llvm.org/PR5160, to let CallbackVHs modify other ValueHandles on the | Jeffrey Yasskin | 2009-10-12 | 1 | -0/+81 |
* | ExecutionEngine::clearGlobalMappingsFromModule failed to remove reverse | Jeffrey Yasskin | 2009-10-09 | 1 | -0/+20 |
* | Fix illegal cross-type aliasing. Found by baldrick on a newer gcc. | Jeffrey Yasskin | 2009-10-06 | 1 | -6/+4 |
* | Introduce and use convenience methods for getting pointer types | Duncan Sands | 2009-10-06 | 2 | -6/+6 |
* | Fix http://llvm.org/PR5116 by rolling back r60822. This passes `make unittests | Jeffrey Yasskin | 2009-10-06 | 1 | -0/+53 |
* | Try to fix unit test linking on linux ... | Benjamin Kramer | 2009-10-02 | 1 | -2/+2 |
* | MingW build fixes | Benjamin Kramer | 2009-10-02 | 1 | -1/+1 |
* | New unit test for the cloning module, which so far only covers cloning of | Nick Lewycky | 2009-09-27 | 4 | -1/+120 |
* | Link order: it matters. | Nick Lewycky | 2009-09-27 | 1 | -1/+1 |
* | remove support for "NoSub" from regex. It seems like a minor optimization | Chris Lattner | 2009-09-26 | 1 | -4/+4 |
* | Fix a compile failure introduced by r82675 on MinGW which doesn't have | Jeffrey Yasskin | 2009-09-25 | 1 | -0/+12 |
* | add and document regex support for FileCheck. You can now do stuff like: | Chris Lattner | 2009-09-24 | 1 | -0/+1 |
* | Roll back r82348, which introduced an infinite loop in ParseCStringVector() that | Jeffrey Yasskin | 2009-09-24 | 1 | -0/+48 |
* | Fix a few more conversion warnings on 4.0 | Daniel Dunbar | 2009-09-18 | 1 | -5/+5 |
* | Another try at fixing compile warnings on 4.0 | Daniel Dunbar | 2009-09-17 | 1 | -18/+18 |
* | Add StringRef::{rfind, rsplit} | Daniel Dunbar | 2009-09-16 | 1 | -42/+90 |
* | Drop the raw_ostream required buffer size to 1. | Daniel Dunbar | 2009-09-15 | 1 | -0/+10 |
* | Attempt to fix some 4.0.0 build warnings. | Daniel Dunbar | 2009-09-14 | 1 | -23/+23 |
* | Build (not test) the unittests as part of a normal build. | Daniel Dunbar | 2009-09-13 | 1 | -0/+2 |
* | Move unittest driver to utils/unittest/UnitTestMain. | Daniel Dunbar | 2009-09-13 | 2 | -22/+0 |
* | Revert unittests build changes temporarily, the unit test build isn't -j safe. | Daniel Dunbar | 2009-09-13 | 1 | -2/+0 |
* | Build (not test) the unittests as part of a normal build. | Daniel Dunbar | 2009-09-13 | 1 | -0/+2 |
* | Make TypeBuilder's result depend on the LLVMContext it's passed. | Jeffrey Yasskin | 2009-09-09 | 1 | -0/+12 |
* | Update unittests for MDNode uniquing disable. | Daniel Dunbar | 2009-09-07 | 1 | -0/+4 |
* | Simplify, now that gtest supports raw_ostream directly. | Daniel Dunbar | 2009-09-06 | 2 | -9/+0 |
* | Now that googletest can print ConstantRange, use EXPECT_EQ when testing for | Nick Lewycky | 2009-09-05 | 1 | -149/+149 |
* | Teach googletest to use raw_ostream instead of just std::ostream. | Jeffrey Yasskin | 2009-09-05 | 1 | -7/+0 |
* | Add test for PR4873, which works for me. | Daniel Dunbar | 2009-09-03 | 1 | -0/+8 |
* | Now Bitcode reader bug is fixed. Reapply 80839. | Devang Patel | 2009-09-03 | 1 | -1/+1 |
* | Revert 80839 for now. It causes test failures. | Devang Patel | 2009-09-02 | 1 | -1/+1 |
* | Use CallbackVH, instead of WeakVH, to hold MDNode elements. | Devang Patel | 2009-09-02 | 1 | -1/+1 |
* | Disable uniqueness test for now. | Devang Patel | 2009-09-02 | 1 | -1/+1 |
* | update unit test for previous change. | Chris Lattner | 2009-08-31 | 1 | -1/+1 |
* | Add regular expression matching support, based on OpenBSD regexec()/regcomp() | Torok Edwin | 2009-08-30 | 1 | -0/+64 |
* | split raw_os_ostream out to its own header and implementation file. This | Chris Lattner | 2009-08-24 | 2 | -2/+2 |
* | Unbreak unit tests. | Daniel Dunbar | 2009-08-24 | 2 | -0/+14 |
* | Fix off-by-one in llvm::Format::print. | Daniel Dunbar | 2009-08-23 | 1 | -0/+27 |
* | convert all the constant range EXPECT_EQ tests to use EXPECT_TRUE since | Chris Lattner | 2009-08-23 | 1 | -128/+129 |