Build the correct range for loops with unusual bounds. Fix from Jay Foad.
[oota-llvm.git] / lib / Analysis / MemoryDependenceAnalysis.cpp
2007-09-21 Owen AndersonAdd partial caching of non-local memory dependence...
2007-09-19 Owen AndersonAdd a flag to mark a dirty cache entry. This is not...
2007-09-11 Owen AndersonFix a typo in memdep, which was causing PR1648.
2007-09-09 Owen AndersonRemove an un-needed dependence query. This improves...
2007-08-16 Owen AndersonCache non-local memory dependence analysis. This is...
2007-08-09 Owen AndersonMake NonLocal and None const in the right way. :-)
2007-08-08 Owen AndersonAdd more comments to memdep.
2007-08-08 Owen AndersonMake memdep fit in 80 cols.
2007-08-08 Owen AndersonChange the None and NonLocal markers in memdep to be...
2007-08-07 Owen AndersonClean up a bunch of caching stuff in memdep. This...
2007-08-06 Owen AndersonImprove the accuracy of memdep for determining the...
2007-08-02 Owen AndersonFix a bug that was causing several miscompilations...
2007-08-01 Owen AndersonMake non-local memdep not be recursive, and fix a bug...
2007-07-31 David GreeneFix GLIBCXX_DEBUG error owing to dereference of end...
2007-07-30 Owen AndersonUse more caching when computing non-local dependence...
2007-07-26 Owen AndersonFix a bug introduced in my last commit.
2007-07-26 Owen AndersonFix a couple more bugs in the phi construction by pulli...
2007-07-25 Owen AndersonFix a bug in non-local memdep that was causing an infin...
2007-07-25 Owen AndersonAdd basic support for performing whole-function RLE.
2007-07-24 Owen AndersonAdd initial support for non-local memory dependence...
2007-07-20 Owen AndersonWhen removing instructions from the analysis, be sure...
2007-07-16 Owen AndersonAdd support for walking up memory def chains, which...
2007-07-12 Owen AndersonLet MemoryDependenceAnalysis take care of updating...
2007-07-10 Owen AndersonCalculate the size of a array allocation correctly.
2007-07-10 Owen AndersonFix a crasher when finding the dependency of a call.
2007-07-10 Owen AndersonMake this pass registration static as well.
2007-07-10 Owen AndersonHandle vaarg instructions correctly.
2007-07-10 Owen AndersonVolatile loads and stores depend on each other.
2007-07-10 Owen AndersonAdd support for finding the dependencies of call and...
2007-07-10 Owen AndersonFix the build, and fix the handling of pointer sizes.
2007-07-10 Owen AndersonFix a bunch of things from Chris' feedback
2007-07-06 Owen AndersonA first stab at memory dependence analysis. This is...