summaryrefslogtreecommitdiff
path: root/lib/Support/APInt.cpp
Commit message (Expand)AuthorAge
* APInt: Simplify code. No functionality change.Benjamin Kramer2013-06-01
* [APInt] Implement tcDecrement as a counterpart to tcIncrement. This is for us...Michael Gottesman2013-05-28
* Replace Count{Leading,Trailing}Zeros_{32,64} with count{Leading,Trailing}Zeros.Michael J. Spencer2013-05-24
* Use pre-inc, pre-dec when possible.Jakub Staszak2013-03-20
* Move part of APInt implementation from header to cpp file. These methodsJakub Staszak2013-02-20
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* Revert 'Fix a typo 'iff' => 'if''. iff is an abreviation of if and only if. S...Sylvestre Ledru2012-09-27
* Fix a typo 'iff' => 'if'Sylvestre Ledru2012-09-27
* PR13326: Fix a subtle edge case in the udiv -> magic multiply generator.Benjamin Kramer2012-07-11
* Fix a crash in APInt::lshr when shiftAmt > BitWidth.Chad Rosier2012-06-08
* Move APInt::operator[] inline.Benjamin Kramer2012-03-14
* Move APInt::operator! inline, it's small and fuses well with surrounding code...Benjamin Kramer2012-03-14
* Inline a trivial helper function.Benjamin Kramer2012-03-12
* Replace a hand-coded leading one counting loop with the magic from MathExtras.h.Benjamin Kramer2012-03-11
* Replace the hashing functions on APInt and APFloat with overloads of theChandler Carruth2012-03-04
* Fix undefined behavior.Ahmed Charles2012-02-24
* Add r149110 back with a fix for when the vector and the int have the sameRafael Espindola2012-01-27
* Fix APInt::rotl and APInt::rotr so that they work correctly. Found while wri...Eli Friedman2011-12-22
* APInt: update asserts for base-36Dylan Noblesmith2011-12-16
* Fix unreachable return & simplify some branches.David Blaikie2011-12-01
* Correctly byte-swap APInts with bit-widths greater than 64.Richard Smith2011-11-23
* Fix APInt::operator*= so that it computes the correct result for large intege...Eli Friedman2011-10-07
* U is good enoughDouglas Gregor2011-09-20
* Eliminate sign-comparison warnings in APIntDouglas Gregor2011-09-20
* Silence -Wsign-compare warnings from GCC.Benjamin Kramer2011-09-19
* Add APInt support for converting to/from hexatridecimal stringsDouglas Gregor2011-09-14
* Add APInt(numBits, ArrayRef<uint64_t> bigVal) constructor to prevent future a...Jeffrey Yasskin2011-07-18
* add option for literal formatting to APInt::toString()Ted Kremenek2011-06-15
* fix a bug for hosts without round, PR8893.Chris Lattner2011-05-22
* Fix a ton of comment typos found by codespell. Patch byChris Lattner2011-04-15
* Constant folding support for calls to umul.with.overflow(), basically identic...Frits van Bommel2011-03-27
* Add an argument to APInt's magic udiv calculation to specify the number of bi...Benjamin Kramer2011-03-17
* The signed version of our "magic number" computation for the integer approxim...Cameron Zwarich2011-02-21
* PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() andJay Foad2010-12-07
* APInt: microoptimize a few methods.Benjamin Kramer2010-12-04
* PR5207: Rename overloaded APInt methods set(), clear(), flip() toJay Foad2010-12-01
* PR5207: Make APInt::set(), APInt::clear() and APInt::flip() return void.Jay Foad2010-11-30
* Bounds-check APInt's operator[].Dan Gohman2010-11-18
* fix a bug I introduced, no idea how this didn't repro right.Chris Lattner2010-10-14
* add uadd_ov/usub_ov to apint, consolidate constant foldingChris Lattner2010-10-14
* constify these methods.Chris Lattner2010-10-13
* add a few operations for signed operations that also Chris Lattner2010-10-13
* stomp some more undefined behavior, PR7775.Chris Lattner2010-08-18
* Don't pass StringRef by reference.Benjamin Kramer2010-07-14
* improve portability to systems that don't have round, patch byChris Lattner2010-05-15
* 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