aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/BasicAliasAnalysis.cpp
Commit message (Expand)AuthorAgeFilesLines
* Fix a compiler warning.Duncan Sands2008-02-191-1/+1
* In addition to arguments passed to it, memcpy (and all other calls) can ModRe...Owen Anderson2008-02-191-1/+2
* don't bother calling getUnderlyingObject for non-pointers.Chris Lattner2008-02-181-1/+2
* Since we're not checking for the more general AllocationInst first, we need t...Owen Anderson2008-02-181-1/+1
* This check is not correct for mallocs, so exclude them earlier.Owen Anderson2008-02-181-2/+2
* Fix a comment, and a bug where we weren't applying the tail call logic in cas...Owen Anderson2008-02-181-6/+8
* Fix bugs that Chris noticed in my last patch.Owen Anderson2008-02-181-9/+17
* bitcasts of pointers are always pointers.Chris Lattner2008-02-181-5/+2
* Teach getModRefInfo that memcpy, memmove, and memset don't "capture" memory a...Owen Anderson2008-02-171-3/+13
* getUnderlyingObject can return null, handle this.Chris Lattner2008-01-241-2/+3
* Teach basicaa that 'byval' arguments define a new memory location thatChris Lattner2008-01-241-34/+34
* Remove attribution from file headers, per discussion on llvmdev.Chris Lattner2007-12-291-2/+2
* Make these loops follow GetGEPOperands() behavior.Wojciech Matyjewicz2007-12-131-11/+13
* Fix PR1782, patch by Wojtek Matyjewicz!Chris Lattner2007-12-091-4/+4
* Rather than having special rules like "intrinsics cannotDuncan Sands2007-12-031-37/+0
* Integrate the readonly/readnone logic more deeplyDuncan Sands2007-12-011-5/+0
* Add some convenience methods for querying attributes, andDuncan Sands2007-11-281-3/+2
* Fix PR1146: parameter attributes are longer part ofDuncan Sands2007-11-271-2/+2
* Ding dong, the DoesntAccessMemoryFns andDuncan Sands2007-11-231-113/+0
* Teach alias analysis about readnone/readonly functions.Duncan Sands2007-11-221-0/+6
* Fix for PR1801Tanya Lattner2007-11-161-0/+3
* Fix PR1774 and BasicAA/2007-11-05-SizeCrash.llChris Lattner2007-11-061-7/+11
* Executive summary: getTypeSize -> getTypeStoreSize / getABITypeSize.Duncan Sands2007-11-011-2/+2
* Make a comment better.Owen Anderson2007-10-261-1/+3
* Fix for PR1741.Owen Anderson2007-10-251-2/+3
* Add lengthof and endof templates that hide a lot of sizeof computations.Owen Anderson2007-09-071-5/+4
* Missing break. Patch by Wojciech Matyjewicz.Evan Cheng2007-09-051-0/+1
* This resolves a regression of BasicAA which failed to find any memory informa...Chandler Carruth2007-08-061-4/+23
* Upgrade BasicAliasAnalysis::getModRefBehavior to not call Value::getName,Chris Lattner2007-08-051-4/+14
* Implement review feedback.Christopher Lamb2007-08-021-4/+4
* Teach BasicAA about noalias parameter attributes, but do it correctly this time.Christopher Lamb2007-08-021-1/+31
* Revert overly aggressive interpretation of noaliasChristopher Lamb2007-07-311-32/+1
* Teach BasicAA about noalias function parameters. Passes all of DejaGNU and te...Christopher Lamb2007-07-311-1/+32
* Fix comments about vectors to use the current wording.Dan Gohman2007-07-161-1/+1
* Add explicit keywords.Dan Gohman2007-07-021-1/+1
* Make BasicAliasAnalysis correctly register itself. Patch by DevangAnton Korobeynikov2007-06-181-0/+2
* Drop 'const'Devang Patel2007-05-031-4/+4
* Use 'static const char' instead of 'static const int'.Devang Patel2007-05-021-4/+4
* Do not use typeinfo to identify pass in pass manager.Devang Patel2007-05-011-0/+6
* Make use of ConstantInt::isZero instead of ConstantInt::isNullValue.Zhou Sheng2007-04-191-1/+1
* For PR1195:Reid Spencer2007-02-151-3/+3
* Switch some std::vector's to SmallVectors. This speeds up -load-vn -gcseChris Lattner2007-02-101-3/+5
* modify CheckGEPInstructions to take a pointer and size instead of a vector.Chris Lattner2007-02-101-23/+31
* eliminate use of TargetData::getIndexedOffset that takes a vectorChris Lattner2007-02-101-5/+11
* Make classes in anonymous namespaces use VISIBILITY_HIDDEN to help reduceReid Spencer2007-02-051-1/+1
* For PR1136: Rename GlobalVariable::isExternal as isDeclaration to avoidReid Spencer2007-01-301-1/+1
* fit to 80 cols.Chris Lattner2007-01-141-8/+6
* GEP operands can't be boolsChris Lattner2007-01-121-6/+3
* Implement review feedback for the ConstantBool->ConstantInt merge. ChrisReid Spencer2007-01-121-1/+1
* Rename BoolTy as Int1Ty. Patch by Sheng Zhou.Reid Spencer2007-01-111-4/+4