summaryrefslogtreecommitdiffstats
path: root/lib/Analysis/ConstantFolding.cpp
Commit message (Expand)AuthorAgeFilesLines
* Remove the vicmp and vfcmp instructions. Because we never had a release withNick Lewycky2009-07-081-2/+0
* "LLVMContext* " --> "LLVMContext *"Owen Anderson2009-07-061-11/+11
* Thread LLVMContext through the constant folding APIs, which touches a lot of ...Owen Anderson2009-07-061-102/+120
* Support vector casts in more places, fixing a variety of assertionDan Gohman2009-06-151-2/+2
* Change ConstantFoldConstantExpression to accept a nullDan Gohman2009-06-021-2/+0
* Use v.data() instead of &v[0] when SmallVector v might be empty.Jay Foad2009-05-211-5/+5
* Rename PaddedSize to AllocSize, in the hope that thisDuncan Sands2009-05-091-3/+3
* Revert 71165. It did more than just revert 71158 and it introducedDan Gohman2009-05-071-4/+36
* Temporarily revert r71158. It was causing a failure during a full bootstrap:Bill Wendling2009-05-071-36/+4
* Constant-fold ptrtoint+add+inttoptr to gep when the pointer is anDan Gohman2009-05-071-4/+36
* use higher level APIs.Chris Lattner2009-04-031-8/+6
* Rename getABITypeSize to getTypePaddedSize, asDuncan Sands2009-01-121-1/+1
* Fix whitespace in comment.Nick Lewycky2008-12-151-2/+1
* 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