Add a argument to storeRegToStackSlot and storeRegToAddr to specify whether
[oota-llvm.git] / include / llvm / ADT /
2007-08-24 Dale JohannesenRevised per review feedback from previous patch.
2007-08-24 Dale JohannesenChange internal representation of ConstantFP to use...
2007-08-23 Chris Lattnerdefault this to radix 10 like the toString(Un)Signed...
2007-08-23 Chris LattnerAvoid hiding issues.
2007-08-23 Chris Lattnerrename APInt::toString -> toStringUnsigned for symmetry...
2007-08-20 Chris Lattnerinitial checkin of Neil's APFloat work.
2007-08-20 Chris Lattneradd reverse iterators to smallvector
2007-08-17 Chris Lattnerimprove iplist comments. Switch iplist from allocating...
2007-08-16 Chris LattnerThis adds a bunch of static functions that implement...
2007-08-16 Owen AndersonForgot a line.
2007-08-16 Owen AndersonAdd a copy constructor and an assignment operator to...
2007-08-15 Anton KorobeynikovProperly use const qualifiers
2007-08-12 Reid SpencerChange casts from old style to new style. This helps...
2007-08-10 Chris Lattnermemcpy with zero length is hugely expensive, so avoid...
2007-08-10 Chris Lattnersmall speedup in the case where a smallvector is defaul...
2007-08-06 Chandler CarruthThis fixes resizing issues with BitVectors. It ensures...
2007-08-05 Reid SpencerDocument a missing parameter.
2007-08-05 Chris LattnerFix a bug in DenseMap::clear, where we never reset...
2007-08-05 Chris LattnerWhen clearing a SmallPtrSet, if the set had a huge...
2007-08-02 Anders CarlssonFix bug spotted by Chris.
2007-08-02 Anders CarlssonAdd extend and extOrTrunc methods that do sign or zero...
2007-07-27 Owen AndersonAllow SmallPtrSet to hold pointers to const data.
2007-07-22 Chris LattnerDisable the string map copy ctor and assignment operators,
2007-07-20 Owen AndersonMake the heuristic for shrinking DenseMap smarter.
2007-07-20 Owen AndersonHave DenseMap auto-shrink itself on clear(). This...
2007-07-17 Reid SpencerUnbreak the build by putting calls to free into the...
2007-07-16 Owen AndersonUse realloc() to (potentially) resize the contents...
2007-07-15 Chris Lattneradd a helper method.
2007-07-10 Owen AndersonEvidently my earlier fix did not go far enough. When...
2007-07-09 Owen AndersonWhen resizing a BitVector with size 0, be sure to clear...
2007-07-09 Owen AndersonMake the assignment operator for SmallPtrSet return...
2007-07-09 Chris Lattnerwork around an aparent gcc name resolution bug by
2007-07-09 Chris Lattnerimplement operator= for smallptrset
2007-06-29 Dan GohmanAdd an explicit keyword. Thanks Chris!
2007-06-29 John CriswellConvert .cvsignore files
2007-06-28 Dan GohmanAdd a default parameter to a SmallVector constructor...
2007-06-21 Owen AndersonHave internal df_iterator's use SmallPtrSet instead...
2007-05-17 Chris Lattnersilence some "comparison between signed and unsigned...
2007-05-17 Dan GohmanFix some sporadic segfaults that are triggered when...
2007-05-13 Reid SpencerAdd some things needed by the llvm-gcc version supporti...
2007-05-03 Chris LattnerThis is a patch to fix a compile error in STLExtras...
2007-05-03 Chris Lattnerremove useless type qualifiers
2007-04-26 Jeff CohenRename identifier that GCC uses as a macro, breaking...
2007-04-23 Chris Lattneradd a missing operator
2007-04-19 Jeff CohenFix some VC++ warnings.
2007-04-17 Chris LattnerCommit an patch from Gabor Greif in Mar 2005. This...
2007-04-16 Anton KorobeynikovRemoved tabs everywhere except autogenerated & external...
2007-04-14 Jeff CohenFix PR1329.
2007-04-13 Reid SpencerImplement a getBitsNeeded method to determine how many...
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...
next