Fix undefined behavior.
[oota-llvm.git] / lib / Support / APInt.cpp
2012-02-24 Ahmed CharlesFix undefined behavior.
2012-01-27 Rafael EspindolaAdd r149110 back with a fix for when the vector and...
2011-12-22 Eli FriedmanFix APInt::rotl and APInt::rotr so that they work corre...
2011-12-16 Dylan NoblesmithAPInt: update asserts for base-36
2011-12-01 David BlaikieFix unreachable return & simplify some branches.
2011-11-23 Richard SmithCorrectly byte-swap APInts with bit-widths greater...
2011-10-07 Eli FriedmanFix APInt::operator*= so that it computes the correct...
2011-09-20 Douglas GregorU is good enough
2011-09-20 Douglas GregorEliminate sign-comparison warnings in APInt
2011-09-19 Benjamin KramerSilence -Wsign-compare warnings from GCC.
2011-09-14 Douglas GregorAdd APInt support for converting to/from hexatridecimal...
2011-07-18 Jeffrey YasskinAdd APInt(numBits, ArrayRef<uint64_t> bigVal) construct...
2011-06-15 Ted Kremenekadd option for literal formatting to APInt::toString()
2011-05-22 Chris Lattnerfix a bug for hosts without round, PR8893.
2011-04-15 Chris LattnerFix a ton of comment typos found by codespell. Patch by
2011-03-27 Frits van BommelConstant folding support for calls to umul.with.overflo...
2011-03-17 Benjamin KramerAdd an argument to APInt's magic udiv calculation to...
2011-02-21 Cameron ZwarichThe signed version of our "magic number" computation...
2010-12-07 Jay FoadPR5207: Change APInt methods trunc(), sext(), zext...
2010-12-04 Benjamin KramerAPInt: microoptimize a few methods.
2010-12-01 Jay FoadPR5207: Rename overloaded APInt methods set(), clear...
2010-11-30 Jay FoadPR5207: Make APInt::set(), APInt::clear() and APInt...
2010-11-18 Dan GohmanBounds-check APInt's operator[].
2010-10-14 Chris Lattnerfix a bug I introduced, no idea how this didn't repro...
2010-10-14 Chris Lattneradd uadd_ov/usub_ov to apint, consolidate constant...
2010-10-13 Chris Lattnerconstify these methods.
2010-10-13 Chris Lattneradd a few operations for signed operations that also
2010-08-18 Chris Lattnerstomp some more undefined behavior, PR7775.
2010-07-14 Benjamin KramerDon't pass StringRef by reference.
2010-05-15 Chris Lattnerimprove portability to systems that don't have round...
2010-03-26 Chris Lattnerimprove portability to minix, patch by
2010-03-24 Dan GohmanFix minor style issues.
2010-02-28 John McCallTeach APFloat how to create both QNaNs and SNaNs and...
2010-02-10 Dan GohmanFix "the the" and similar typos.
2010-02-03 John McCallMake APInt::countLeadingZerosSlowCase() treat the conte...
2010-01-05 David GreeneChange errs() to dbgs().
2009-12-24 John McCallSet Remainder before Quotient in case Quotient and...
2009-09-20 Daniel DunbarTabs -> spaces, and remove trailing whitespace.
2009-09-06 Duncan SandsRemove some unused variables and methods warned about by
2009-08-23 Chris Lattnerremove the dead std::ostream APInt inserter
2009-08-21 Erick TryzelaarClean up the APInt function getDigit.
2009-08-21 Eric ChristopherUpdate error messages for '+'. Fix grammar and make...
2009-08-21 Eric ChristopherFix trailing whitespace and 80-col violation.
2009-08-21 Erick TryzelaarFix bug with APInt::getBitsNeeded with for base 10...
2009-08-21 Erick TryzelaarAllow '+' to appear in APInt strings, and add more...
2009-08-19 Daniel DunbarSwitch to SmallString::str from SmallString::c_str...
2009-08-13 Daniel DunbarConvert APint::{fromString,APInt,getBitsNeeded} to...
2009-08-12 Dale JohannesenAdd attempted idiotproofing comment per review.
2009-08-12 Dale JohannesenFix a nondeterministic bug in APInt::roundToDouble;
2009-07-14 Torok Edwinllvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE...
2009-07-13 Daniel DunbarSwitch to raw_ostream.
2009-07-11 Torok Edwinassert(0) -> LLVM_UNREACHABLE.
2009-06-30 Dan GohmanReapply 74494, this time removing the conflicting defin...
2009-06-30 Bill WendlingTemporarily revert r74494. It was causing failures...
2009-06-30 Dan GohmanDefine an operator<< for APInt to be used with std...
2009-05-21 Evan Cheng80 column violation.
2009-05-13 Mike StumpFix whitespacing (space after switch).
2009-04-30 Jay FoadMove helper functions for optimizing division by consta...
2009-04-25 Chris LattnerFix PR4040: APInt's string constructor is too strict
2009-04-01 Dan GohmanUse CHAR_BIT instead of hard-coding 8 in several places...
2009-03-19 Duncan SandsFix comment typo.
2009-03-13 Stuart HastingsFix a hashing bug in APInt. A certain pathological...
2009-01-27 Torok EdwinAPInt's countLeadingOnes() was broken for negative...
2009-01-21 Chris LattnerRemove uses of uint32_t in favor of 'unsigned' for...
2009-01-19 Nick LewyckyFix typo, sentence fragment.
2008-10-11 Chris Lattnerrearrange some code.
2008-08-23 Chris LattnerSwitch the asmprinter (.ll) and all the stuff it requir...
2008-08-20 Chris LattnerMove the fast-path (<=i64) cases of various APInt metho...
2008-08-20 Dan GohmanIt's not necessary to check if a value is null before...
2008-08-17 Chris LattnerRework the routines that convert AP[S]Int into a string...
2008-08-17 Chris Lattnerremove a dead APInt ctor.
2008-07-20 Wojciech MatyjewiczFix PR2088. Use modulo linear equation solver to comput...
2008-06-23 Wojciech MatyjewiczFirst step to fix PR2088. Implement routine to compute the
2008-06-21 Dan GohmanAvoid creating a redundant zero APInt.
2008-06-05 Zhou ShengAs comments said, for negative value, the arithmetic
2008-05-02 Evan ChengSuppress -Wshorten-64-to-32 warnings for 64-bit hosts.
2008-04-10 Dan GohmanMake several symbols static.
2008-03-25 Dan GohmanA quick nm audit turned up several fixed tables and...
2008-03-16 Bill WendlingAdd assert for non-hexadecimal radixes.
2008-03-07 Evan ChengFix a typo. It's causing consumer-typeset to miscompile...
2008-02-29 Dan GohmanAdd support to APInt for shift and rotate operations...
2008-02-19 Ted KremenekFixed bug in APInt::Profile() where the BitWidth field...
2008-02-14 Dan GohmanFix a warning about comparison between signed and unsigned,
2008-02-13 Dan GohmanAdd countTrailingOnes member functions to APInt.
2008-01-19 Ted KremenekAdded FoldingSet style 'profiling' support for APInt.
2007-12-29 Chris LattnerRemove attribution from file headers, per discussion...
2007-12-24 Anton KorobeynikovCygwin defines uint32_t as unsigned long. Unbreak call...
2007-12-11 Reid SpencerDon't have APInt.cpp depend upon DerivedTypes.h. This...
2007-11-23 Chris LattnerFix PR1816, by correcting the broken definition of...
2007-11-23 Chris LattnerFix APInt::countTrailingZeros to return BitWidth if...
2007-10-12 Neil BoothDon't attempt to mask no bits
2007-10-08 Neil BoothAdd a new function tcExtract for extracting a bignum...
2007-10-06 Neil BoothFix and clarify some comments.
2007-10-06 Neil BoothGeneralize tcFullMultiply so that the operands can...
2007-09-21 Dale JohannesenChange APFloat::convertFromInteger to take the incoming
2007-09-17 Devang PatelDo not hide APInt::dump() inside #ifndef NDEBUG.
2007-09-14 Dale JohannesenRemove the assumption that FP's are either float or
2007-08-23 Chris Lattnerrename APInt::toString -> toStringUnsigned for symmetry...
2007-08-20 Chris Lattnerinitial checkin of Neil's APFloat work.
2007-08-16 Chris LattnerThis adds a bunch of static functions that implement...
next