| Commit message (Expand) | Author | Age | Files | Lines |
| * | Remove AllocationInst. Since MallocInst went away, AllocaInst is the only su... | Victor Hernandez | 2009-10-23 | 1 | -31/+30 |
| * | strength reduce a ton of type equality tests to check the typeid (Through | Chris Lattner | 2009-10-05 | 1 | -2/+1 |
| * | Add more newlines to make up for the ones removed from the end of instructions. | Nick Lewycky | 2009-09-15 | 1 | -9/+12 |
| * | add newline to debug dump | Chris Lattner | 2009-09-15 | 1 | -1/+1 |
| * | eliminate VISIBILITY_HIDDEN from Transforms/Scalar. PR4861 | Chris Lattner | 2009-09-02 | 1 | -2/+1 |
| * | eliminate the "Value" printing methods that print to a std::ostream. | Chris Lattner | 2009-08-23 | 1 | -11/+13 |
| * | Make SROA and PredicateSimplifier cope if TargetData is not | Dan Gohman | 2009-08-19 | 1 | -3/+9 |
| * | Don't crash trying to promote VLAs. | Nick Lewycky | 2009-08-17 | 1 | -1/+4 |
| * | Push LLVMContexts through the IntegerType APIs. | Owen Anderson | 2009-08-13 | 1 | -24/+35 |
| * | Move a few more APIs back to 2.5 forms. The only remaining ones left to chan... | Owen Anderson | 2009-07-31 | 1 | -14/+8 |
| * | Move more code back to 2.5 APIs. | Owen Anderson | 2009-07-30 | 1 | -5/+3 |
| * | Twines: Don't allow implicit conversion from integers, this is too tricky. | Daniel Dunbar | 2009-07-30 | 1 | -3/+3 |
| * | Switch obvious clients to Twine instead of utostr (when they were already using | Daniel Dunbar | 2009-07-30 | 1 | -4/+3 |
| * | Move types back to the 2.5 API. | Owen Anderson | 2009-07-29 | 1 | -14/+13 |
| * | Move ConstantExpr to 2.5 API. | Owen Anderson | 2009-07-29 | 1 | -4/+3 |
| * | Return ConstantVector to 2.5 API. | Owen Anderson | 2009-07-28 | 1 | -1/+1 |
| * | Initial update to VMCore to use Twines for string arguments. | Daniel Dunbar | 2009-07-25 | 1 | -2/+4 |
| * | Revert the ConstantInt constructors back to their 2.5 forms where possible, t... | Owen Anderson | 2009-07-24 | 1 | -17/+17 |
| * | Get rid of the Pass+Context magic. | Owen Anderson | 2009-07-22 | 1 | -50/+63 |
| * | Revert yesterday's change by removing the LLVMContext parameter to AllocaInst... | Owen Anderson | 2009-07-15 | 1 | -7/+4 |
| * | Move EVER MORE stuff over to LLVMContext. | Owen Anderson | 2009-07-14 | 1 | -4/+7 |
| * | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Torok Edwin | 2009-07-14 | 1 | -2/+2 |
| * | assert(0) -> LLVM_UNREACHABLE. | Torok Edwin | 2009-07-11 | 1 | -1/+1 |
| * | Convert more assert(0)+abort() -> LLVM_UNREACHABLE, | Torok Edwin | 2009-07-11 | 1 | -2/+2 |
| * | This started as a small change, I swear. Unfortunately, lots of things call ... | Owen Anderson | 2009-07-09 | 1 | -2/+2 |
| * | "LLVMContext* " --> "LLVMContext *" | Owen Anderson | 2009-07-06 | 1 | -1/+1 |
| * | More LLVMContext-ification. | Owen Anderson | 2009-07-05 | 1 | -1/+1 |
| * | Even more passes being LLVMContext'd. | Owen Anderson | 2009-07-03 | 1 | -48/+63 |
| * | Use Type::getScalarType. | Dan Gohman | 2009-06-16 | 1 | -4/+2 |
| * | Use cast<> instead of dyn_cast<> for things that are known to be | Jay Foad | 2009-06-06 | 1 | -1/+2 |
| * | PR4286: Make RewriteLoadUserOfWholeAlloca and | Eli Friedman | 2009-06-01 | 1 | -8/+13 |
| * | Rename PaddedSize to AllocSize, in the hope that this | Duncan Sands | 2009-05-09 | 1 | -20/+20 |
| * | fix RewriteStoreUserOfWholeAlloca to use the correct type size | Chris Lattner | 2009-05-08 | 1 | -4/+6 |
| * | fix a crash on a pointless but valid zero-length memset, rdar://6808691 | Chris Lattner | 2009-04-21 | 1 | -13/+15 |
| * | Explicitly check for StoreInst, do not lose the chance to delete | Zhou Sheng | 2009-03-18 | 1 | -1/+1 |
| * | Revert my previous change on Local.cpp, instead, fix the bug on scalarrepl. | Zhou Sheng | 2009-03-18 | 1 | -1/+1 |
| * | teach SROA to handle promoting vector allocas with a memset into them into | Chris Lattner | 2009-03-08 | 1 | -17/+19 |
| * | Enhance SROA to "promote to scalar" allocas which are | Chris Lattner | 2009-03-08 | 1 | -0/+48 |
| * | change the MemIntrinsic get/setAlignment method to take an unsigned | Chris Lattner | 2009-03-08 | 1 | -3/+3 |
| * | Introduce a new MemTransferInst pseudo class, which is a common | Chris Lattner | 2009-03-08 | 1 | -25/+19 |
| * | While converting an aggregate to scalare, ignore and remove aggregate's debug... | Devang Patel | 2009-03-06 | 1 | -3/+12 |
| * | SRThreshold is meant to be inclusive. | Evan Cheng | 2009-03-06 | 1 | -1/+1 |
| * | complete comment. | Chris Lattner | 2009-03-04 | 1 | -1/+3 |
| * | this wasn't intended to be committed. | Chris Lattner | 2009-03-04 | 1 | -2/+1 |
| * | Fix PR3720 by properly propagating alignment information from memcpy/memmove | Chris Lattner | 2009-03-04 | 1 | -7/+34 |
| * | Use > instead of >=. We want to promote aggregates of 128-bytes. | Bill Wendling | 2009-03-03 | 1 | -1/+1 |
| * | Reapply r65755, but reversing "<" to ">=". | Bill Wendling | 2009-03-03 | 1 | -2/+3 |
| * | Temporarily revert r65755. It was causing failures in the self-hosting | Bill Wendling | 2009-03-01 | 1 | -5/+3 |
| * | hoist the check for alloca size up so that it controls CanConvertToScalar | Chris Lattner | 2009-03-01 | 1 | -3/+5 |
| * | Use early exits. Reduce indentation. | Devang Patel | 2009-02-10 | 1 | -37/+42 |