aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT
Commit message (Expand)AuthorAgeFilesLines
* Change APFloat::convertFromInteger to take the incomingDale Johannesen2007-09-211-1/+1
* Fix CopyFrom for non-POD data types.Owen Anderson2007-09-211-1/+1
* Do not hide APInt::dump() inside #ifndef NDEBUG.Devang Patel2007-09-171-2/+0
* Merge DenseMapKeyInfo & DenseMapValueInfo into DenseMapInfoChris Lattner2007-09-171-24/+17
* That's what i get for using carbon emacs in a terminalDaniel Berlin2007-09-171-2/+2
* Fix iterator so it doesn't sometimes report bits that aren't in the bitmapDaniel Berlin2007-09-171-0/+2
* Fix bug in andersen's related to test_and_set.Daniel Berlin2007-09-161-4/+26
* Fix a few bugs related to zero'ing of elementsDaniel Berlin2007-09-161-45/+14
* Remove the assumption that FP's are either float orDale Johannesen2007-09-142-5/+7
* And an FoldingSetImpl::NodeID::AddInteger overload for int64_t, to avoidDan Gohman2007-09-141-0/+1
* Make single-argument ctors explicit to avoid tricky bugs :)Chris Lattner2007-09-131-3/+3
* Move dump out of class, use "\n" instead of endlDaniel Berlin2007-09-111-10/+13
* Add APInt interfaces to APFloat (allows directlyDale Johannesen2007-09-111-0/+9
* Convert to use ilist and non-pointer lists for extra goodnessDaniel Berlin2007-09-111-89/+104
* Add a ValueInfoT template parameter to DenseMap so that it can properly make ...Owen Anderson2007-09-111-8/+22
* Don't bother to initialize values corresponding to empty or tombstone Owen Anderson2007-09-111-1/+3
* Fix bugs with &=, intersect with complement. Add three argument version of in...Daniel Berlin2007-09-111-48/+131
* Fix non-deterministic behavior in the DenseMap copy constructor.Owen Anderson2007-09-111-2/+8
* Add remaining functions necessary for andersen'sDaniel Berlin2007-09-111-12/+194
* Add SparseBitVector implementationDaniel Berlin2007-09-091-0/+560
* Fix for VisualStudio. It is treating a 2 bit enum as a signed int for compar...Chuck Rose III2007-09-081-1/+3
* Add lengthof and endof templates that hide a lot of sizeof computations.Owen Anderson2007-09-071-0/+19
* fix reversal bug in preceding checkinDale Johannesen2007-09-041-2/+2
* Add mod, copysign, abs operations to APFloat.Dale Johannesen2007-08-311-1/+5
* Revise per review of previous patch.Dale Johannesen2007-08-311-1/+1
* Enhance APFloat to retain bits of NaNs (fixes oggenc).Dale Johannesen2007-08-312-4/+18
* getMinSignedBits needs to take into consider the sign bit when the value is p...Chris Lattner2007-08-291-1/+1
* Add explicit keywords and remove spurious trailing semicolons.Dan Gohman2007-08-271-2/+2
* Comment out declaration of operator== (undefined).Dale Johannesen2007-08-251-1/+1
* Poison APFloat::operator==. Replace existing uses with bitwiseIsEqual.Dale Johannesen2007-08-241-6/+6
* Revised per review feedback from previous patch.Dale Johannesen2007-08-241-0/+5
* Change internal representation of ConstantFP to use APFloat.Dale Johannesen2007-08-241-1/+15
* default this to radix 10 like the toString(Un)Signed methods.Chris Lattner2007-08-231-1/+1
* Avoid hiding issues.Chris Lattner2007-08-231-1/+1
* rename APInt::toString -> toStringUnsigned for symmetry with toStringSigned()Chris Lattner2007-08-232-1/+7
* initial checkin of Neil's APFloat work.Chris Lattner2007-08-202-3/+262
* add reverse iterators to smallvectorChris Lattner2007-08-201-3/+14
* improve iplist comments. Switch iplist from allocating its sentinal object (...Chris Lattner2007-08-171-17/+56
* This adds a bunch of static functions that implement unsignedChris Lattner2007-08-161-0/+126
* Forgot a line.Owen Anderson2007-08-161-0/+1
* Add a copy constructor and an assignment operator to DenseMap.Owen Anderson2007-08-161-1/+32
* Properly use const qualifiersAnton Korobeynikov2007-08-151-2/+2
* Change casts from old style to new style. This helps document the detailsReid Spencer2007-08-122-14/+17
* memcpy with zero length is hugely expensive, so avoid it. This speeds up coa...Chris Lattner2007-08-101-1/+5
* small speedup in the case where a smallvector is default ctor'd fromChris Lattner2007-08-101-1/+2
* This fixes resizing issues with BitVectors. It ensures that the BitWord type ...Chandler Carruth2007-08-061-11/+26
* Document a missing parameter.Reid Spencer2007-08-051-0/+1
* Fix a bug in DenseMap::clear, where we never reset a tombstoneChris Lattner2007-08-051-3/+5
* When clearing a SmallPtrSet, if the set had a huge capacity, but theChris Lattner2007-08-052-2/+10
* Fix bug spotted by Chris.Anders Carlsson2007-08-021-4/+4