More templatization.
[oota-llvm.git] / lib / Support / APInt.cpp
2007-10-12 Neil BoothDon't attempt to mask no bits
2007-10-08 Neil BoothAdd a new function tcExtract for extracting a bignum...
2007-10-06 Neil BoothFix and clarify some comments.
2007-10-06 Neil BoothGeneralize tcFullMultiply so that the operands can...
2007-09-21 Dale JohannesenChange APFloat::convertFromInteger to take the incoming
2007-09-17 Devang PatelDo not hide APInt::dump() inside #ifndef NDEBUG.
2007-09-14 Dale JohannesenRemove the assumption that FP's are either float or
2007-08-23 Chris Lattnerrename APInt::toString -> toStringUnsigned for symmetry...
2007-08-20 Chris Lattnerinitial checkin of Neil's APFloat work.
2007-08-16 Chris LattnerThis adds a bunch of static functions that implement...
2007-05-19 Reid SpencerFix an assertion introduced by my last change to the...
2007-05-17 Reid SpencerGet rid of leading zeros in the output of toString.
2007-05-17 Reid SpencerFor lshr by 0 bits, just return *this as a short cut...
2007-05-16 Reid SpencerFix a bug in the "fromString" method where radix 2...
2007-05-14 Reid SpencerMake the results for the rotate functions correct when...
2007-05-13 Reid SpencerAdd some things needed by the llvm-gcc version supporti...
2007-05-12 Reid SpencerFix shl to produce the correct result when the bitwidth...
2007-05-03 Chris Lattnersilence some annoying gcc 4.3 warnings
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-11 Reid SpencerFix an approximate calculation in an assertion not...
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-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 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 SpencerUse a real table in sqrt to shorten and quicken the...
2007-03-01 Reid SpencerAdd a square root function.
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-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-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-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-09 Zhou ShengEliminates friend function declaration inside APInt...
2007-02-08 Zhou ShengSwitched this file on accidently.
2007-02-08 Zhou ShengAs Chris and Reid suggested, remove "isSigned" field...
2007-02-07 Zhou ShengAs Chris suggested, fixed some problems. (This is the...
2007-02-06 Zhou ShengAs Reid suggested, fixed some problems.
2007-02-06 Chris LattnerDisable this for now.
2007-02-06 Zhou ShengAdd a class APInt to represent arbitrary precision...