| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Remove some unneeded headers and replace some headers with forward class decl... | Mehdi Amini | 2016-04-16 | 1 | -1/+1 |
* | APInt: Add overload of isMask | Matt Arsenault | 2016-04-12 | 1 | -0/+17 |
* | Implement constant folding for bitreverse | Matt Arsenault | 2016-03-21 | 1 | -0/+42 |
* | Fix APInt value initialization to give a zero value as any sane integer type | Richard Smith | 2015-09-04 | 1 | -0/+7 |
* | Change APInt comparison with uint64_t. | Pawel Bylica | 2015-07-01 | 1 | -0/+127 |
* | Add missing <array> include. | Pawel Bylica | 2015-06-25 | 1 | -0/+1 |
* | Express APInt::{s,u}{l,g}e(uint64_t) in terms of APInt::{s,u}{l,g}t(uint64_t)... | Pawel Bylica | 2015-06-25 | 1 | -0/+38 |
* | [APInt] Remove special case for i1. | Benjamin Kramer | 2015-06-04 | 1 | -0/+6 |
* | Fix APInt long division algorithm | Pawel Bylica | 2015-04-24 | 1 | -182/+66 |
* | Another test to exercise APInt divide step D6. | Yaron Keren | 2015-04-22 | 1 | -0/+13 |
* | Fix rare case where APInt divide algorithm applied un-needed transformation. | Yaron Keren | 2015-03-26 | 1 | -0/+200 |
* | [APInt] Add an isSplat helper and use it in some places. | Benjamin Kramer | 2015-03-25 | 1 | -0/+40 |
* | Disable -Wunknown-pragmas in a test so that Clang without -Wself-move will not | Richard Trieu | 2015-01-14 | 1 | -0/+4 |
* | Silence warnings about unknown pragmas for compilers that are not Clang. NFC. | Aaron Ballman | 2015-01-13 | 1 | -1/+4 |
* | Disable a warning for self move since the test is checking for this behavior. | Richard Trieu | 2015-01-13 | 1 | -0/+4 |
* | Simplify creation of a bunch of ArrayRefs by using None, makeArrayRef or just... | Craig Topper | 2014-08-27 | 1 | -4/+4 |
* | Fix -Wsign-compare warnings | David Blaikie | 2014-08-12 | 1 | -3/+3 |
* | APInt: Make self-move-assignment a no-op to fix stage3 clang-cl | Reid Kleckner | 2014-08-12 | 1 | -0/+17 |
* | Clean up whitespace | Duncan P. N. Exon Smith | 2014-01-31 | 1 | -2/+2 |
* | [APInt] Fix nearestLogBase2 to return correct answers for very large APInt an... | Michael Gottesman | 2014-01-19 | 1 | -0/+11 |
* | [APInt] Fixed bug where APInt(UINT32_MAX, 0) would blow up when being constru... | Michael Gottesman | 2014-01-19 | 1 | -0/+8 |
* | Remove APInt::extractBit since it is already implemented via operator[]. Chan... | Michael Gottesman | 2013-12-13 | 1 | -3/+3 |
* | [block-freq] Add the method APInt::nearestLogBase2(). | Michael Gottesman | 2013-12-13 | 1 | -4/+40 |
* | [block-freq] Add the APInt method extractBit. | Michael Gottesman | 2013-12-13 | 1 | -0/+26 |
* | [APInt] Implement tcDecrement as a counterpart to tcIncrement. This is for us... | Michael Gottesman | 2013-05-28 | 1 | -0/+65 |
* | Move the SplatByte helper to APInt and generalize it a bit. | Benjamin Kramer | 2013-02-20 | 1 | -0/+10 |
* | ADT: Correct APInt::getActiveWords for zero values | Meador Inge | 2013-02-07 | 1 | -0/+8 |
* | Sort the #include lines for unittest/... | Chandler Carruth | 2012-12-04 | 1 | -2/+2 |
* | fix the quotient returned by sdivrem() for the case when LHS is negative and ... | Nuno Lopes | 2012-05-22 | 1 | -0/+28 |
* | Add a unittest for rotating a really big APInt. | Benjamin Kramer | 2012-02-07 | 1 | -0/+4 |
* | Some unittests for APInt rotates; patch by Cameron McInally. | Eli Friedman | 2011-12-22 | 1 | -0/+32 |
* | APInt: update asserts for base-36 | Dylan Noblesmith | 2011-12-16 | 1 | -3/+3 |
* | Fix APInt::operator*= so that it computes the correct result for large intege... | Eli Friedman | 2011-10-07 | 1 | -0/+9 |
* | Add APInt support for converting to/from hexatridecimal strings | Douglas Gregor | 2011-09-14 | 1 | -1/+24 |
* | Add APInt(numBits, ArrayRef<uint64_t> bigVal) constructor to prevent future a... | Jeffrey Yasskin | 2011-07-18 | 1 | -0/+4 |
* | unittests: add test for APInt::toString() | Dylan Noblesmith | 2011-06-15 | 1 | -0/+46 |
* | Add an argument to APInt's magic udiv calculation to specify the number of bi... | Benjamin Kramer | 2011-03-17 | 1 | -0/+2 |
* | The signed version of our "magic number" computation for the integer approxim... | Cameron Zwarich | 2011-02-21 | 1 | -0/+18 |
* | PR5207: Rename overloaded APInt methods set(), clear(), flip() to | Jay Foad | 2010-12-01 | 1 | -1/+1 |
* | Attempt to unbreak the FreeBSD buildbot by XFAILing a unit test that seems to be | Jakob Stoklund Olesen | 2010-09-14 | 1 | -0/+5 |
* | Switch from EXPECT_EQ({true,false, ...) to the more canonical | Chandler Carruth | 2010-07-13 | 1 | -2/+2 |
* | Fix death tests in -Asserts builds. | Jeffrey Yasskin | 2010-03-17 | 1 | -0/+2 |
* | Pacify the compiler (signed with unsigned comparison) by making | Duncan Sands | 2009-10-13 | 1 | -6/+6 |
* | Add a ceilLogBase2 function to APInt. | Dan Gohman | 2009-10-13 | 1 | -0/+11 |
* | Fix a few more conversion warnings on 4.0 | Daniel Dunbar | 2009-09-18 | 1 | -5/+5 |
* | Another try at fixing compile warnings on 4.0 | Daniel Dunbar | 2009-09-17 | 1 | -18/+18 |
* | Attempt to fix some 4.0.0 build warnings. | Daniel Dunbar | 2009-09-14 | 1 | -23/+23 |
* | Simplify, now that gtest supports raw_ostream directly. | Daniel Dunbar | 2009-09-06 | 1 | -8/+0 |
* | split raw_os_ostream out to its own header and implementation file. This | Chris Lattner | 2009-08-24 | 1 | -1/+1 |
* | Unbreak unit tests. | Daniel Dunbar | 2009-08-24 | 1 | -0/+7 |