aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/BasicAliasAnalysis.cpp
AgeCommit message (Expand)Author
2008-10-01Factorize code: remove variants of "strip offDuncan Sands
2008-09-23s/ParameterAttributes/Attributes/gDevang Patel
2008-09-04Tidy up several unbeseeming casts from pointer to intptr_t.Dan Gohman
2008-06-16simplify some code by using a helper function. This really reallyChris Lattner
2008-06-16move a bunch of predicates up into their own sectionChris Lattner
2008-06-16Other parts of this code treat noalias arguments as objects forChris Lattner
2008-06-16If we are checking to see if the result of a call aliases aChris Lattner
2008-06-16Refactor basicaa's main alias function somethin' fierce. Chris Lattner
2008-06-02Fixes PR2395. Looking for a constant in a GEP tail (when the first GEP Wojciech Matyjewicz
2008-05-13Clean up the use of static and anonymous namespaces. This turned upDan Gohman
2008-04-21Fix a "large integer implicitly truncated to unsigned type"Duncan Sands
2008-04-15Don't assume a tail call can't reference a byvalDale Johannesen
2008-03-20Restore isCFGOnly property of various analysis passes.Devang Patel
2008-03-19PassInfo keep tracks whether a pass is an analysis pass or not.Devang Patel
2008-02-19Fix a compiler warning.Duncan Sands
2008-02-19In addition to arguments passed to it, memcpy (and all other calls) can ModRe...Owen Anderson
2008-02-18don't bother calling getUnderlyingObject for non-pointers.Chris Lattner
2008-02-18Since we're not checking for the more general AllocationInst first, we need t...Owen Anderson
2008-02-18This check is not correct for mallocs, so exclude them earlier.Owen Anderson
2008-02-18Fix a comment, and a bug where we weren't applying the tail call logic in cas...Owen Anderson
2008-02-18Fix bugs that Chris noticed in my last patch.Owen Anderson
2008-02-18bitcasts of pointers are always pointers.Chris Lattner
2008-02-17Teach getModRefInfo that memcpy, memmove, and memset don't "capture" memory a...Owen Anderson
2008-01-24getUnderlyingObject can return null, handle this.Chris Lattner
2008-01-24Teach basicaa that 'byval' arguments define a new memory location thatChris Lattner
2007-12-29Remove attribution from file headers, per discussion on llvmdev.Chris Lattner
2007-12-13Make these loops follow GetGEPOperands() behavior.Wojciech Matyjewicz
2007-12-09Fix PR1782, patch by Wojtek Matyjewicz!Chris Lattner
2007-12-03Rather than having special rules like "intrinsics cannotDuncan Sands
2007-12-01Integrate the readonly/readnone logic more deeplyDuncan Sands
2007-11-28Add some convenience methods for querying attributes, andDuncan Sands
2007-11-27Fix PR1146: parameter attributes are longer part ofDuncan Sands
2007-11-23Ding dong, the DoesntAccessMemoryFns andDuncan Sands
2007-11-22Teach alias analysis about readnone/readonly functions.Duncan Sands
2007-11-16Fix for PR1801Tanya Lattner
2007-11-06Fix PR1774 and BasicAA/2007-11-05-SizeCrash.llChris Lattner
2007-11-01Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize.Duncan Sands
2007-10-26Make a comment better.Owen Anderson
2007-10-25Fix for PR1741.Owen Anderson
2007-09-07Add lengthof and endof templates that hide a lot of sizeof computations.Owen Anderson
2007-09-05Missing break. Patch by Wojciech Matyjewicz.Evan Cheng
2007-08-06This resolves a regression of BasicAA which failed to find any memory informa...Chandler Carruth
2007-08-05Upgrade BasicAliasAnalysis::getModRefBehavior to not call Value::getName,Chris Lattner
2007-08-02Implement review feedback.Christopher Lamb
2007-08-02Teach BasicAA about noalias parameter attributes, but do it correctly this time.Christopher Lamb
2007-07-31Revert overly aggressive interpretation of noaliasChristopher Lamb
2007-07-31Teach BasicAA about noalias function parameters. Passes all of DejaGNU and te...Christopher Lamb
2007-07-16Fix comments about vectors to use the current wording.Dan Gohman
2007-07-02Add explicit keywords.Dan Gohman
2007-06-18Make BasicAliasAnalysis correctly register itself. Patch by DevangAnton Korobeynikov