| Commit message (Expand) | Author | Age | Files | Lines |
* | Change errs() to dbgs(). | David Greene | 2010-01-05 | 1 | -1/+2 |
* | fix crash in my previous patch | Nuno Lopes | 2009-11-12 | 1 | -1/+1 |
* | implement shl, ashr, and lshr methods. shl is not fully implemented as it is ... | Nuno Lopes | 2009-11-12 | 1 | -0/+37 |
* | add zextOrTrunc and sextOrTrunc methods, that are similar to the ones in APInt | Nuno Lopes | 2009-11-09 | 1 | -0/+24 |
* | Change Pass::print to take a raw ostream instead of std::ostream, | Chris Lattner | 2009-08-23 | 1 | -6/+1 |
* | Fix ConstantRange::unionWith. Also make it work a little hard in some cases to | Nick Lewycky | 2009-07-19 | 1 | -45/+50 |
* | Replace intersectWith with maximalIntersectWith. The latter guarantees that | Nick Lewycky | 2009-07-18 | 1 | -43/+5 |
* | Fix an error in ConstantRange::getSignedMax on wrapped ranges. Thanks once | Nick Lewycky | 2009-07-13 | 1 | -7/+3 |
* | '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 | -6/+6 |
* | Fix a bug summing two full sets. The overflow checking doesn't handle sets as | Nick Lewycky | 2009-07-13 | 1 | -0/+2 |
* | Implement udiv for ConstantRanges. | Nick Lewycky | 2009-07-12 | 1 | -4/+26 |
* | Implement ConstantRange::multiply based on the code in LoopVR. | Nick Lewycky | 2009-07-12 | 1 | -3/+13 |
* | Fix handling of max and full set. | Nick Lewycky | 2009-07-11 | 1 | -4/+0 |
* | Clarify and simplify. | Nick Lewycky | 2009-07-11 | 1 | -1/+1 |
* | Move a method that creates constant ranges relative to another constant range | Nick Lewycky | 2009-07-11 | 1 | -0/+72 |
* | Revert the part of 75177 that split ConstantRange into two classes, and | Dan Gohman | 2009-07-09 | 1 | -513/+28 |
* | Add a ConstantSignedRange class, which does for signed integers | Dan Gohman | 2009-07-09 | 1 | -19/+572 |
* | Switch the asmprinter (.ll) and all the stuff it requires over to | Chris Lattner | 2008-08-23 | 1 | -4/+3 |
* | Rework the routines that convert AP[S]Int into a string. Now, instead of | Chris Lattner | 2008-08-17 | 1 | -2/+1 |
* | Tidy up whitespace in ConstantRange::print output. | Dan Gohman | 2008-05-27 | 1 | -1/+1 |
* | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner | 2007-12-29 | 1 | -2/+2 |
* | Clarify the language. Pointed out by Duncan Sands. | Nick Lewycky | 2007-07-14 | 1 | -2/+4 |
* | Add alternate ConstantRange intersection algorithm. | Nick Lewycky | 2007-07-14 | 1 | -0/+81 |
* | Fix edge case. | Nick Lewycky | 2007-06-09 | 1 | -2/+2 |
* | Using APInt more efficiently. | Zhou Sheng | 2007-04-26 | 1 | -5/+3 |
* | Make the apint construction more effective. | Zhou Sheng | 2007-04-13 | 1 | -3/+3 |
* | Add signExtend to ConstantRange, to complement zeroExtend and truncate. | Nick Lewycky | 2007-04-07 | 1 | -0/+17 |
* | Implement union of wrapped sets. | Nick Lewycky | 2007-04-01 | 1 | -7/+65 |
* | Add getter methods for the extremes of a ConstantRange. | Nick Lewycky | 2007-03-10 | 1 | -0/+64 |
* | Implement unionWith. | Nick Lewycky | 2007-03-02 | 1 | -2/+11 |
* | Remove the "isSigned" parameters from ConstantRange. It turns out they | Reid Spencer | 2007-03-01 | 1 | -37/+23 |
* | Move ConstantRange class to lib/Support from lib/Analysis and make its | Reid Spencer | 2007-02-28 | 1 | -76/+20 |
* | For PR1205: | Reid Spencer | 2007-02-28 | 1 | -24/+3 |
* | For PR1205: | Reid Spencer | 2007-02-28 | 1 | -43/+18 |
* | For PR1205: | Reid Spencer | 2007-02-28 | 1 | -138/+127 |
* | Fix comments to match names of functions. | Nick Lewycky | 2007-02-11 | 1 | -2/+2 |
* | For PR1043: | Reid Spencer | 2007-01-19 | 1 | -0/+1 |
* | rename Type::isIntegral to Type::isInteger, eliminating the old Type::isInteger. | Chris Lattner | 2007-01-15 | 1 | -4/+4 |
* | Update code to eliminate calls to isInteger, calling isIntegral instead. | Chris Lattner | 2007-01-15 | 1 | -1/+1 |
* | Fix correlated exprs regressions | Chris Lattner | 2007-01-15 | 1 | -2/+2 |
* | remove unneeded special cases | Chris Lattner | 2007-01-12 | 1 | -7/+0 |
* | Implement review feedback for the ConstantBool->ConstantInt merge. Chris | Reid Spencer | 2007-01-12 | 1 | -3/+3 |
* | Rename BoolTy as Int1Ty. Patch by Sheng Zhou. | Reid Spencer | 2007-01-11 | 1 | -4/+4 |
* | For PR1043: | Zhou Sheng | 2007-01-11 | 1 | -25/+25 |
* | Fix a bug in an assert that would never trigger. | Reid Spencer | 2007-01-08 | 1 | -1/+1 |
* | Convert uses of getPrimitiveSize that should be getPrimitiveSizeInBits. | Reid Spencer | 2007-01-08 | 1 | -9/+8 |
* | For PR950: | Reid Spencer | 2006-12-23 | 1 | -96/+101 |
* | Replace inferred getCast(V,Ty) calls with more strict variants. | Reid Spencer | 2006-12-12 | 1 | -4/+4 |
* | Changed llvm_ostream et all to OStream. llvm_cerr, llvm_cout, llvm_null, are | Bill Wendling | 2006-12-07 | 1 | -1/+1 |