| Commit message (Expand) | Author | Age | Files | Lines |
* | Reapply r99451 with a fix to move the NoInline check to the cost functions | Eric Christopher | 2010-03-25 | 1 | -2/+13 |
* | Temporarily revert this, it's causing an issue with an internal project. | Eric Christopher | 2010-03-24 | 1 | -13/+2 |
* | Finally land the InvokeInst operand reordering. | Gabor Greif | 2010-03-24 | 1 | -5/+12 |
* | add some accessors to callsite/callinst/invokeinst to check | Chris Lattner | 2010-03-23 | 1 | -2/+13 |
* | word-o | Gabor Greif | 2010-03-23 | 1 | -1/+1 |
* | backing out r99170 because it still fails on clang-x86_64-darwin10-fnt | Gabor Greif | 2010-03-22 | 1 | -12/+5 |
* | Now that hopefully all direct accesses to InvokeInst operands are fixed | Gabor Greif | 2010-03-22 | 1 | -5/+12 |
* | back out r98957, it broke http://smooshlab.apple.com:8010/builders/clang-x86_... | Gabor Greif | 2010-03-19 | 1 | -12/+5 |
* | Recommit r80858 again (which has been backed out in r80871). | Gabor Greif | 2010-03-19 | 1 | -5/+12 |
* | There are two ways of checking for a given type, for example isa<PointerType>(T) | Duncan Sands | 2010-02-16 | 1 | -31/+31 |
* | Uniformize the names of type predicates: rather than having isFloatTy and | Duncan Sands | 2010-02-15 | 1 | -63/+64 |
* | Adding missing methods for creating Add, Mul, Neg and Sub with NUW. | Duncan Sands | 2010-02-02 | 1 | -0/+12 |
* | fix CastInst::castIsValid to reject aggregate types, fixing PR6153: | Chris Lattner | 2010-01-26 | 1 | -1/+2 |
* | Fix ICmpInst::makeConstantRange to use ConstantRange's API properly | Dan Gohman | 2010-01-26 | 1 | -2/+30 |
* | simplify code a bit. | Chris Lattner | 2010-01-23 | 1 | -5/+5 |
* | InstCombine should not fold sext/zext of a vector and a bitcast to a scalar t... | Mon P Wang | 2010-01-23 | 1 | -2/+3 |
* | add an out-of-line virtual method to CmpInst to give it a home. | Chris Lattner | 2010-01-22 | 1 | -0/+2 |
* | fix a buggy assertion, CreateIntegerCast should allow | Chris Lattner | 2010-01-10 | 1 | -1/+2 |
* | Move remaining stuff to the isInteger predicate. | Benjamin Kramer | 2010-01-05 | 1 | -4/+3 |
* | Convert a ton of simple integer type equality tests to the new predicate. | Benjamin Kramer | 2010-01-05 | 1 | -2/+2 |
* | Avoid going through the LLVMContext for type equality where it's safe to dere... | Benjamin Kramer | 2010-01-05 | 1 | -8/+7 |
* | sink the Instruction::HasMetadata bit into SubclassData. | Chris Lattner | 2009-12-29 | 1 | -5/+5 |
* | add a layer of accessors around the Value::SubClassData member, and use | Chris Lattner | 2009-12-29 | 1 | -7/+11 |
* | Add utility routines for creating integer negation operators with NSW set. | Dan Gohman | 2009-12-18 | 1 | -0/+12 |
* | make this handle redefinition of malloc function with different prototype cor... | Victor Hernandez | 2009-11-10 | 1 | -7/+9 |
* | make this handle redefinition of malloc with different prototype correctly. | Chris Lattner | 2009-11-09 | 1 | -3/+3 |
* | prune #include / layering violation | Chris Lattner | 2009-11-07 | 1 | -2/+0 |
* | Fit in 80 columns | Victor Hernandez | 2009-11-07 | 1 | -2/+4 |
* | Re-commit r86077 now that r86290 fixes the 179.art and 175.vpr ARM regressions. | Victor Hernandez | 2009-11-07 | 1 | -25/+20 |
* | CallInst::CreateMalloc() and CallInst::CreateFree() need to create calls with... | Victor Hernandez | 2009-11-06 | 1 | -2/+4 |
* | Revert r86077 because it caused crashes in 179.art and 175.vpr on ARM | Victor Hernandez | 2009-11-06 | 1 | -20/+25 |
* | Update CreateMalloc so that its callers specify the size to allocate: | Victor Hernandez | 2009-11-05 | 1 | -25/+20 |
* | add sanity check for indbr. | Chris Lattner | 2009-10-29 | 1 | -1/+2 |
* | rename indbr -> indirectbr to appease the residents of #llvm. | Chris Lattner | 2009-10-28 | 1 | -18/+19 |
* | Factor out redundancy from clone() implementations. | Devang Patel | 2009-10-27 | 1 | -289/+84 |
* | add enough support for indirect branch for the feature test to pass | Chris Lattner | 2009-10-27 | 1 | -0/+121 |
* | Remove FreeInst. | Victor Hernandez | 2009-10-26 | 1 | -32/+0 |
* | Remove ICmpInst::isSignedPredicate which was a reimplementation | Nick Lewycky | 2009-10-25 | 1 | -11/+0 |
* | Sink isTrueWhenEqual from ICmpInst to CmpInst. Add a matching isFalseWhenEqual | Nick Lewycky | 2009-10-25 | 1 | -1/+18 |
* | Auto-upgrade free instructions to calls to the builtin free function. | Victor Hernandez | 2009-10-24 | 1 | -0/+45 |
* | Remove AllocationInst. Since MallocInst went away, AllocaInst is the only su... | Victor Hernandez | 2009-10-23 | 1 | -13/+47 |
* | Fix test/Bindings/Ocaml/vmcore.ml. When IRBuilder::CreateMalloc was removed, | Nick Lewycky | 2009-10-17 | 1 | -11/+12 |
* | Remove MallocInst from LLVM Instructions. | Victor Hernandez | 2009-10-17 | 1 | -13/+1 |
* | Autoupgrade malloc insts to malloc calls. | Victor Hernandez | 2009-10-17 | 1 | -15/+25 |
* | Introduce and use convenience methods for getting pointer types | Duncan Sands | 2009-10-06 | 1 | -1/+1 |
* | Round out the API for the new optimization flags. | Nick Lewycky | 2009-09-27 | 1 | -0/+16 |
* | Instruction::clone does not need to take an LLVMContext&. Remove that and | Nick Lewycky | 2009-09-27 | 1 | -44/+42 |
* | Revert 82694 "Auto-upgrade malloc instructions to malloc calls." because it c... | Victor Hernandez | 2009-09-25 | 1 | -12/+8 |
* | Auto-upgrade malloc instructions to malloc calls. | Victor Hernandez | 2009-09-24 | 1 | -8/+12 |
* | Do not leave behind metadata while cloning an instruction. | Devang Patel | 2009-09-23 | 1 | -0/+146 |