fix a comment bug Reid noticed
[oota-llvm.git] / include / llvm / ADT /
2007-04-10 Chris Lattnerfix a comment bug Reid noticed
2007-04-10 Chris Lattneradd missing methods, mark stuff const
2007-04-10 Chris Lattneradd a method
2007-04-05 Chris LattnerAdd a helper class (APSInt) which can represent an...
2007-04-04 Lauro Ramos VenancioFix release build.
2007-04-04 Anton KorobeynikovProperly emit range comparisons for switch cases, where...
2007-04-04 Chris Lattnertrivial optimization
2007-04-04 Chris Lattneruse calloc instead of new/memset, it is more efficient
2007-04-04 Chris LattnerExtend StringMap to support being initialized as comple...
2007-04-03 Chris Lattneradd missing operator
2007-04-02 Chris Lattneradd a helper function.
2007-04-02 Chris Lattneradd range version of insert()
2007-04-01 Zhou ShengRemove unused methods.
2007-03-30 Duncan SandsCorrect typo.
2007-03-25 Reid SpencerCompute getLowBitsSet correctly. Using the complement...
2007-03-25 Reid SpencerFix a typo in a comment.
2007-03-25 Reid SpencerActually, for getHighBitsSet and getLowBitsSet, don...
2007-03-24 Reid SpencerMake it illegal to set 0 bits in getHighBitsSet and...
2007-03-24 Reid SpencerIn the getBitsSet function, don't optimize for a common...
2007-03-24 Reid SpencerDon't invoke undefined behavior in shifts in the functi...
2007-03-24 Reid SpencerImplement the getBitsSet function.
2007-03-24 Reid SpencerImplement the getHighBitsSet and getLowBitsSet functions.
2007-03-24 Reid SpencerGet the signs in the right place!
2007-03-24 Reid SpencerUndo the last change and make this really implement...
2007-03-24 Reid SpencerCorrect the implementation of srem to be remainder...
2007-03-24 Reid SpencerClean up this interface:
2007-03-21 Reid SpencerFix a comment.
2007-03-20 Zhou ShengCorrect the name: isStrictPositive --> isStrictlyPositive.
2007-03-20 Chris LattnerAdd a dtor to fix leaks from all clients of BitVector.
2007-03-19 Reid SpencerAdd an indication of signedness to the uint64_t constru...
2007-03-19 Zhou ShengAdd isStrictPositive() to APInt to determine if this...
2007-03-13 Zhou ShengAdd zextOrCopy() into APInt for convenience.
2007-03-11 Zhou ShengAdd getSignBit() and operator<<= into APInt for conveni...
2007-03-05 Jeff CohenThe hack won't work on VS 2005, and it might not be...
2007-03-05 Zhou ShengCorrect the calculation in APInt::logBase2().
2007-03-05 Jeff CohenElminate tabs and improve comments.
2007-03-05 Jeff CohenUnbreak VC++ build.
2007-03-04 Chris Lattneradd iterator range version of ctor.
2007-03-03 Reid SpencerRegularize the interface for conversion functions to...
2007-03-03 Reid SpencerMake getNumWords public so that those using getRawData...
2007-03-03 Reid SpencerAdd names for some of the operators. This is needed...
2007-03-03 Reid SpencerAdd isPositive for symmetry with isNegative.
2007-03-02 Chris LattnerFix PR1234 by working around a compiler bug.
2007-03-02 Evan ChengMake it 64-bit safe.
2007-03-01 Reid SpencerAdd an abs() function to get the absolute value.
2007-03-01 Reid SpencerAdd doubleToBits and floatToBits methods.
2007-03-01 Reid SpencerAdd bitsToDouble and bitsToFloat methods for re-interpr...
2007-03-01 Reid SpencerAdd methods for bit width modification: sextOrTrunc...
2007-03-01 Reid SpencerAdd a square root function.
2007-02-28 Reid SpencerMake APInt a little more friendly to its users:
2007-02-28 Reid SpencergetActiveWords should return the number of words, not...
2007-02-27 Reid SpencerAdd some syntactic sugar.
2007-02-27 Reid SpencerImplement countLeadingOnes() and getMinSignedBits(...
2007-02-27 Reid SpencerImprove APInt interface:
2007-02-27 Reid SpencerAllow the RoundDoubleToAPInt function to specify a...
2007-02-26 Reid SpencerFix indentation.
2007-02-26 Reid Spencer1. Split getValue() into getSExtValue() and getZExtValu...
2007-02-26 Reid SpencerImplement inline methods that make transition of Consta...
2007-02-26 Reid SpencerMake isNegative() a const function since it doesn't...
2007-02-26 Reid SpencerAdd an isNegative method to determine if the APInt...
2007-02-25 Reid SpencerFix clearUnusedBits to not depend on "undefined behavio...
2007-02-25 Reid SpencerAdd a private constructor for efficiency.
2007-02-24 Reid SpencerImprove documentation.
2007-02-21 Reid SpencerAdd a dump() method for debugging.
2007-02-20 Reid SpencerAdd an internal convenience method for division that...
2007-02-19 Reid SpencerAdd some new constants.
2007-02-18 Reid Spencer1. "unsigned" -> "uint32_t" to gaurantee its bit width...
2007-02-18 Reid SpencerImplement signed output for toString.
2007-02-17 Reid SpencerFix bugs introduced by constructor parameter order...
2007-02-16 Reid SpencerReview changes:
2007-02-15 Evan ChengProper fix for the off-by-one bug in clear_unused_bits().
2007-02-15 Reid SpencerFix an off-by-one bug in computing the index of the...
2007-02-15 Reid SpencerMake sure Capacity gets initialized too.
2007-02-15 Evan ChengMissing a ;
2007-02-15 Evan ChengBitVector::reference operator=(const reference& rhs...
2007-02-15 Evan ChengRemove unnecessary checks.
2007-02-15 Evan Chengoperator== returns false when two bitvectors have diffe...
2007-02-15 Evan ChengMerges two resize() variants.
2007-02-15 Evan ChengClear no longer deleting the bits to avoid mallocs.
2007-02-15 Evan ChengBitVector::count() bugs.
2007-02-15 Evan ChengEliminate a redundent ctor; eliminate one more potentia...
2007-02-15 Evan Cheng1 -> 1L since BitWord has type unsigned long.
2007-02-15 Evan ChengEliminate new[0], just set Bits to NULL.
2007-02-15 Evan ChengInverted the condition by accident.
2007-02-15 Evan ChengBug fixes: assignment operator forgot to copy over...
2007-02-15 Zhou ShengFix some buges:
2007-02-15 Evan ChengAdd a BitVector class.
2007-02-13 Reid SpencerMake some minor improvements to APInt:
2007-02-13 Chris Lattnerfix a critical bug in smallvector, where it would destr...
2007-02-12 Zhou Sheng1. Make APInt::shl work correctly and more efficiently.
2007-02-11 Chris Lattneradd new ShouldRehash method to factor out common code...
2007-02-11 Chris Lattnerdo not allow hash table to be filled with tombstones.
2007-02-11 Chris LattnerAdd support for removing elements out of StringMap.
2007-02-11 Chris LattnerReplace the ugly FindValue method with STL-like find...
2007-02-11 Chris Lattnerremove support for stringmap visitors now that iterator...
2007-02-11 Chris Lattneradd iterator support, plus support for size() and empty().
2007-02-11 Chris LattnerSplit StringMapEntry construction out of StringMap...
2007-02-10 Chris LattnerMake find return the appropriate iterator/const_iterator
2007-02-10 Chris LattnerAllow DenseMAp to take an explicit DenseMapKeyInfo
2007-02-09 Zhou ShengEliminates friend function declaration inside APInt...
next