index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
unittests
/
Support
/
ConstantRangeTest.cpp
Age
Commit message (
Expand
)
Author
2010-12-07
PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and
Jay Foad
2010-09-28
Make ConstantRange::makeICmpRegion handle all the edge cases properly. This
Nick Lewycky
2010-09-06
Add a new isSignWrappedSet() method to ConstantRange.
Nick Lewycky
2010-08-11
Clean up ConstantRange a bit:
Nick Lewycky
2010-08-07
Add an inverse() method to ConstantRange.
Owen Anderson
2009-09-06
Simplify, now that gtest supports raw_ostream directly.
Daniel Dunbar
2009-09-05
Now that googletest can print ConstantRange, use EXPECT_EQ when testing for
Nick Lewycky
2009-09-05
Teach googletest to use raw_ostream instead of just std::ostream.
Jeffrey Yasskin
2009-08-24
split raw_os_ostream out to its own header and implementation file. This
Chris Lattner
2009-08-24
Unbreak unit tests.
Daniel Dunbar
2009-08-23
convert all the constant range EXPECT_EQ tests to use EXPECT_TRUE since
Chris Lattner
2009-07-22
cast signed APInt constructor params to uint64_t to suppress signedness warning
Ryan Flynn
2009-07-19
Fix ConstantRange::unionWith. Also make it work a little hard in some cases to
Nick Lewycky
2009-07-18
Replace intersectWith with maximalIntersectWith. The latter guarantees that
Nick Lewycky
2009-07-13
Fix an error in ConstantRange::getSignedMax on wrapped ranges. Thanks once
Nick Lewycky
2009-07-13
'i8 full-range' sign extended to i16 should equal [-128, 128) not [-128, 127).
Nick Lewycky
2009-07-13
Multiply was very wrong for wrapped ranges. This supplies a half-fix that will
Nick Lewycky
2009-07-13
Fix a bug summing two full sets. The overflow checking doesn't handle sets as
Nick Lewycky
2009-07-12
Implement udiv for ConstantRanges.
Nick Lewycky
2009-07-12
This is not overly conservative.
Nick Lewycky
2009-07-12
Implement ConstantRange::multiply based on the code in LoopVR.
Nick Lewycky
2009-07-11
Fix handling of max and full set.
Nick Lewycky
2009-07-11
Break the world's largest unit test down a few logical lines. No semantic
Nick Lewycky
2009-07-09
Revert the part of 75177 that split ConstantRange into two classes, and
Dan Gohman
2009-07-09
Add a ConstantSignedRange class, which does for signed integers
Dan Gohman