Commit an patch from Gabor Greif in Mar 2005. This eliminates the tail
[oota-llvm.git] / lib / Support /
2007-04-14 Jeff CohenFix PR1329.
2007-04-14 Reid SpencerWe want the number of bits needed, not the power of 2.
2007-04-13 Reid SpencerImplement a getBitsNeeded method to determine how many...
2007-04-13 Zhou ShengMake the apint construction more effective.
2007-04-12 Chris Lattnerimprove the patch for PR1318 to also support grouped...
2007-04-11 Chris LattnerFix PR1318 by reacting appropriately to a mutating...
2007-04-11 Reid SpencerFix an approximate calculation in an assertion not...
2007-04-07 Reid SpencerFor PR1291:
2007-04-07 Nick LewyckyAdd signExtend to ConstantRange, to complement zeroExte...
2007-04-07 Chris LattnerFix a bug in my earlier commit which exposed positional...
2007-04-06 Chris Lattnerrearchitect the registration mechanism used by the...
2007-04-05 Chris Lattnerremove the dead removeArgument method, rename Options...
2007-04-04 Chris Lattnerstringmap memory managed with malloc now
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 Lattnergreatly reduce hte default size of stringmap.
2007-04-01 Nick LewyckyImplement union of wrapped sets.
2007-03-29 Reid SpencerFor PR789:
2007-03-29 Reid SpencerFor PR789:
2007-03-21 Zhou ShengFix a bug in getAllOnesValue() which broke
2007-03-20 Jeff CohenFix (and simplify) 48-bit byte swap.
2007-03-19 Reid SpencerFix coding standards violation.
2007-03-19 Reid SpencerImplement extension of sign bits for negative values...
2007-03-12 Reid SpencerRevert the last patch as it violates the conditions...
2007-03-12 Zhou ShengFor APInt::z/sext(width), if width == BitWidth, just...
2007-03-10 Nick LewyckyAdd getter methods for the extremes of a ConstantRange.
2007-03-05 Jeff CohenUnbreak VC++ build.
2007-03-02 Reid SpencerFix ashr for bitwidths > 64. This is now validated...
2007-03-02 Reid SpencerUse a better algorithm for rounding sqrt results. Chang...
2007-03-02 Nick LewyckyImplement unionWith.
2007-03-02 Reid SpencerAdd a FIXME
2007-03-02 Reid SpencerFix a problem where shifting by 64-bits leads to incorr...
2007-03-01 Reid SpencerCombine two lines that can be.
2007-03-01 Reid SpencerMake the static table of results in sqrt const.
2007-03-01 Reid SpencerAdd methods for bit width modification: sextOrTrunc...
2007-03-01 Reid SpencerRemove the "isSigned" parameters from ConstantRange...
2007-03-01 Reid SpencerUse a real table in sqrt to shorten and quicken the...
2007-03-01 Reid SpencerAdd a square root function.
2007-02-28 Reid SpencerMove ConstantRange class to lib/Support from lib/Analys...
2007-02-28 Reid SpencerFor PR1205:
2007-02-28 Reid SpencerFor PR1205:
2007-02-28 Reid SpencerFor PR1205:
2007-02-28 Reid SpencerMake the trunc/sext/zext methods return APInt& so that...
2007-02-28 Reid SpencerFix a bug in RoundDoubleToAPInt where it would force...
2007-02-27 Reid SpencerJoin two lines that can be joined.
2007-02-27 Reid SpencerImplement countLeadingOnes() and getMinSignedBits(...
2007-02-27 Reid SpencerImprove APInt interface:
2007-02-27 Reid SpencerConform to single person attribution in file comment.
2007-02-27 Reid Spencer1. Fix three serious bugs in the comparison code.
2007-02-27 Reid SpencerGet rid of extraneous // in file comment.
2007-02-27 Reid SpencerSimplify and document RoundDoubleToAPInt.
2007-02-26 Reid Spencer1. Make sure all delete operators of arrays use the...
2007-02-26 Reid SpencerImplement the getHashValue method.
2007-02-26 Reid SpencerRe-enable this. The header was committed.
2007-02-26 Chris Lattneranother missing header :( :( :(
2007-02-26 Reid Spencer1. Remove redundant calls to clearUsedBits().
2007-02-26 Reid SpencerRewrite lshr to not do bit by bit copy but to copy...
2007-02-25 Reid SpencerFix sext operation. Shifting by zero would leave an...
2007-02-25 Reid Spencer1. Fix the flip() method to correctly flip all words...
2007-02-25 Reid Spencer1. Provide more detail in file comment.
2007-02-25 Reid SpencerAllow this to compile now that the header file is check...
2007-02-25 Chris Lattnerthis doesn't compile, disable it
2007-02-25 Reid SpencerClean up lshr and ashr to coding standards.
2007-02-25 Reid SpencerWhoops, last word with bits in large shift left wasn...
2007-02-25 Reid SpencerFix the > 64 bits case for left shift.
2007-02-24 Reid SpencerFix the remainder shifting in KnuthDiv.
2007-02-24 Reid Spencer1. Fix a bug in fromString for the <= 64bits case
2007-02-24 Reid Spencer1. Fix last bug in KnuthDiv. All divide tests pass...
2007-02-24 Reid Spencer1. Make internal functions take const arguments where...
2007-02-24 Chris Lattnerremove folding set debug output
2007-02-23 Chris LattnerAvoid TBAA issue.
2007-02-23 Reid Spencer1. Fix a carry out problem in add if destination and...
2007-02-22 Reid SpencerWhen converting from 64 to 32-bits, use the actual...
2007-02-22 Reid SpencerFix countLeadingZeros in the case that the bitwidth...
2007-02-21 Reid SpencerReorganize some code to make it clearer, avoid a few...
2007-02-21 Reid SpencerFix the carry in addition.
2007-02-21 Reid Spencer1. Add a dump() method for faster debugging.
2007-02-21 Reid SpencerFix countLeadingZeros to actually return the correct...
2007-02-20 Reid SpencerMake long addition and subtraction work. Speed things...
2007-02-20 Reid SpencerClean up variable names in operator*.
2007-02-20 Reid SpencerUse INFINITY macro from math.h instead of constructing...
2007-02-20 Reid SpencerFirst version that can process arith.cpp test case...
2007-02-20 Chris LattnerNot all managedstatics need object pointers.
2007-02-18 Reid Spencer1. Fix some indentation and variable names in the get...
2007-02-18 Reid Spencer1. Use APINT_WORD_SIZE instead of sizeof(uint64_t)
2007-02-18 Reid Spencer1. Remove dead code (lshift function).
2007-02-18 Reid SpencerMake add_1 exit early if carry is 0.
2007-02-18 Reid SpencerImplement signed output for toString.
2007-02-17 Reid SpencerFix some bugs in division logic.
2007-02-17 Reid SpencerMove static functions closer to their usage.
2007-02-17 Reid SpencerClean up the divide and remainder logic a bit (exit...
2007-02-17 Reid SpencerFix bugs introduced by constructor parameter order...
2007-02-16 Reid SpencerReview changes:
2007-02-16 Anton KorobeynikovAdd possibility to set memory limit for binaries run...
2007-02-15 Zhou ShengFix some buges:
2007-02-14 Reid SpencerUse brute-force algorithm for to_string. It doesn't...
2007-02-13 Reid SpencerMake some minor improvements to APInt:
2007-02-12 Zhou Sheng1. Make APInt::shl work correctly and more efficiently.
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...
next