Speculative fix for Windows build after r220932
[oota-llvm.git] / lib / Support / APInt.cpp
2014-10-13 David MajnemerInstCombine: Don't miscompile (x lshr C1) udiv C2
2014-10-12 Benjamin KramerModernize old-style static asserts. NFC.
2014-10-10 Benjamin KramerAPInt: Unfold return expressions so RVO can work.
2014-09-11 Sanjay Pateltypo
2014-04-22 Chandler Carruth[Modules] Fix potential ODR violations by sinking the...
2014-04-07 Craig Topper[C++11] Make use of 'nullptr' in the Support library.
2014-01-24 Alp TokerFix known typos
2013-12-13 Michael GottesmanRemove APInt::extractBit since it is already implemente...
2013-12-13 Michael Gottesman[block-freq] Add the APInt method extractBit.
2013-06-01 Benjamin KramerAPInt: Simplify code. No functionality change.
2013-05-28 Michael Gottesman[APInt] Implement tcDecrement as a counterpart to tcInc...
2013-05-24 Michael J. SpencerReplace Count{Leading,Trailing}Zeros_{32,64} with count...
2013-03-20 Jakub StaszakUse pre-inc, pre-dec when possible.
2013-02-20 Jakub StaszakMove part of APInt implementation from header to cpp...
2012-12-03 Chandler CarruthUse the new script to sort the includes of every file...
2012-09-27 Sylvestre LedruRevert 'Fix a typo 'iff' => 'if''. iff is an abreviatio...
2012-09-27 Sylvestre LedruFix a typo 'iff' => 'if'
2012-07-11 Benjamin KramerPR13326: Fix a subtle edge case in the udiv -> magic...
2012-06-08 Chad RosierFix a crash in APInt::lshr when shiftAmt > BitWidth.
2012-03-14 Benjamin KramerMove APInt::operator[] inline.
2012-03-14 Benjamin KramerMove APInt::operator! inline, it's small and fuses...
2012-03-12 Benjamin KramerInline a trivial helper function.
2012-03-11 Benjamin KramerReplace a hand-coded leading one counting loop with...
2012-03-04 Chandler CarruthReplace the hashing functions on APInt and APFloat...
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.
next