index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Analysis
/
MemoryDependenceAnalysis.cpp
Age
Commit message (
Expand
)
Author
2007-09-11
Fix a typo in memdep, which was causing PR1648.
Owen Anderson
2007-09-09
Remove an un-needed dependence query. This improves compile time marginally ...
Owen Anderson
2007-08-16
Cache non-local memory dependence analysis. This is a significant compile
Owen Anderson
2007-08-09
Make NonLocal and None const in the right way. :-)
Owen Anderson
2007-08-08
Add more comments to memdep.
Owen Anderson
2007-08-08
Make memdep fit in 80 cols.
Owen Anderson
2007-08-08
Change the None and NonLocal markers in memdep to be const.
Owen Anderson
2007-08-07
Clean up a bunch of caching stuff in memdep. This reduces the time to run GVN
Owen Anderson
2007-08-06
Improve the accuracy of memdep for determining the dependencies of loads.
Owen Anderson
2007-08-02
Fix a bug that was causing several miscompilations on SPEC.
Owen Anderson
2007-08-01
Make non-local memdep not be recursive, and fix a bug on 403.gcc that this ex...
Owen Anderson
2007-07-31
Fix GLIBCXX_DEBUG error owing to dereference of end iterator. There's
David Greene
2007-07-30
Use more caching when computing non-local dependence. This makes bzip2 not
Owen Anderson
2007-07-26
Fix a bug introduced in my last commit.
Owen Anderson
2007-07-26
Fix a couple more bugs in the phi construction by pulling in code that does
Owen Anderson
2007-07-25
Fix a bug in non-local memdep that was causing an infinite loop on 175.vpr.
Owen Anderson
2007-07-25
Add basic support for performing whole-function RLE.
Owen Anderson
2007-07-24
Add initial support for non-local memory dependence analysis.
Owen Anderson
2007-07-20
When removing instructions from the analysis, be sure to check the confirmed
Owen Anderson
2007-07-16
Add support for walking up memory def chains, which enables finding many more
Owen Anderson
2007-07-12
Let MemoryDependenceAnalysis take care of updating AliasAnalysis.
Owen Anderson
2007-07-10
Calculate the size of a array allocation correctly.
Owen Anderson
2007-07-10
Fix a crasher when finding the dependency of a call.
Owen Anderson
2007-07-10
Make this pass registration static as well.
Owen Anderson
2007-07-10
Handle vaarg instructions correctly.
Owen Anderson
2007-07-10
Volatile loads and stores depend on each other.
Owen Anderson
2007-07-10
Add support for finding the dependencies of call and invoke instructions.
Owen Anderson
2007-07-10
Fix the build, and fix the handling of pointer sizes.
Owen Anderson
2007-07-10
Fix a bunch of things from Chris' feedback
Owen Anderson
2007-07-06
A first stab at memory dependence analysis. This is an interface on top of
Owen Anderson