| Commit message (Expand) | Author | Age | Files | Lines |
* | Move all of the header files which are involved in modelling the LLVM IR | Chandler Carruth | 2013-01-02 | 1 | -1/+1 |
* | Sort the #include lines for unittest/... | Chandler Carruth | 2012-12-04 | 1 | -1/+0 |
* | make ConstantRange::zeroExtend() optimal | Nuno Lopes | 2012-07-23 | 1 | -0/+4 |
* | teach ConstantRange that zero times X is always zero | Nuno Lopes | 2012-07-16 | 1 | -0/+8 |
* | make ConstantRange::getSetSize() properly compute the size of wrapped and ful... | Nuno Lopes | 2012-07-16 | 1 | -5/+9 |
* | add ConstantRange::difference (to perform set difference/relative complement) | Nuno Lopes | 2012-06-28 | 1 | -0/+17 |
* | fix a off-by-one bug in intersectWith(), and add a bunch of tests | Nuno Lopes | 2012-06-28 | 1 | -2/+32 |
* | fix corner case in ConstantRange::intersectWith(). | Nuno Lopes | 2012-05-18 | 1 | -0/+5 |
* | Fix the implementation of ConstantRange::sub(ConstantRange). Patch by Xi Wang! | Nick Lewycky | 2011-06-22 | 1 | -0/+2 |
* | PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and | Jay Foad | 2010-12-07 | 1 | -10/+10 |
* | Make ConstantRange::makeICmpRegion handle all the edge cases properly. This | Nick Lewycky | 2010-09-28 | 1 | -0/+8 |
* | Add a new isSignWrappedSet() method to ConstantRange. | Nick Lewycky | 2010-09-06 | 1 | -4/+22 |
* | Clean up ConstantRange a bit: | Nick Lewycky | 2010-08-11 | 1 | -3/+63 |
* | Add an inverse() method to ConstantRange. | Owen Anderson | 2010-08-07 | 1 | -0/+3 |
* | Simplify, now that gtest supports raw_ostream directly. | Daniel Dunbar | 2009-09-06 | 1 | -1/+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 |
* | split raw_os_ostream out to its own header and implementation file. This | Chris Lattner | 2009-08-24 | 1 | -1/+1 |
* | Unbreak unit tests. | Daniel Dunbar | 2009-08-24 | 1 | -0/+7 |
* | convert all the constant range EXPECT_EQ tests to use EXPECT_TRUE since | Chris Lattner | 2009-08-23 | 1 | -128/+129 |
* | cast signed APInt constructor params to uint64_t to suppress signedness warning | Ryan Flynn | 2009-07-22 | 1 | -5/+5 |
* | Fix ConstantRange::unionWith. Also make it work a little hard in some cases to | Nick Lewycky | 2009-07-19 | 1 | -0/+11 |
* | Replace intersectWith with maximalIntersectWith. The latter guarantees that | Nick Lewycky | 2009-07-18 | 1 | -15/+6 |
* | Fix an error in ConstantRange::getSignedMax on wrapped ranges. Thanks once | Nick Lewycky | 2009-07-13 | 1 | -0/+4 |
* | 'i8 full-range' sign extended to i16 should equal [-128, 128) not [-128, 127). | Nick Lewycky | 2009-07-13 | 1 | -1/+1 |
* | Multiply was very wrong for wrapped ranges. This supplies a half-fix that will | Nick Lewycky | 2009-07-13 | 1 | -0/+5 |
* | Fix a bug summing two full sets. The overflow checking doesn't handle sets as | Nick Lewycky | 2009-07-13 | 1 | -0/+1 |
* | Implement udiv for ConstantRanges. | Nick Lewycky | 2009-07-12 | 1 | -13/+9 |
* | This is not overly conservative. | Nick Lewycky | 2009-07-12 | 1 | -1/+0 |
* | Implement ConstantRange::multiply based on the code in LoopVR. | Nick Lewycky | 2009-07-12 | 1 | -10/+6 |
* | Fix handling of max and full set. | Nick Lewycky | 2009-07-11 | 1 | -7/+8 |
* | Break the world's largest unit test down a few logical lines. No semantic | Nick Lewycky | 2009-07-11 | 1 | -23/+65 |
* | Revert the part of 75177 that split ConstantRange into two classes, and | Dan Gohman | 2009-07-09 | 1 | -298/+21 |
* | Add a ConstantSignedRange class, which does for signed integers | Dan Gohman | 2009-07-09 | 1 | -0/+582 |