Age | Commit message (Expand) | Author |
2009-08-21 | Don't assume that the operand of an inttoptr is an pointer-sized integer. | Dan Gohman |
2009-08-21 | Change getelementptr folding to use APInt instead of uint64_t for | Dan Gohman |
2009-08-20 | Various comment and whitespace cleanups. | Dan Gohman |
2009-08-19 | Fix a bug in the over-index constant folding. When over-indexing an | Dan Gohman |
2009-08-19 | Canonicalize indices in a constantexpr GEP. If Indices exceed the | Dan Gohman |
2009-08-13 | Push LLVMContexts through the IntegerType APIs. | Owen Anderson |
2009-07-31 | Move a few more APIs back to 2.5 forms. The only remaining ones left to chan... | Owen Anderson |
2009-07-30 | Move more code back to 2.5 APIs. | Owen Anderson |
2009-07-29 | Move types back to the 2.5 API. | Owen Anderson |
2009-07-29 | Move ConstantExpr to 2.5 API. | Owen Anderson |
2009-07-28 | Return ConstantVector to 2.5 API. | Owen Anderson |
2009-07-27 | Move ConstantFP construction back to the 2.5-ish API. | Owen Anderson |
2009-07-26 | Remove Value::getNameLen | Daniel Dunbar |
2009-07-24 | Revert the ConstantInt constructors back to their 2.5 forms where possible, t... | Owen Anderson |
2009-07-22 | Get rid of the Pass+Context magic. | Owen Anderson |
2009-07-14 | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin |
2009-07-11 | assert(0) -> LLVM_UNREACHABLE. | Torok Edwin |
2009-07-08 | Remove the vicmp and vfcmp instructions. Because we never had a release with | Nick Lewycky |
2009-07-06 | "LLVMContext* " --> "LLVMContext *" | Owen Anderson |
2009-07-06 | Thread LLVMContext through the constant folding APIs, which touches a lot of ... | Owen Anderson |
2009-06-15 | Support vector casts in more places, fixing a variety of assertion | Dan Gohman |
2009-06-02 | Change ConstantFoldConstantExpression to accept a null | Dan Gohman |
2009-05-21 | Use v.data() instead of &v[0] when SmallVector v might be empty. | Jay Foad |
2009-05-09 | Rename PaddedSize to AllocSize, in the hope that this | Duncan Sands |
2009-05-07 | Revert 71165. It did more than just revert 71158 and it introduced | Dan Gohman |
2009-05-07 | Temporarily revert r71158. It was causing a failure during a full bootstrap: | Bill Wendling |
2009-05-07 | Constant-fold ptrtoint+add+inttoptr to gep when the pointer is an | Dan Gohman |
2009-04-03 | use higher level APIs. | Chris Lattner |
2009-01-12 | Rename getABITypeSize to getTypePaddedSize, as | Duncan Sands |
2008-12-15 | Fix whitespace in comment. | Nick Lewycky |
2008-11-20 | undef beats zero. Fix this missed optimization opportunity. Patch by Matt Elder! | Nick Lewycky |
2008-10-24 | Don't try to create a mask when we don't need one. Fixes a crash. | Nick Lewycky |
2008-08-13 | Teach constant folding that an inttoptr of a | Duncan Sands |
2008-07-25 | Fix minor issues with VICmp/VFCmp constant expressions | Nate Begeman |
2008-05-25 | "ret (constexpr)" can't be folded into a Constant. Add a method to | Nick Lewycky |
2008-05-22 | transform more loops to iterator form, detabify | Gabor Greif |
2008-05-22 | Rewrite operand loops to use iterators. This shrinks .o file (at gcc4.0.1 -O3... | Gabor Greif |
2008-05-21 | suppress gcc3.4.6's <no value returned> warnings | Gabor Greif |
2008-05-08 | Remove dead return. Thanks to Bill for the review! | Chris Lattner |
2008-05-08 | Add support for constant folding the 'offsetof' pattern even if the | Chris Lattner |
2008-04-20 | Switch to using Simplified ConstantFP::get API. | Chris Lattner |
2008-03-30 | minor code cleanups, allow constant folding sinf/cosf. | Chris Lattner |
2008-01-31 | Avoid unnecessarily casting away const, fixing a FIXME. | Dan Gohman |
2007-12-29 | Remove attribution from file headers, per discussion on llvmdev. | Chris Lattner |
2007-12-12 | Fix a bug in my previous patch, thanks to Jay Foad for | Chris Lattner |
2007-12-11 | Implement constant folding if vector<->vector bitcasts where the number | Chris Lattner |
2007-12-10 | Fix PR1850 by removing an unsafe transformation from VMCore/ConstantFold.cpp. | Chris Lattner |
2007-11-23 | splice some lines together, no functionality change. | Chris Lattner |
2007-11-01 | Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize. | Duncan Sands |
2007-10-02 | Rewrite sqrt and powi to use anyfloat. By popular demand. | Dale Johannesen |