aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/MemoryDependenceAnalysis.cpp
AgeCommit message (Expand)Author
2007-09-11Fix a typo in memdep, which was causing PR1648.Owen Anderson
2007-09-09Remove an un-needed dependence query. This improves compile time marginally ...Owen Anderson
2007-08-16Cache non-local memory dependence analysis. This is a significant compileOwen Anderson
2007-08-09Make NonLocal and None const in the right way. :-)Owen Anderson
2007-08-08Add more comments to memdep.Owen Anderson
2007-08-08Make memdep fit in 80 cols.Owen Anderson
2007-08-08Change the None and NonLocal markers in memdep to be const.Owen Anderson
2007-08-07Clean up a bunch of caching stuff in memdep. This reduces the time to run GVNOwen Anderson
2007-08-06Improve the accuracy of memdep for determining the dependencies of loads.Owen Anderson
2007-08-02Fix a bug that was causing several miscompilations on SPEC.Owen Anderson
2007-08-01Make non-local memdep not be recursive, and fix a bug on 403.gcc that this ex...Owen Anderson
2007-07-31Fix GLIBCXX_DEBUG error owing to dereference of end iterator. There'sDavid Greene
2007-07-30Use more caching when computing non-local dependence. This makes bzip2 notOwen Anderson
2007-07-26Fix a bug introduced in my last commit.Owen Anderson
2007-07-26Fix a couple more bugs in the phi construction by pulling in code that doesOwen Anderson
2007-07-25Fix a bug in non-local memdep that was causing an infinite loop on 175.vpr.Owen Anderson
2007-07-25Add basic support for performing whole-function RLE.Owen Anderson
2007-07-24Add initial support for non-local memory dependence analysis.Owen Anderson
2007-07-20When removing instructions from the analysis, be sure to check the confirmedOwen Anderson
2007-07-16Add support for walking up memory def chains, which enables finding many moreOwen Anderson
2007-07-12Let MemoryDependenceAnalysis take care of updating AliasAnalysis.Owen Anderson
2007-07-10Calculate the size of a array allocation correctly.Owen Anderson
2007-07-10Fix a crasher when finding the dependency of a call.Owen Anderson
2007-07-10Make this pass registration static as well.Owen Anderson
2007-07-10Handle vaarg instructions correctly.Owen Anderson
2007-07-10Volatile loads and stores depend on each other.Owen Anderson
2007-07-10Add support for finding the dependencies of call and invoke instructions.Owen Anderson
2007-07-10Fix the build, and fix the handling of pointer sizes.Owen Anderson
2007-07-10Fix a bunch of things from Chris' feedbackOwen Anderson
2007-07-06A first stab at memory dependence analysis. This is an interface on top ofOwen Anderson