Age | Commit message (Expand) | Author |
2012-10-31 | Add extra declarations of hash_value needed to build llvm with xlc 12.1. | Rafael Espindola |
2012-10-26 | Stop APInt::shl from generating llvm.trap | Derek Schuff |
2012-09-13 | Fix Doxygen issues: | Dmitri Gribenko |
2012-08-23 | Fix a bunch of -Wdocumentation warnings. | Dmitri Gribenko |
2012-07-29 | APInt: Simplify code. | Benjamin Kramer |
2012-07-18 | Remove tabs. | Bill Wendling |
2012-07-15 | Move IsSameValue from clang's ASTImporter to be methods on the | Eric Christopher |
2012-06-02 | Add move semantics to APInt. | Benjamin Kramer |
2012-05-22 | fix the quotient returned by sdivrem() for the case when LHS is negative and ... | Nuno Lopes |
2012-03-14 | Move APInt::operator[] inline. | Benjamin Kramer |
2012-03-14 | Move APInt::operator! inline, it's small and fuses well with surrounding code... | Benjamin Kramer |
2012-03-04 | Replace the hashing functions on APInt and APFloat with overloads of the | Chandler Carruth |
2012-01-27 | Add r149110 back with a fix for when the vector and the int have the same | Rafael Espindola |
2011-11-28 | Handle more cases in APInt::getLowBitsSet's fast path. | Benjamin Kramer |
2011-09-14 | Add APInt support for converting to/from hexatridecimal strings | Douglas Gregor |
2011-07-18 | Add APInt(numBits, ArrayRef<uint64_t> bigVal) constructor to prevent future a... | Jeffrey Yasskin |
2011-06-15 | add option for literal formatting to APInt::toString() | Ted Kremenek |
2011-03-27 | Constant folding support for calls to umul.with.overflow(), basically identic... | Frits van Bommel |
2011-03-17 | Add an argument to APInt's magic udiv calculation to specify the number of bi... | Benjamin Kramer |
2011-02-24 | Add a getNumSignBits() method to APInt. | Cameron Zwarich |
2011-02-13 | add a helper method. | Chris Lattner |
2010-12-07 | PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and | Jay Foad |
2010-12-04 | APInt: microoptimize a few methods. | Benjamin Kramer |
2010-12-04 | Simplify APInt::getAllOnesValue. | Benjamin Kramer |
2010-12-01 | PR5207: Rename overloaded APInt methods set(), clear(), flip() to | Jay Foad |
2010-11-30 | PR5207: Make APInt::set(), APInt::clear() and APInt::flip() return void. | Jay Foad |
2010-11-28 | PR5207: remove unused methods APInt::Emit() and APInt::Read(). | Jay Foad |
2010-11-28 | PR5207: change APInt::doubleToBits() and APInt::floatToBits() to be | Jay Foad |
2010-11-03 | Factor code out of APInt to form a isUIntN helper function. | Dan Gohman |
2010-10-14 | add uadd_ov/usub_ov to apint, consolidate constant folding | Chris Lattner |
2010-10-13 | missed a line :( | Chris Lattner |
2010-10-13 | constify these methods. | Chris Lattner |
2010-10-13 | add a few operations for signed operations that also | Chris Lattner |
2010-08-13 | Use getAllOnesValue, saves a copy and looks better. | Benjamin Kramer |
2010-07-14 | Don't pass StringRef by reference. | Benjamin Kramer |
2010-04-08 | Add variants of ult, ule, etc. which take a uint64_t RHS, for convenience. | Dan Gohman |
2010-02-28 | Add an override to StringRef::getAsInteger which parses into an APInt. | John McCall |
2010-02-28 | Teach APFloat how to create both QNaNs and SNaNs and with arbitrary-width | John McCall |
2009-10-13 | Add a ceilLogBase2 function to APInt. | Dan Gohman |
2009-08-23 | remove the dead std::ostream APInt inserter | Chris Lattner |
2009-08-13 | Convert APint::{fromString,APInt,getBitsNeeded} to use StringRef. | Daniel Dunbar |
2009-06-30 | Reapply 74494, this time removing the conflicting definition of operator<< | Dan Gohman |
2009-06-30 | Temporarily revert r74494. It was causing failures in the unit tests. | Bill Wendling |
2009-06-30 | Define an operator<< for APInt to be used with std::ostream. | Dan Gohman |
2009-04-30 | Move helper functions for optimizing division by constant into the APInt | Jay Foad |
2009-04-13 | Add a static APInt::getNumWords | Douglas Gregor |
2009-04-01 | Use CHAR_BIT instead of hard-coding 8 in several places where it | Dan Gohman |
2009-02-20 | Fixed lint errors: | Misha Brukman |
2009-02-09 | These function return 'void'. Don't have 'return' return anything. | Bill Wendling |
2009-01-20 | eliminate use of uint32_t to improve compatibility with cygwin | Chris Lattner |