| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
* | tidy up | Chris Lattner | 2009-09-21 | 1 | -18/+17 |
* | Update malloc call creation code (AllocType is now the element type of the ma... | Victor Hernandez | 2009-09-18 | 1 | -45/+38 |
* | Fix -Asserts warning. | Daniel Dunbar | 2009-09-11 | 1 | -2/+2 |
* | Fix indentation. | Dan Gohman | 2009-09-11 | 1 | -1/+1 |
* | Add some braces to make newer GCCs happy and update CMakeLists. | Benjamin Kramer | 2009-09-10 | 1 | -3/+5 |
* | Add malloc call utility functions. Patch by Victor Hernandez. | Evan Cheng | 2009-09-10 | 1 | -0/+111 |
* | Reappy r80998, now that the GlobalOpt bug that it exposed on MiniSAT is fixed. | Dan Gohman | 2009-09-07 | 1 | -0/+15 |
* | Revert "Include optional subclass flags, such as inbounds, nsw, etc., ...", this | Daniel Dunbar | 2009-09-06 | 1 | -15/+0 |
* | Include optional subclass flags, such as inbounds, nsw, etc., in the | Dan Gohman | 2009-09-04 | 1 | -0/+15 |
* | Change PHINode::hasConstantValue to have a DominatorTree argument | Dan Gohman | 2009-09-03 | 1 | -7/+20 |
* | back out my recent commit (r80858), it seems to break self-hosting buildbot's... | Gabor Greif | 2009-09-03 | 1 | -12/+5 |
* | re-commit r66920 (which has been backed out in r66953) I may have more luck t... | Gabor Greif | 2009-09-03 | 1 | -5/+12 |
* | Retype from unsigned to CallingConv::ID accordingly. Approved by Bob Wilson. | Sandeep Patel | 2009-09-02 | 1 | -2/+2 |
* | Fix the InsertAtEnd form of ShuffleVectorInst constructor to use | Dan Gohman | 2009-08-25 | 1 | -4/+6 |
* | Eliminate the unused Context argument on one of the ICmpInst and FCmpInst | Dan Gohman | 2009-08-25 | 1 | -5/+5 |
* | Use covariant return types for Instruction::clone, and eliminate | Dan Gohman | 2009-08-25 | 1 | -12/+12 |
* | Rename Instruction::isIdenticalTo to Instruction::isIdenticalToWhenDefined, | Dan Gohman | 2009-08-25 | 1 | -65/+132 |
* | Push LLVMContexts through the IntegerType APIs. | Owen Anderson | 2009-08-13 | 1 | -45/+55 |