summaryrefslogtreecommitdiff
path: root/lib/Support/APInt.cpp
Commit message (Expand)AuthorAge
...
* improve portability to minix, patch by Chris Lattner2010-03-26
* Fix minor style issues.Dan Gohman2010-03-24
* Teach APFloat how to create both QNaNs and SNaNs and with arbitrary-widthJohn McCall2010-02-28
* Fix "the the" and similar typos.Dan Gohman2010-02-10
* Make APInt::countLeadingZerosSlowCase() treat the contents of padding bitsJohn McCall2010-02-03
* Change errs() to dbgs().David Greene2010-01-05
* Set Remainder before Quotient in case Quotient and LHS alias. The newJohn McCall2009-12-24
* Tabs -> spaces, and remove trailing whitespace.Daniel Dunbar2009-09-20
* Remove some unused variables and methods warned about byDuncan Sands2009-09-06
* remove the dead std::ostream APInt inserterChris Lattner2009-08-23
* Clean up the APInt function getDigit.Erick Tryzelaar2009-08-21
* Update error messages for '+'. Fix grammar and make the twoEric Christopher2009-08-21
* Fix trailing whitespace and 80-col violation.Eric Christopher2009-08-21
* Fix bug with APInt::getBitsNeeded with for base 10 numbers 0-9.Erick Tryzelaar2009-08-21
* Allow '+' to appear in APInt strings, and add more unit tests.Erick Tryzelaar2009-08-21
* Switch to SmallString::str from SmallString::c_str, and removeDaniel Dunbar2009-08-19
* Convert APint::{fromString,APInt,getBitsNeeded} to use StringRef.Daniel Dunbar2009-08-13
* Add attempted idiotproofing comment per review.Dale Johannesen2009-08-12
* Fix a nondeterministic bug in APInt::roundToDouble;Dale Johannesen2009-08-12
* llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable.Torok Edwin2009-07-14
* Switch to raw_ostream.Daniel Dunbar2009-07-13
* assert(0) -> LLVM_UNREACHABLE.Torok Edwin2009-07-11
* Reapply 74494, this time removing the conflicting definition of operator<<Dan Gohman2009-06-30
* Temporarily revert r74494. It was causing failures in the unit tests.Bill Wendling2009-06-30
* Define an operator<< for APInt to be used with std::ostream.Dan Gohman2009-06-30
* 80 column violation.Evan Cheng2009-05-21
* Fix whitespacing (space after switch).Mike Stump2009-05-13
* Move helper functions for optimizing division by constant into the APIntJay Foad2009-04-30
* Fix PR4040: APInt's string constructor is too strictChris Lattner2009-04-25
* Use CHAR_BIT instead of hard-coding 8 in several places where itDan Gohman2009-04-01
* Fix comment typo.Duncan Sands2009-03-19
* Fix a hashing bug in APInt. A certain pathological testcase (tooStuart Hastings2009-03-13
* APInt's countLeadingOnes() was broken for negative i128 values,Torok Edwin2009-01-27
* Remove uses of uint32_t in favor of 'unsigned' for better Chris Lattner2009-01-21
* Fix typo, sentence fragment.Nick Lewycky2009-01-19
* rearrange some code.Chris Lattner2008-10-11
* Switch the asmprinter (.ll) and all the stuff it requires over toChris Lattner2008-08-23
* Move the fast-path (<=i64) cases of various APInt methods inlineChris Lattner2008-08-20
* It's not necessary to check if a value is null before delete[].Dan Gohman2008-08-20
* Rework the routines that convert AP[S]Int into a string. Now, instead ofChris Lattner2008-08-17
* remove a dead APInt ctor.Chris Lattner2008-08-17
* Fix PR2088. Use modulo linear equation solver to compute loop iterationWojciech Matyjewicz2008-07-20
* First step to fix PR2088. Implement routine to compute the Wojciech Matyjewicz2008-06-23
* Avoid creating a redundant zero APInt.Dan Gohman2008-06-21
* As comments said, for negative value, the arithmetic Zhou Sheng2008-06-05
* Suppress -Wshorten-64-to-32 warnings for 64-bit hosts.Evan Cheng2008-05-02
* Make several symbols static.Dan Gohman2008-04-10
* A quick nm audit turned up several fixed tables and objects that wereDan Gohman2008-03-25
* Add assert for non-hexadecimal radixes.Bill Wendling2008-03-16
* Fix a typo. It's causing consumer-typeset to miscompile. Perhaps more.Evan Cheng2008-03-07