summaryrefslogtreecommitdiff
path: root/lib/Support/ConstantRange.cpp
Commit message (Expand)AuthorAge
* [ConstantRange] improve my previous patch per Nick suggestionNuno Lopes2013-10-31
* make ConstantRange::signExtend() optimalNuno Lopes2013-10-30
* simplify ConstantRange::getSetSize()Nuno Lopes2013-10-28
* Don't use a potentially expensive shift if all we want is one set bit.Benjamin Kramer2013-07-11
* Use move semantics if possible to construct ConstantRanges.Benjamin Kramer2013-07-11
* Move all of the header files which are involved in modelling the LLVM IRChandler Carruth2013-01-02
* make ConstantRange::zeroExtend() optimalNuno Lopes2012-07-23
* reimplement truncate() to make it optimal.Nuno Lopes2012-07-19
* simplify getSetSize() per Duncan's commentsNuno Lopes2012-07-17
* 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
* Convert assert(0) to llvm_unreachableCraig Topper2012-02-07
* Conform to the style guide; remove 'else' after 'return'. Also remove an extraNick Lewycky2012-01-03
* Make ConstantRange::truncate a bit more efficient.Benjamin Kramer2011-11-24
* Change:Richard Trieu2011-09-21
* Trim includes.Frits van Bommel2011-07-27
* 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 completely hokey binary-and and binary-or operations to ConstantRange andNick Lewycky2010-09-07
* Add a new isSignWrappedSet() method to ConstantRange.Nick Lewycky2010-09-06
* Clean up ConstantRange a bit:Nick Lewycky2010-08-11
* Remove layering violation.Owen Anderson2010-08-07
* Add an inverse() method to ConstantRange.Owen Anderson2010-08-07
* Add a convenience constructor.Owen Anderson2010-08-07
* Fix a typo that several people pointed out. Also, address the case ofDan Gohman2010-01-26
* Add a comment about a missed opportunity.Dan Gohman2010-01-26
* Print empty and full sets specially.Dan Gohman2010-01-26
* Change errs() to dbgs().David Greene2010-01-05
* fix crash in my previous patchNuno Lopes2009-11-12
* implement shl, ashr, and lshr methods. shl is not fully implemented as it is ...Nuno Lopes2009-11-12
* add zextOrTrunc and sextOrTrunc methods, that are similar to the ones in APIntNuno Lopes2009-11-09
* Change Pass::print to take a raw ostream instead of std::ostream,Chris Lattner2009-08-23
* 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
* Implement ConstantRange::multiply based on the code in LoopVR.Nick Lewycky2009-07-12
* Fix handling of max and full set.Nick Lewycky2009-07-11
* Clarify and simplify.Nick Lewycky2009-07-11
* Move a method that creates constant ranges relative to another constant rangeNick 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
* Switch the asmprinter (.ll) and all the stuff it requires over toChris Lattner2008-08-23