aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support/MathExtras.h
Commit message (Expand)AuthorAgeFilesLines
* Hexagon backend supportTony Linthicum2011-12-121-0/+14
* Typo.Rafael Espindola2010-12-151-1/+1
* Generalize an assert.Rafael Espindola2010-12-151-0/+6
* Merge System into Support.Michael J. Spencer2010-11-291-1/+1
* reimplement SwapByteOrder.h in terms of overloading instead of Chris Lattner2010-11-231-4/+3
* Factor code out of APInt to form a isUIntN helper function.Dan Gohman2010-11-031-0/+6
* System: Add SwapByteOrder and update Support/MathExtras.h to use it.Michael J. Spencer2010-10-111-31/+4
* Revert "System: Add SwapByteOrder and update Support/MathExtras.h to use it."Michael J. Spencer2010-10-111-4/+31
* System: Add SwapByteOrder and update Support/MathExtras.h to use it.Michael J. Spencer2010-10-111-31/+4
* There is this new "LLVM" compiler that supports __builtin_bswap but thinks it...Benjamin Kramer2010-08-171-2/+4
* Avoid overflowing a signed integer which triggers undefined behaviour.Jakob Stoklund Olesen2010-04-061-4/+4
* Second try of initial ARM/Thumb disassembler check-in. It consists of a tablgenJohnny Chen2010-04-021-0/+12
* Make isInt?? and isUint?? template specializations of the generic versions. ThisBenjamin Kramer2010-03-291-21/+29
* Correct spelling.Duncan Sands2010-01-071-2/+2
* Move DataTypes.h to include/llvm/System, update all users. This breaks the lastChandler Carruth2009-10-261-1/+1
* Add MathExtras.h OffsetToAlignment, like RoundUpToAlignment but returns theDaniel Dunbar2009-08-281-0/+7
* Fix the N>=64 case in the isInt<> and isUint<> templates.Jakob Stoklund Olesen2009-08-131-2/+2
* Move immediate constant predicate templates from the Blackfin target to MathE...Jakob Stoklund Olesen2009-08-121-0/+10
* Fix PR4614: the Intel C compiler defines _GNUC__Duncan Sands2009-07-231-2/+2
* Fix the name of the function in this comment.Dan Gohman2009-05-311-2/+2
* Add an int64_t variant of abs, for host environmentsDale Johannesen2009-05-131-0/+7
* Removed trailing whitespace.Misha Brukman2009-02-201-25/+25
* Add llvm::RoundUpToAlignment.Daniel Dunbar2009-02-161-0/+12
* Do not use host floating point types when emittingDale Johannesen2009-01-211-2/+6
* Add a NextPowerOf2 function to calculate the next power of two greater than a...Owen Anderson2008-06-271-0/+12
* Add count{Leading,Trailing}Ones_{32,64} functions with simple implementations.Dan Gohman2008-02-131-0/+32
* make this 64-bit safeChris Lattner2008-01-261-2/+2
* Don't attribute in file headers anymore. See llvmdev for theChris Lattner2007-12-291-2/+2
* Move MinAlign to MathExtras.h.Duncan Sands2007-11-091-0/+7
* remove extraneous type qualifiersChris Lattner2007-05-031-4/+4
* Removed tabs everywhere except autogenerated & external files. Add makeAnton Korobeynikov2007-04-161-2/+2
* Be more explicit concerning argument sizes.Jeff Cohen2007-03-221-31/+41
* Unbreak VC++ build.Jeff Cohen2007-03-051-1/+1
* fix 80 col violations, mark arrays staticChris Lattner2007-03-041-8/+12
* Fix uninitialized use of variable. Remove tabs and fix identation.Anton Korobeynikov2007-03-021-19/+19
* Fix a typo.Owen Anderson2007-03-021-1/+1
* Use GCC intrinsics when available, and use smarter fallbacks when not.Owen Anderson2007-03-011-2/+26
* Use the GCC built-in for PopulationCount when it's available, and use a fasterOwen Anderson2007-03-011-11/+16
* Doxgenate comments.Chris Lattner2006-12-191-74/+84
* Ignoring the upper 32 bits of a 64 bit constant is not a good thing.Jim Laskey2006-12-061-4/+4
* remove IncludeFile turds in MathExtras.h, which bloats every .o file thatChris Lattner2006-08-111-3/+0
* For PR780:Reid Spencer2006-07-261-0/+4
* Add functions to compute ceil(log2(N)) to match functions for floor(log2(N))Chris Lattner2006-07-181-1/+14
* Whoops, missed a couple more C-style casts.Reid Spencer2006-06-211-2/+2
* Use C++ style casts instead of C-style casts to shut up compiler warningsReid Spencer2006-06-211-6/+18
* For PR786:Reid Spencer2006-05-241-1/+1
* Fix generous source of VC++ truncation warnings.Jeff Cohen2006-01-141-2/+2
* Add bswap intrinsics as documented in the Language ReferenceNate Begeman2006-01-141-0/+26
* Remove prolific source of VC++ truncation warnings.Jeff Cohen2005-10-071-1/+2
* Add support for count trailing zeroes, and population count. These areNate Begeman2005-08-311-5/+37