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