Age | Commit message (Expand) | Author |
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 |
2007-09-28 | Add sqrt and powi intrinsics for long double. | Dale Johannesen |
2007-09-06 | Next round of APFloat changes. | Dale Johannesen |
2007-08-11 | constant fold ptrtoint(inttoptr) with target data when available. This allows | Chris Lattner |
2007-08-08 | Handle functions with no name better. | Chris Lattner |
2007-08-08 | significantly speed up constant folding of calls (and thus all clients that use | Chris Lattner |
2007-08-04 | This is the patch to provide clean intrinsic function overloading support in ... | Chandler Carruth |
2007-07-16 | Use ConstantFoldFP for folding all unary floating-point operations which may | Dan Gohman |
2007-04-01 | The bit counting intrinsics return i32 not the operand type. This fixes | Reid Spencer |
2007-04-01 | For PR1297: | Reid Spencer |
2007-03-05 | Unbreak VC++ build. | Jeff Cohen |
2007-02-15 | For PR1195: | Reid Spencer |
2007-02-10 | completely eliminate a temporary vector | Chris Lattner |
2007-02-10 | Privatize StructLayout::MemberOffsets, adding an accessor | Chris Lattner |
2007-02-02 | Changes to support making the shift instructions be true BinaryOperators. | Reid Spencer |
2007-01-31 | Fix a minor bug in my patch yesterday that broken ConstProp/bswap.ll | Chris Lattner |