aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/ConstantFolding.cpp
Commit message (Expand)AuthorAgeFilesLines
* undef beats zero. Fix this missed optimization opportunity. Patch by Matt Elder!Nick Lewycky2008-11-201-1/+1
* Don't try to create a mask when we don't need one. Fixes a crash.Nick Lewycky2008-10-241-4/+6
* Teach constant folding that an inttoptr of aDuncan Sands2008-08-131-0/+13
* Fix minor issues with VICmp/VFCmp constant expressionsNate Begeman2008-07-251-1/+3
* "ret (constexpr)" can't be folded into a Constant. Add a method toNick Lewycky2008-05-251-16/+45
* transform more loops to iterator form, detabifyGabor Greif2008-05-221-1/+1
* Rewrite operand loops to use iterators. This shrinks .o file (at gcc4.0.1 -O3...Gabor Greif2008-05-221-4/+5
* suppress gcc3.4.6's <no value returned> warningsGabor Greif2008-05-211-0/+2
* Remove dead return. Thanks to Bill for the review!Chris Lattner2008-05-081-2/+0
* Add support for constant folding the 'offsetof' pattern even if theChris Lattner2008-05-081-16/+23
* Switch to using Simplified ConstantFP::get API.Chris Lattner2008-04-201-11/+9
* minor code cleanups, allow constant folding sinf/cosf.Chris Lattner2008-03-301-20/+26
* Avoid unnecessarily casting away const, fixing a FIXME.Dan Gohman2008-01-311-1/+1
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Fix a bug in my previous patch, thanks to Jay Foad forChris Lattner2007-12-121-2/+2
* Implement constant folding if vector<->vector bitcasts where the numberChris Lattner2007-12-111-2/+122
* Fix PR1850 by removing an unsafe transformation from VMCore/ConstantFold.cpp.Chris Lattner2007-12-101-19/+81
* splice some lines together, no functionality change.Chris Lattner2007-11-231-11/+7
* Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize.Duncan Sands2007-11-011-1/+1
* Rewrite sqrt and powi to use anyfloat. By popular demand.Dale Johannesen2007-10-021-12/+4
* Add sqrt and powi intrinsics for long double.Dale Johannesen2007-09-281-0/+6
* Next round of APFloat changes.Dale Johannesen2007-09-061-14/+41
* constant fold ptrtoint(inttoptr) with target data when available. This allowsChris Lattner2007-08-111-2/+17
* Handle functions with no name better.Chris Lattner2007-08-081-1/+2
* significantly speed up constant folding of calls (and thus all clients that useChris Lattner2007-08-081-94/+131
* This is the patch to provide clean intrinsic function overloading support in ...Chandler Carruth2007-08-041-3/+3
* Use ConstantFoldFP for folding all unary floating-point operations which mayDan Gohman2007-07-161-20/+25
* The bit counting intrinsics return i32 not the operand type. This fixesReid Spencer2007-04-011-4/+3
* For PR1297:Reid Spencer2007-04-011-23/+17
* Unbreak VC++ build.Jeff Cohen2007-03-051-2/+2
* For PR1195:Reid Spencer2007-02-151-2/+2
* completely eliminate a temporary vectorChris Lattner2007-02-101-2/+2
* Privatize StructLayout::MemberOffsets, adding an accessorChris Lattner2007-02-101-1/+1
* Changes to support making the shift instructions be true BinaryOperators.Reid Spencer2007-02-021-4/+0
* Fix a minor bug in my patch yesterday that broken ConstProp/bswap.llChris Lattner2007-01-311-1/+1
* elimiante a temporary vectorChris Lattner2007-01-311-3/+1
* Move some symbolic constant folding code out of instcombine into a placeChris Lattner2007-01-311-3/+136
* move a bunch of constant folding code f rom Transforms/Utils/Local.cpp intoChris Lattner2007-01-301-2/+155
* adjust to constant folding api changes.Chris Lattner2007-01-301-5/+6
* Constant fold llvm.powi.*. This speeds up tramp3d--v4 by 9.5%Chris Lattner2007-01-151-1/+12
* remove llvm.isunorderedChris Lattner2007-01-071-5/+0
* For PR950:Reid Spencer2006-12-311-1/+0
* Unbreak VC++ build.Jeff Cohen2006-12-021-0/+1
* Remove redundant <cmath>.Jim Laskey2006-11-081-1/+0
* For PR950:Reid Spencer2006-10-201-5/+6
* Constant fold sqrtfChris Lattner2006-06-171-1/+4
* For PR411:Reid Spencer2006-01-161-7/+18
* Add bswap intrinsics as documented in the Language ReferenceNate Begeman2006-01-141-0/+15
* Move some constant folding functions into LLVMAnalysis since they are usedJohn Criswell2005-10-271-0/+172