1. Make sure all delete operators of arrays use the array form of delete.
[oota-llvm.git] / lib / Support / APInt.cpp
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...