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
/
Support
/
MathExtras.h
Age
Commit message (
Expand
)
Author
2006-12-19
Doxgenate comments.
Chris Lattner
2006-12-06
Ignoring the upper 32 bits of a 64 bit constant is not a good thing.
Jim Laskey
2006-08-11
remove IncludeFile turds in MathExtras.h, which bloats every .o file that
Chris Lattner
2006-07-26
For PR780:
Reid Spencer
2006-07-18
Add functions to compute ceil(log2(N)) to match functions for floor(log2(N))
Chris Lattner
2006-06-21
Whoops, missed a couple more C-style casts.
Reid Spencer
2006-06-21
Use C++ style casts instead of C-style casts to shut up compiler warnings
Reid Spencer
2006-05-24
For PR786:
Reid Spencer
2006-01-14
Fix generous source of VC++ truncation warnings.
Jeff Cohen
2006-01-14
Add bswap intrinsics as documented in the Language Reference
Nate Begeman
2005-10-07
Remove prolific source of VC++ truncation warnings.
Jeff Cohen
2005-08-31
Add support for count trailing zeroes, and population count. These are
Nate Begeman
2005-08-17
include/llvm/Support/MathExtras.h
Jim Laskey
2005-08-17
Added support for converting raw bits to FP, and FP to raw bits. The intent
Jim Laskey
2005-08-03
Fix an obvious bug in the Log2 stuff that broke SingleSource/UnitTests/2005-0...
Chris Lattner
2005-08-03
Wrap comments to 80 cols, fix code sequence for CountLeadingZeros_64 on
Chris Lattner
2005-08-03
Fix another bug in the clz patch that caused miscompilations when !gcc4
Chris Lattner
2005-08-02
Fix the non-gcc 4.0 paths for countleadingzeros
Chris Lattner
2005-08-02
Fix inverted conditionals
Chris Lattner
2005-08-02
Fix the non-gcc 4.0 path to compile
Chris Lattner
2005-08-02
Consolidate all of the various log2 computing functions into MathExtras.h.
Chris Lattner
2005-04-21
Remove trailing whitespace
Misha Brukman
2004-09-01
Changes For Bug 352
Reid Spencer
2004-08-17
Add an overload
Chris Lattner
2004-07-21
Add prototypes for platform-independent wrappers for isinf().
Brian Gaeke
2004-06-23
Provide prototypes for IsNAN() wrapper.
Brian Gaeke
2004-02-25
Cygwin defines log2 as a macro. Undef it here IFF it has already been defined,
Brian Gaeke
2003-11-16
Fixes for PR114: Thanks to Reid Spencer!
Chris Lattner
2003-11-11
Put all LLVM code into the llvm namespace, as per bug 109.
Brian Gaeke
2003-10-20
Added LLVM notice.
John Criswell
2003-09-30
Standardize header file comments
Chris Lattner
2003-06-17
Regularize the names of #include-guards.
Brian Gaeke
2002-10-28
Don't #include <Support/*>, #include "Support/*"
Chris Lattner
2002-09-17
Fix ambiguity problem due to builtin log2(double) function
Chris Lattner
2002-05-19
Cleanups, rename IsPowerOf2 to isPowerOf2
Chris Lattner
2002-05-19
Added log2 for log-base-2 and also modified IsPower2 to use it.
Vikram S. Adve
2001-11-27
Create a new #include "Support/..." directory structure to move things
Chris Lattner