| Commit message (Expand) | Author | Age | Files | Lines |
* | Change APFloat::convertFromInteger to take the incoming | Dale Johannesen | 2007-09-21 | 1 | -1/+1 |
* | Fix CopyFrom for non-POD data types. | Owen Anderson | 2007-09-21 | 1 | -1/+1 |
* | Do not hide APInt::dump() inside #ifndef NDEBUG. | Devang Patel | 2007-09-17 | 1 | -2/+0 |
* | Merge DenseMapKeyInfo & DenseMapValueInfo into DenseMapInfo | Chris Lattner | 2007-09-17 | 1 | -24/+17 |
* | That's what i get for using carbon emacs in a terminal | Daniel Berlin | 2007-09-17 | 1 | -2/+2 |
* | Fix iterator so it doesn't sometimes report bits that aren't in the bitmap | Daniel Berlin | 2007-09-17 | 1 | -0/+2 |
* | Fix bug in andersen's related to test_and_set. | Daniel Berlin | 2007-09-16 | 1 | -4/+26 |
* | Fix a few bugs related to zero'ing of elements | Daniel Berlin | 2007-09-16 | 1 | -45/+14 |
* | Remove the assumption that FP's are either float or | Dale Johannesen | 2007-09-14 | 2 | -5/+7 |
* | And an FoldingSetImpl::NodeID::AddInteger overload for int64_t, to avoid | Dan Gohman | 2007-09-14 | 1 | -0/+1 |
* | Make single-argument ctors explicit to avoid tricky bugs :) | Chris Lattner | 2007-09-13 | 1 | -3/+3 |
* | Move dump out of class, use "\n" instead of endl | Daniel Berlin | 2007-09-11 | 1 | -10/+13 |
* | Add APInt interfaces to APFloat (allows directly | Dale Johannesen | 2007-09-11 | 1 | -0/+9 |
* | Convert to use ilist and non-pointer lists for extra goodness | Daniel Berlin | 2007-09-11 | 1 | -89/+104 |
* | Add a ValueInfoT template parameter to DenseMap so that it can properly make ... | Owen Anderson | 2007-09-11 | 1 | -8/+22 |
* | Don't bother to initialize values corresponding to empty or tombstone | Owen Anderson | 2007-09-11 | 1 | -1/+3 |
* | Fix bugs with &=, intersect with complement. Add three argument version of in... | Daniel Berlin | 2007-09-11 | 1 | -48/+131 |
* | Fix non-deterministic behavior in the DenseMap copy constructor. | Owen Anderson | 2007-09-11 | 1 | -2/+8 |
* | Add remaining functions necessary for andersen's | Daniel Berlin | 2007-09-11 | 1 | -12/+194 |
* | Add SparseBitVector implementation | Daniel Berlin | 2007-09-09 | 1 | -0/+560 |
* | Fix for VisualStudio. It is treating a 2 bit enum as a signed int for compar... | Chuck Rose III | 2007-09-08 | 1 | -1/+3 |
* | Add lengthof and endof templates that hide a lot of sizeof computations. | Owen Anderson | 2007-09-07 | 1 | -0/+19 |
* | fix reversal bug in preceding checkin | Dale Johannesen | 2007-09-04 | 1 | -2/+2 |
* | Add mod, copysign, abs operations to APFloat. | Dale Johannesen | 2007-08-31 | 1 | -1/+5 |
* | Revise per review of previous patch. | Dale Johannesen | 2007-08-31 | 1 | -1/+1 |
* | Enhance APFloat to retain bits of NaNs (fixes oggenc). | Dale Johannesen | 2007-08-31 | 2 | -4/+18 |
* | getMinSignedBits needs to take into consider the sign bit when the value is p... | Chris Lattner | 2007-08-29 | 1 | -1/+1 |
* | Add explicit keywords and remove spurious trailing semicolons. | Dan Gohman | 2007-08-27 | 1 | -2/+2 |
* | Comment out declaration of operator== (undefined). | Dale Johannesen | 2007-08-25 | 1 | -1/+1 |
* | Poison APFloat::operator==. Replace existing uses with bitwiseIsEqual. | Dale Johannesen | 2007-08-24 | 1 | -6/+6 |
* | Revised per review feedback from previous patch. | Dale Johannesen | 2007-08-24 | 1 | -0/+5 |
* | Change internal representation of ConstantFP to use APFloat. | Dale Johannesen | 2007-08-24 | 1 | -1/+15 |
* | default this to radix 10 like the toString(Un)Signed methods. | Chris Lattner | 2007-08-23 | 1 | -1/+1 |
* | Avoid hiding issues. | Chris Lattner | 2007-08-23 | 1 | -1/+1 |
* | rename APInt::toString -> toStringUnsigned for symmetry with toStringSigned() | Chris Lattner | 2007-08-23 | 2 | -1/+7 |
* | initial checkin of Neil's APFloat work. | Chris Lattner | 2007-08-20 | 2 | -3/+262 |
* | add reverse iterators to smallvector | Chris Lattner | 2007-08-20 | 1 | -3/+14 |
* | improve iplist comments. Switch iplist from allocating its sentinal object (... | Chris Lattner | 2007-08-17 | 1 | -17/+56 |
* | This adds a bunch of static functions that implement unsigned | Chris Lattner | 2007-08-16 | 1 | -0/+126 |
* | Forgot a line. | Owen Anderson | 2007-08-16 | 1 | -0/+1 |
* | Add a copy constructor and an assignment operator to DenseMap. | Owen Anderson | 2007-08-16 | 1 | -1/+32 |
* | Properly use const qualifiers | Anton Korobeynikov | 2007-08-15 | 1 | -2/+2 |
* | Change casts from old style to new style. This helps document the details | Reid Spencer | 2007-08-12 | 2 | -14/+17 |
* | memcpy with zero length is hugely expensive, so avoid it. This speeds up coa... | Chris Lattner | 2007-08-10 | 1 | -1/+5 |
* | small speedup in the case where a smallvector is default ctor'd from | Chris Lattner | 2007-08-10 | 1 | -1/+2 |
* | This fixes resizing issues with BitVectors. It ensures that the BitWord type ... | Chandler Carruth | 2007-08-06 | 1 | -11/+26 |
* | Document a missing parameter. | Reid Spencer | 2007-08-05 | 1 | -0/+1 |
* | Fix a bug in DenseMap::clear, where we never reset a tombstone | Chris Lattner | 2007-08-05 | 1 | -3/+5 |
* | When clearing a SmallPtrSet, if the set had a huge capacity, but the | Chris Lattner | 2007-08-05 | 2 | -2/+10 |
* | Fix bug spotted by Chris. | Anders Carlsson | 2007-08-02 | 1 | -4/+4 |