index
:
emscripten-fastcomp
master
LLVM with the emscripten fastcomp javascript backend
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
include
/
llvm
/
ADT
/
APSInt.h
Age
Commit message (
Expand
)
Author
2013-03-20
Use pre-inc, pre-dec when possible.
Jakub Staszak
2013-01-10
Fix include guards so they exactly match file names.
Jakub Staszak
2012-12-20
Don't leave IsUnsigned uninitialized in a default-constructed APSInt. Copying
Richard Smith
2012-07-23
Add operator== to APSInt. This will compare the signed bit before doing
Richard Trieu
2012-07-15
Move IsSameValue from clang's ASTImporter to be methods on the
Eric Christopher
2010-12-07
PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and
Jay Foad
2009-02-16
Fix bug where APSInt::operator-- incremented instead of decremented.
Ted Kremenek
2009-02-09
These function return 'void'. Don't have 'return' return anything.
Bill Wendling
2009-01-30
Fix a bug in getMaxValue/getMinValue to pass the right signedness the
Chris Lattner
2009-01-09
Removed trailing whitespace.
Misha Brukman
2008-09-19
Added static methods to APSInt: getMinValue and getMaxValue.
Ted Kremenek
2008-08-23
Switch the asmprinter (.ll) and all the stuff it requires over to
Chris Lattner
2008-08-17
Rework the routines that convert AP[S]Int into a string. Now, instead of
Chris Lattner
2008-08-13
Add default constructor to APSInt
Daniel Dunbar
2008-02-08
Constified operator<< in APSInt.
Ted Kremenek
2008-02-04
constified operator~().
Ted Kremenek
2008-01-29
Altered ctor for APSInt to accept an optional "isUnsigned" flag. Default
Ted Kremenek
2008-01-24
Added additional overloaded operators for APSInt to match the operators of
Ted Kremenek
2008-01-19
Added FoldingSet style 'profiling' support for APSInt.
Ted Kremenek
2007-12-29
Don't attribute in file headers anymore. See llvmdev for the
Chris Lattner
2007-10-26
Fixed incorrect "path name" in preamble (comment) of header file.
Ted Kremenek
2007-10-17
Updated VC++ build system.
Hartmut Kaiser
2007-08-23
default this to radix 10 like the toString(Un)Signed methods.
Chris Lattner
2007-08-23
Avoid hiding issues.
Chris Lattner
2007-08-23
rename APInt::toString -> toStringUnsigned for symmetry with toStringSigned()
Chris Lattner
2007-08-02
Fix bug spotted by Chris.
Anders Carlsson
2007-08-02
Add extend and extOrTrunc methods that do sign or zero extension depending on...
Anders Carlsson
2007-07-15
add a helper method.
Chris Lattner
2007-04-10
add missing methods, mark stuff const
Chris Lattner
2007-04-05
Add a helper class (APSInt) which can represent an APInt along with sign
Chris Lattner