aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/BasicAliasAnalysis.cpp
AgeCommit message (Expand)Author
2011-07-27Explicitly cast narrowing conversions inside {}s that will become errors inJeffrey Yasskin
2011-07-18land David Blaikie's patch to de-constify Type, with a few tweaks.Chris Lattner
2011-06-10Initialize BasicAA's AliasCache to set it to use fewer buckets byDan Gohman
2011-06-04Reapply r131781, now that the GVN bug with partially-aliasing loadsDan Gohman
2011-06-04Revert r131781 again. Apparently there is more going on here.Dan Gohman
2011-06-04Reapply r131781 (revert r131809), now that some BasicAA shortcomingsDan Gohman
2011-06-04Fix BasicAA's recursion detection so that it doesn't pessimizeDan Gohman
2011-06-03When merging MustAlias and PartialAlias, chose PartialAlias insteadDan Gohman
2011-05-24Make DecomposeGEPExpression check SimplifyInstruction onlyDan Gohman
2011-05-23fix a really nasty basicaa mod/ref calculation bug that was causing miscompil...Chris Lattner
2011-05-21Revert commit 131781, to see if it fixes the x86-64 dragonegg buildbot.Duncan Sands
2011-05-21When BasicAA can determine that two pointers have the same base butDan Gohman
2011-04-27Teach BasicAA about arm.neon.vld1 and vst1.Dan Gohman
2011-04-15Fix a ton of comment typos found by codespell. Patch byChris Lattner
2011-03-23Revert r128140 for now.Anders Carlsson
2011-03-23A global variable with internal linkage where all uses are in one function an...Anders Carlsson
2011-01-24Give GetUnderlyingObject a TargetData, to keep it in syncDan Gohman
2011-01-18Teach BasicAA to return PartialAlias in cases where both pointersDan Gohman
2011-01-03fix rdar://8813415 - a miscompilation of 164.gzip that loop-idiomChris Lattner
2010-12-15Reapply r121886, and also update DecomposeGEPExpression to keepDan Gohman
2010-12-15Move Value::getUnderlyingObject to be a standaloneDan Gohman
2010-12-13Reapply r121520, PartialAlias implementation for BasicAA, now thatDan Gohman
2010-12-10Revert r121520, which may have introduced miscompilations.Dan Gohman
2010-12-10Implement PartialAlias checking in BasicAA.Dan Gohman
2010-12-07PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() andJay Foad
2010-11-30enhance basicaa to return "Mod" for a memcpy call when theChris Lattner
2010-11-30Teach basicaa that memset's modref set is at worst "mod" and neverChris Lattner
2010-11-10Make ModRefBehavior a lattice. Use this to clean up AliasAnalysisDan Gohman
2010-11-08Re-introduce the MaxLookup limit to BasicAliasAnalysis'Dan Gohman
2010-11-08Extend the AliasAnalysis::pointsToConstantMemory interface to allow itDan Gohman
2010-11-08Teach BasicAliasAnalysis::getModRefBehavior(const Function *F)Dan Gohman
2010-10-19Move NoAA out of BasicAliasAnalysis.cpp into its own file, now thatDan Gohman
2010-10-19Reapply r116831 and r116839, converting AliasAnalysis to useDan Gohman
2010-10-19Revert r116831 and r116839, which are breaking selfhost builds.Dan Gohman
2010-10-19Change AliasAnalysis and its clients to use uint64_t instead of unsignedDan Gohman
2010-10-19Get rid of static constructors for pass registration. Instead, every pass ex...Owen Anderson
2010-10-18Fix BasicAA to pass TBAAInfo through to the chained analysis.Dan Gohman
2010-10-18Make BasicAliasAnalysis a normal AliasAnalysis implementation whichDan Gohman
2010-10-07Now with fewer extraneous semicolons!Owen Anderson
2010-09-15PR7959: Handle negative scales in GEPs correctly in BasicAA for non-64-bitEli Friedman
2010-09-14Remove the experimental AliasAnalysis::getDependency interface, whichDan Gohman
2010-09-09Extend the getDependence query with support for PHI translation.Dan Gohman
2010-09-08Add a new experimental generalized dependence query interface toDan Gohman
2010-08-18refix PR1143 by making basicaa analyze zexts of indices aggresively,Chris Lattner
2010-08-18GetLinearExpression is only called when TD is non-null, pass as Chris Lattner
2010-08-18rework GEP decomposition to make a new VariableGEPIndex struct instead ofChris Lattner
2010-08-18move gep decomposition out of ValueTracking into BasicAA. The form ofChris Lattner
2010-08-18Revert r111375, "move gep decomposition out of ValueTracking into BasicAA. TheDaniel Dunbar
2010-08-18move gep decomposition out of ValueTracking into BasicAA. The form ofChris Lattner
2010-08-06Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson