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