aboutsummaryrefslogtreecommitdiffstats
path: root/unittests/Support/ConstantRangeTest.cpp
Commit message (Expand)AuthorAgeFilesLines
* make ConstantRange::signExtend() optimalNuno Lopes2013-10-301-0/+3
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-021-1/+1
* Sort the #include lines for unittest/...Chandler Carruth2012-12-041-1/+0
* make ConstantRange::zeroExtend() optimalNuno Lopes2012-07-231-0/+4
* teach ConstantRange that zero times X is always zeroNuno Lopes2012-07-161-0/+8
* make ConstantRange::getSetSize() properly compute the size of wrapped and ful...Nuno Lopes2012-07-161-5/+9
* add ConstantRange::difference (to perform set difference/relative complement)Nuno Lopes2012-06-281-0/+17
* fix a off-by-one bug in intersectWith(), and add a bunch of testsNuno Lopes2012-06-281-2/+32
* fix corner case in ConstantRange::intersectWith().Nuno Lopes2012-05-181-0/+5
* Fix the implementation of ConstantRange::sub(ConstantRange). Patch by Xi Wang!Nick Lewycky2011-06-221-0/+2
* PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() andJay Foad2010-12-071-10/+10
* Make ConstantRange::makeICmpRegion handle all the edge cases properly. ThisNick Lewycky2010-09-281-0/+8
* Add a new isSignWrappedSet() method to ConstantRange.Nick Lewycky2010-09-061-4/+22
* Clean up ConstantRange a bit:Nick Lewycky2010-08-111-3/+63
* Add an inverse() method to ConstantRange.Owen Anderson2010-08-071-0/+3
* Simplify, now that gtest supports raw_ostream directly.Daniel Dunbar2009-09-061-1/+0
* Now that googletest can print ConstantRange, use EXPECT_EQ when testing forNick Lewycky2009-09-051-149/+149
* Teach googletest to use raw_ostream instead of just std::ostream.Jeffrey Yasskin2009-09-051-7/+0
* split raw_os_ostream out to its own header and implementation file. ThisChris Lattner2009-08-241-1/+1
* Unbreak unit tests.Daniel Dunbar2009-08-241-0/+7
* convert all the constant range EXPECT_EQ tests to use EXPECT_TRUE since Chris Lattner2009-08-231-128/+129
* cast signed APInt constructor params to uint64_t to suppress signedness warningRyan Flynn2009-07-221-5/+5
* Fix ConstantRange::unionWith. Also make it work a little hard in some cases toNick Lewycky2009-07-191-0/+11
* Replace intersectWith with maximalIntersectWith. The latter guarantees thatNick Lewycky2009-07-181-15/+6
* Fix an error in ConstantRange::getSignedMax on wrapped ranges. Thanks onceNick Lewycky2009-07-131-0/+4
* 'i8 full-range' sign extended to i16 should equal [-128, 128) not [-128, 127).Nick Lewycky2009-07-131-1/+1
* Multiply was very wrong for wrapped ranges. This supplies a half-fix that willNick Lewycky2009-07-131-0/+5
* Fix a bug summing two full sets. The overflow checking doesn't handle sets asNick Lewycky2009-07-131-0/+1
* Implement udiv for ConstantRanges.Nick Lewycky2009-07-121-13/+9
* This is not overly conservative.Nick Lewycky2009-07-121-1/+0
* Implement ConstantRange::multiply based on the code in LoopVR.Nick Lewycky2009-07-121-10/+6
* Fix handling of max and full set.Nick Lewycky2009-07-111-7/+8
* Break the world's largest unit test down a few logical lines. No semanticNick Lewycky2009-07-111-23/+65
* Revert the part of 75177 that split ConstantRange into two classes, andDan Gohman2009-07-091-298/+21
* Add a ConstantSignedRange class, which does for signed integersDan Gohman2009-07-091-0/+582