Avoid O(n*m) complexity in StringRef::find_first(_not)_of(StringRef).
[oota-llvm.git] / include / llvm / ADT / APInt.h
2007-02-28 Reid SpencerMake APInt a little more friendly to its users:
2007-02-28 Reid SpencergetActiveWords should return the number of words, not...
2007-02-27 Reid SpencerAdd some syntactic sugar.
2007-02-27 Reid SpencerImplement countLeadingOnes() and getMinSignedBits(...
2007-02-27 Reid SpencerImprove APInt interface:
2007-02-27 Reid SpencerAllow the RoundDoubleToAPInt function to specify a...
2007-02-26 Reid SpencerFix indentation.
2007-02-26 Reid Spencer1. Split getValue() into getSExtValue() and getZExtValu...
2007-02-26 Reid SpencerImplement inline methods that make transition of Consta...
2007-02-26 Reid SpencerMake isNegative() a const function since it doesn't...
2007-02-26 Reid SpencerAdd an isNegative method to determine if the APInt...
2007-02-25 Reid SpencerFix clearUnusedBits to not depend on "undefined behavio...
2007-02-25 Reid SpencerAdd a private constructor for efficiency.
2007-02-24 Reid SpencerImprove documentation.
2007-02-21 Reid SpencerAdd a dump() method for debugging.
2007-02-20 Reid SpencerAdd an internal convenience method for division that...
2007-02-19 Reid SpencerAdd some new constants.
2007-02-18 Reid Spencer1. "unsigned" -> "uint32_t" to gaurantee its bit width...
2007-02-18 Reid SpencerImplement signed output for toString.
2007-02-17 Reid SpencerFix bugs introduced by constructor parameter order...
2007-02-16 Reid SpencerReview changes:
2007-02-15 Zhou ShengFix some buges:
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-09 Zhou ShengEliminates friend function declaration inside APInt...
2007-02-08 Zhou ShengAs Chris and Reid suggested, remove "isSigned" field...
2007-02-07 Lauro Ramos VenancioFix build error.
2007-02-07 Zhou ShengAs Chris suggested, fixed some problems. (This is the...
2007-02-06 Zhou ShengAs Reid suggested, fixed some problems.
2007-02-05 Zhou ShengAdd a class APInt to represent arbitrary precision...