Implement unionWith.
[oota-llvm.git] / lib / Support /
2007-03-02 Nick LewyckyImplement unionWith.
2007-03-02 Reid SpencerAdd a FIXME
2007-03-02 Reid SpencerFix a problem where shifting by 64-bits leads to incorr...
2007-03-01 Reid SpencerCombine two lines that can be.
2007-03-01 Reid SpencerMake the static table of results in sqrt const.
2007-03-01 Reid SpencerAdd methods for bit width modification: sextOrTrunc...
2007-03-01 Reid SpencerRemove the "isSigned" parameters from ConstantRange...
2007-03-01 Reid SpencerUse a real table in sqrt to shorten and quicken the...
2007-03-01 Reid SpencerAdd a square root function.
2007-02-28 Reid SpencerMove ConstantRange class to lib/Support from lib/Analys...
2007-02-28 Reid SpencerFor PR1205:
2007-02-28 Reid SpencerFor PR1205:
2007-02-28 Reid SpencerFor PR1205:
2007-02-28 Reid SpencerMake the trunc/sext/zext methods return APInt& so that...
2007-02-28 Reid SpencerFix a bug in RoundDoubleToAPInt where it would force...
2007-02-27 Reid SpencerJoin two lines that can be joined.
2007-02-27 Reid SpencerImplement countLeadingOnes() and getMinSignedBits(...
2007-02-27 Reid SpencerImprove APInt interface:
2007-02-27 Reid SpencerConform to single person attribution in file comment.
2007-02-27 Reid Spencer1. Fix three serious bugs in the comparison code.
2007-02-27 Reid SpencerGet rid of extraneous // in file comment.
2007-02-27 Reid SpencerSimplify and document RoundDoubleToAPInt.
2007-02-26 Reid Spencer1. Make sure all delete operators of arrays use the...
2007-02-26 Reid SpencerImplement the getHashValue method.
2007-02-26 Reid SpencerRe-enable this. The header was committed.
2007-02-26 Chris Lattneranother missing header :( :( :(
2007-02-26 Reid Spencer1. Remove redundant calls to clearUsedBits().
2007-02-26 Reid SpencerRewrite lshr to not do bit by bit copy but to copy...
2007-02-25 Reid SpencerFix sext operation. Shifting by zero would leave an...
2007-02-25 Reid Spencer1. Fix the flip() method to correctly flip all words...
2007-02-25 Reid Spencer1. Provide more detail in file comment.
2007-02-25 Reid SpencerAllow this to compile now that the header file is check...
2007-02-25 Chris Lattnerthis doesn't compile, disable it
2007-02-25 Reid SpencerClean up lshr and ashr to coding standards.
2007-02-25 Reid SpencerWhoops, last word with bits in large shift left wasn...
2007-02-25 Reid SpencerFix the > 64 bits case for left shift.
2007-02-24 Reid SpencerFix the remainder shifting in KnuthDiv.
2007-02-24 Reid Spencer1. Fix a bug in fromString for the <= 64bits case
2007-02-24 Reid Spencer1. Fix last bug in KnuthDiv. All divide tests pass...
2007-02-24 Reid Spencer1. Make internal functions take const arguments where...
2007-02-24 Chris Lattnerremove folding set debug output
2007-02-23 Chris LattnerAvoid TBAA issue.
2007-02-23 Reid Spencer1. Fix a carry out problem in add if destination and...
2007-02-22 Reid SpencerWhen converting from 64 to 32-bits, use the actual...
2007-02-22 Reid SpencerFix countLeadingZeros in the case that the bitwidth...
2007-02-21 Reid SpencerReorganize some code to make it clearer, avoid a few...
2007-02-21 Reid SpencerFix the carry in addition.
2007-02-21 Reid Spencer1. Add a dump() method for faster debugging.
2007-02-21 Reid SpencerFix countLeadingZeros to actually return the correct...
2007-02-20 Reid SpencerMake long addition and subtraction work. Speed things...
2007-02-20 Reid SpencerClean up variable names in operator*.
2007-02-20 Reid SpencerUse INFINITY macro from math.h instead of constructing...
2007-02-20 Reid SpencerFirst version that can process arith.cpp test case...
2007-02-20 Chris LattnerNot all managedstatics need object pointers.
2007-02-18 Reid Spencer1. Fix some indentation and variable names in the get...
2007-02-18 Reid Spencer1. Use APINT_WORD_SIZE instead of sizeof(uint64_t)
2007-02-18 Reid Spencer1. Remove dead code (lshift function).
2007-02-18 Reid SpencerMake add_1 exit early if carry is 0.
2007-02-18 Reid SpencerImplement signed output for toString.
2007-02-17 Reid SpencerFix some bugs in division logic.
2007-02-17 Reid SpencerMove static functions closer to their usage.
2007-02-17 Reid SpencerClean up the divide and remainder logic a bit (exit...
2007-02-17 Reid SpencerFix bugs introduced by constructor parameter order...
2007-02-16 Reid SpencerReview changes:
2007-02-16 Anton KorobeynikovAdd possibility to set memory limit for binaries run...
2007-02-15 Zhou ShengFix some buges:
2007-02-14 Reid SpencerUse brute-force algorithm for to_string. It doesn't...
2007-02-13 Reid SpencerMake some minor improvements to APInt:
2007-02-12 Zhou Sheng1. Make APInt::shl work correctly and more efficiently.
2007-02-11 Chris LattnerAdd support for removing elements out of StringMap.
2007-02-11 Chris LattnerReplace the ugly FindValue method with STL-like find...
2007-02-11 Chris Lattnerremove support for stringmap visitors now that iterator...
2007-02-11 Chris Lattneradd support for iterators.
2007-02-11 Nick LewyckyFix comments to match names of functions.
2007-02-09 Zhou ShengEliminates friend function declaration inside APInt...
2007-02-08 Chris LattnerRename CStringMap -> StringMap, since it now supports...
2007-02-08 Chris LattnerAllow cstringmap to contain strings with nul characters...
2007-02-08 Zhou ShengSwitched this file on accidently.
2007-02-08 Zhou ShengAs Chris and Reid suggested, remove "isSigned" field...
2007-02-07 Zhou ShengAs Chris suggested, fixed some problems. (This is the...
2007-02-07 Chris Lattnerdo not let the table fill up with tombstones.
2007-02-06 Zhou ShengAs Reid suggested, fixed some problems.
2007-02-06 Chris LattnerDisable this for now.
2007-02-06 Zhou ShengAdd a class APInt to represent arbitrary precision...
2007-02-05 Chris LattnerFix a bug in smallptrset::erase: in the small case...
2007-02-04 Chris LattnerEncode small integers more densely in foldingset, avoid...
2007-02-01 Chris Lattnerimprove comments, add an assertion
2007-02-01 Devang PatelAdd PrintVersionMessage() that tools can use to print...
2007-01-31 Reid SpencerAdd some debug output.
2007-01-31 Chris Lattnerminor cleanups. Fix off-by-one in accounting the numbe...
2007-01-30 Chris Lattnerreformat comment
2007-01-27 Chris Lattnerimplement SmallPtrSet::erase
2007-01-27 Chris Lattneradd a note
2007-01-27 Chris LattnerAdd a new SmallSet ADT specialized for pointers.
2007-01-23 Anton KorobeynikovMoved disassembler to libSystem
2007-01-19 Reid SpencerFor PR1043:
2007-01-19 Anton KorobeynikovAdding disassembler interface and external hook to...
2007-01-15 Chris Lattnerrename Type::isIntegral to Type::isInteger, eliminating...
2007-01-15 Chris LattnerUpdate code to eliminate calls to isInteger, calling...
2007-01-15 Chris LattnerFix correlated exprs regressions
next