Age | Commit message (Expand) | Author | Files | Lines |
2010-02-17 | Add Regex::sub, for doing regular expression substitution with backreferences. | Daniel Dunbar | 1 | -0/+29 |
2010-02-09 | Add support for TypeBuilder<const/volatile void*, false>. | Jeffrey Yasskin | 1 | -1/+8 |
2010-01-22 | Fix TimeValue::now() on Unix. | Torok Edwin | 1 | -0/+16 |
2009-12-18 | Catch more cases of a pointer being marked garbage twice. This helps when | Rafael Espindola | 1 | -0/+29 |
2009-10-27 | Type.h doesn't need to #include LLVMContext.h | Chris Lattner | 1 | -0/+1 |
2009-10-17 | Add raw_ostream::write_escaped, for writing escaped strings. | Daniel Dunbar | 1 | -0/+16 |
2009-10-12 | Fix http://llvm.org/PR5160, to let CallbackVHs modify other ValueHandles on the | Jeffrey Yasskin | 1 | -0/+81 |
2009-10-06 | Introduce and use convenience methods for getting pointer types | Duncan Sands | 1 | -5/+5 |
2009-09-26 | remove support for "NoSub" from regex. It seems like a minor optimization | Chris Lattner | 1 | -4/+4 |
2009-09-25 | Fix a compile failure introduced by r82675 on MinGW which doesn't have | Jeffrey Yasskin | 1 | -0/+12 |
2009-09-24 | add and document regex support for FileCheck. You can now do stuff like: | Chris Lattner | 1 | -0/+1 |
2009-09-24 | Roll back r82348, which introduced an infinite loop in ParseCStringVector() that | Jeffrey Yasskin | 1 | -0/+48 |
2009-09-15 | Drop the raw_ostream required buffer size to 1. | Daniel Dunbar | 1 | -0/+10 |
2009-09-09 | Make TypeBuilder's result depend on the LLVMContext it's passed. | Jeffrey Yasskin | 1 | -0/+12 |
2009-09-06 | Simplify, now that gtest supports raw_ostream directly. | Daniel Dunbar | 1 | -1/+0 |
2009-09-05 | Now that googletest can print ConstantRange, use EXPECT_EQ when testing for | Nick Lewycky | 1 | -149/+149 |
2009-09-05 | Teach googletest to use raw_ostream instead of just std::ostream. | Jeffrey Yasskin | 1 | -7/+0 |
2009-08-30 | Add regular expression matching support, based on OpenBSD regexec()/regcomp() | Torok Edwin | 1 | -0/+64 |
2009-08-24 | split raw_os_ostream out to its own header and implementation file. This | Chris Lattner | 1 | -1/+1 |
2009-08-24 | Unbreak unit tests. | Daniel Dunbar | 1 | -0/+7 |
2009-08-23 | Fix off-by-one in llvm::Format::print. | Daniel Dunbar | 1 | -0/+27 |
2009-08-23 | convert all the constant range EXPECT_EQ tests to use EXPECT_TRUE since | Chris Lattner | 1 | -128/+129 |
2009-08-20 | Fixed header comment. | Misha Brukman | 1 | -1/+1 |
2009-08-19 | Add min and max tests. | Daniel Dunbar | 1 | -0/+8 |
2009-08-13 | Push LLVMContexts through the IntegerType APIs. | Owen Anderson | 2 | -71/+71 |
2009-08-12 | Fix unit test on FreeBSD. We need to make sure there is enough space to save ... | Benjamin Kramer | 1 | -1/+1 |
2009-08-07 | To catch bugs like the one fixed in | Jeffrey Yasskin | 1 | -0/+7 |
2009-08-05 | Update unit test. | Owen Anderson | 1 | -5/+5 |
2009-07-31 | Update unittest for LLVM API change. | Benjamin Kramer | 1 | -3/+3 |
2009-07-31 | Move a few more APIs back to 2.5 forms. The only remaining ones left to chan... | Owen Anderson | 1 | -1/+1 |
2009-07-29 | Move types back to the 2.5 API. | Owen Anderson | 1 | -2/+2 |
2009-07-25 | Added a test and fixed a bug in BumpPtrAllocator relating to large alignment | Reid Kleckner | 1 | -0/+48 |
2009-07-24 | Revert the ConstantInt constructors back to their 2.5 forms where possible, t... | Owen Anderson | 1 | -1/+1 |
2009-07-23 | Re-committing changes from r76825 to BumpPtrAllocator with a fix and tests for | Reid Kleckner | 1 | -0/+95 |
2009-07-23 | Reverting r76825 and r76828, since they caused clang runtime errors and some ... | Reid Kleckner | 1 | -61/+0 |
2009-07-23 | Parameterize the BumpPtrAllocator over a slab allocator. It defaults to using | Reid Kleckner | 1 | -0/+61 |
2009-07-22 | cast signed APInt constructor params to uint64_t to suppress signedness warning | Ryan Flynn | 1 | -5/+5 |
2009-07-19 | Fix ConstantRange::unionWith. Also make it work a little hard in some cases to | Nick Lewycky | 1 | -0/+11 |
2009-07-18 | Replace intersectWith with maximalIntersectWith. The latter guarantees that | Nick Lewycky | 1 | -15/+6 |
2009-07-14 | Move EVER MORE stuff over to LLVMContext. | Owen Anderson | 1 | -2/+3 |
2009-07-13 | Fix an error in ConstantRange::getSignedMax on wrapped ranges. Thanks once | Nick Lewycky | 1 | -0/+4 |
2009-07-13 | 'i8 full-range' sign extended to i16 should equal [-128, 128) not [-128, 127). | Nick Lewycky | 1 | -1/+1 |
2009-07-13 | Begin the painful process of tearing apart the rat'ss nest that is Constants.... | Owen Anderson | 1 | -6/+11 |
2009-07-13 | Multiply was very wrong for wrapped ranges. This supplies a half-fix that will | Nick Lewycky | 1 | -0/+5 |
2009-07-13 | Fix a bug summing two full sets. The overflow checking doesn't handle sets as | Nick Lewycky | 1 | -0/+1 |
2009-07-12 | Implement udiv for ConstantRanges. | Nick Lewycky | 1 | -13/+9 |
2009-07-12 | This is not overly conservative. | Nick Lewycky | 1 | -1/+0 |
2009-07-12 | Implement ConstantRange::multiply based on the code in LoopVR. | Nick Lewycky | 1 | -10/+6 |
2009-07-11 | Fix handling of max and full set. | Nick Lewycky | 1 | -7/+8 |
2009-07-11 | Break the world's largest unit test down a few logical lines. No semantic | Nick Lewycky | 1 | -23/+65 |