Age | Commit message (Expand) | Author |
2009-07-30 | Twines: Don't allow implicit conversion from integers, this is too tricky. | Daniel Dunbar |
2009-07-30 | Switch obvious clients to Twine instead of utostr (when they were already using | Daniel Dunbar |
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-25 | Initial update to VMCore to use Twines for string arguments. | 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-15 | Revert yesterday's change by removing the LLVMContext parameter to AllocaInst... | Owen Anderson |
2009-07-14 | Move EVER MORE stuff over to LLVMContext. | 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-11 | Convert more assert(0)+abort() -> LLVM_UNREACHABLE, | Torok Edwin |
2009-07-09 | This started as a small change, I swear. Unfortunately, lots of things call ... | Owen Anderson |
2009-07-06 | "LLVMContext* " --> "LLVMContext *" | Owen Anderson |
2009-07-05 | More LLVMContext-ification. | Owen Anderson |
2009-07-03 | Even more passes being LLVMContext'd. | Owen Anderson |
2009-06-16 | Use Type::getScalarType. | Dan Gohman |
2009-06-06 | Use cast<> instead of dyn_cast<> for things that are known to be | Jay Foad |
2009-06-01 | PR4286: Make RewriteLoadUserOfWholeAlloca and | Eli Friedman |
2009-05-09 | Rename PaddedSize to AllocSize, in the hope that this | Duncan Sands |
2009-05-08 | fix RewriteStoreUserOfWholeAlloca to use the correct type size | Chris Lattner |
2009-04-21 | fix a crash on a pointless but valid zero-length memset, rdar://6808691 | Chris Lattner |
2009-03-18 | Explicitly check for StoreInst, do not lose the chance to delete | Zhou Sheng |
2009-03-18 | Revert my previous change on Local.cpp, instead, fix the bug on scalarrepl. | Zhou Sheng |
2009-03-08 | teach SROA to handle promoting vector allocas with a memset into them into | Chris Lattner |
2009-03-08 | Enhance SROA to "promote to scalar" allocas which are | Chris Lattner |
2009-03-08 | change the MemIntrinsic get/setAlignment method to take an unsigned | Chris Lattner |
2009-03-08 | Introduce a new MemTransferInst pseudo class, which is a common | Chris Lattner |
2009-03-06 | While converting an aggregate to scalare, ignore and remove aggregate's debug... | Devang Patel |
2009-03-06 | SRThreshold is meant to be inclusive. | Evan Cheng |
2009-03-04 | complete comment. | Chris Lattner |
2009-03-04 | this wasn't intended to be committed. | Chris Lattner |
2009-03-04 | Fix PR3720 by properly propagating alignment information from memcpy/memmove | Chris Lattner |
2009-03-03 | Use > instead of >=. We want to promote aggregates of 128-bytes. | Bill Wendling |
2009-03-03 | Reapply r65755, but reversing "<" to ">=". | Bill Wendling |
2009-03-01 | Temporarily revert r65755. It was causing failures in the self-hosting | Bill Wendling |
2009-03-01 | hoist the check for alloca size up so that it controls CanConvertToScalar | Chris Lattner |
2009-02-10 | Use early exits. Reduce indentation. | Devang Patel |
2009-02-10 | Enable scalar replacement of AllocaInst whose one of the user is dbg info. | Devang Patel |
2009-02-06 | fix PR3489, use bits instead of bytes. | Chris Lattner |
2009-02-03 | teach "convert from scalar" to handle loads of fca's. | Chris Lattner |
2009-02-03 | refactor the interface to ConvertUsesOfLoadToScalar, | Chris Lattner |
2009-02-03 | convert ConvertUsesOfLoadToScalar to use IRBuilder, | Chris Lattner |
2009-02-03 | switch ConvertScalar_InsertValue to use an IRBuilder, no | Chris Lattner |
2009-02-03 | make scalar conversion handle stores of first class | Chris Lattner |
2009-02-03 | Make SROA produce a vector only when the alloca is actually | Chris Lattner |
2009-02-03 | add another case of undefined behavior without crashing, PR3466. | Chris Lattner |
2009-02-03 | Teach ConvertUsesToScalar to handle memset, allowing it to handle | Chris Lattner |
2009-02-03 | rearrange how SRoA handles promotion of allocas to vectors. | Chris Lattner |