| Commit message (Expand) | Author | Age | Files | Lines |
* | Revert the ConstantInt constructors back to their 2.5 forms where possible, t... | Owen Anderson | 2009-07-24 | 1 | -2/+2 |
* | Get rid of the Pass+Context magic. | Owen Anderson | 2009-07-22 | 1 | -16/+16 |
* | Revert the addition of hasNoPointerOverflow to GEPOperator. | Dan Gohman | 2009-07-20 | 1 | -7/+2 |
* | Make BasicAliasAnalysis and Value::getUnderlyingObject use | Dan Gohman | 2009-07-17 | 1 | -4/+6 |
* | Move the ConstantInt uniquing table into LLVMContextImpl. This exposed a num... | Owen Anderson | 2009-07-16 | 1 | -0/+4 |
* | llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. | Edwin Török | 2009-07-14 | 1 | -1/+1 |
* | assert(0) -> LLVM_UNREACHABLE. | Edwin Török | 2009-07-11 | 1 | -1/+2 |
* | "LLVMContext* " --> "LLVMContext *" | Owen Anderson | 2009-07-06 | 1 | -1/+1 |
* | Thread LLVMContext through the constant folding APIs, which touches a lot of ... | Owen Anderson | 2009-07-06 | 1 | -15/+19 |
* | Remove unneeded #include. | Owen Anderson | 2009-06-22 | 1 | -1/+0 |
* | Teach BasicAliasAnalysis to understand constant gep indices that fall | Dan Gohman | 2009-05-27 | 1 | -4/+25 |
* | Rename PaddedSize to AllocSize, in the hope that this | Duncan Sands | 2009-05-09 | 1 | -1/+1 |
* | Generalize some alias analysis logic from atomic | Duncan Sands | 2009-02-14 | 1 | -51/+0 |
* | BasicAA was making the assumption that a local allocation which hadn't escaped | Nick Lewycky | 2009-02-13 | 1 | -3/+3 |
* | Refactor my previous change to maintain the distinction between AliasAnalysis... | Owen Anderson | 2009-02-05 | 1 | -21/+52 |
* | Finish making AliasAnalysis aware of the fact that most atomic intrinsics onl... | Owen Anderson | 2009-02-04 | 1 | -0/+16 |
* | Move isIdentifiedObject and isNoAliasCall into AliasAnalysis.cpp since | Dan Gohman | 2009-02-03 | 1 | -24/+0 |
* | Fix a post-RA scheduling dependency bug. | Dan Gohman | 2009-01-30 | 1 | -1/+1 |
* | BasicAliasAnalysis and FunctionAttrs were both | Duncan Sands | 2009-01-18 | 1 | -52/+3 |
* | add a comment | Gabor Greif | 2009-01-18 | 1 | -0/+1 |
* | Rename getABITypeSize to getTypePaddedSize, as | Duncan Sands | 2009-01-12 | 1 | -1/+1 |
* | make tblgen autogenerate the nocapture intrinsics for | Chris Lattner | 2009-01-12 | 1 | -4/+0 |
* | When checking if an Argument escapes, check if | Duncan Sands | 2009-01-05 | 1 | -7/+13 |
* | Resubmit support for the 'nocapture' attribute. | Nick Lewycky | 2008-12-19 | 1 | -6/+17 |
* | Temporarily revert r61019, r61030, and r61040. These were breaking LLVM Release | Bill Wendling | 2008-12-16 | 1 | -17/+6 |
* | Teach basicaa to use the nocapture attribute when possible. When the | Chris Lattner | 2008-12-15 | 1 | -6/+17 |
* | Allow basicaa to walk through geps with identical indices in | Chris Lattner | 2008-12-10 | 1 | -18/+32 |
* | Teach BasicAA::getModRefInfo(CallSite, CallSite) some | Chris Lattner | 2008-12-09 | 1 | -4/+20 |
* | Fix comment typo. | Duncan Sands | 2008-12-08 | 1 | -1/+1 |
* | Some minor optimizations for isObjectSmallerThan. | Chris Lattner | 2008-12-08 | 1 | -7/+12 |
* | Seriously strengthen the guarantee offered by noalias on a function's return | Nick Lewycky | 2008-11-24 | 1 | -3/+3 |
* | Extend the 'noalias' attribute to function return values. This is intended to | Nick Lewycky | 2008-11-24 | 1 | -8/+17 |
* | Factorize code: remove variants of "strip off | Duncan Sands | 2008-10-01 | 1 | -28/+4 |
* | s/ParameterAttributes/Attributes/g | Devang Patel | 2008-09-23 | 1 | -1/+0 |
* | Tidy up several unbeseeming casts from pointer to intptr_t. | Dan Gohman | 2008-09-04 | 1 | -3/+3 |
* | simplify some code by using a helper function. This really really | Chris Lattner | 2008-06-16 | 1 | -22/+16 |
* | move a bunch of predicates up into their own section | Chris Lattner | 2008-06-16 | 1 | -157/+171 |
* | Other parts of this code treat noalias arguments as objects for | Chris Lattner | 2008-06-16 | 1 | -4/+8 |
* | If we are checking to see if the result of a call aliases a | Chris Lattner | 2008-06-16 | 1 | -1/+21 |
* | Refactor basicaa's main alias function somethin' fierce. | Chris Lattner | 2008-06-16 | 1 | -104/+94 |
* | Fixes PR2395. Looking for a constant in a GEP tail (when the first GEP | Wojciech Matyjewicz | 2008-06-02 | 1 | -1/+7 |
* | Clean up the use of static and anonymous namespaces. This turned up | Dan Gohman | 2008-05-13 | 1 | -14/+14 |
* | Fix a "large integer implicitly truncated to unsigned type" | Duncan Sands | 2008-04-21 | 1 | -1/+1 |
* | Don't assume a tail call can't reference a byval | Dale Johannesen | 2008-04-15 | 1 | -2/+4 |
* | Restore isCFGOnly property of various analysis passes. | Devang Patel | 2008-03-20 | 1 | -1/+1 |
* | PassInfo keep tracks whether a pass is an analysis pass or not. | Devang Patel | 2008-03-19 | 1 | -2/+2 |
* | Fix a compiler warning. | Duncan Sands | 2008-02-19 | 1 | -1/+1 |
* | In addition to arguments passed to it, memcpy (and all other calls) can ModRe... | Owen Anderson | 2008-02-19 | 1 | -1/+2 |
* | don't bother calling getUnderlyingObject for non-pointers. | Chris Lattner | 2008-02-18 | 1 | -1/+2 |
* | Since we're not checking for the more general AllocationInst first, we need t... | Owen Anderson | 2008-02-18 | 1 | -1/+1 |