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
/
Transforms
/
Scalar
/
FastDSE.cpp
Age
Commit message (
Expand
)
Author
2007-08-01
Move FastDSE in to DeadStoreElimination.
Owen Anderson
2007-07-23
Fix file header.
Owen Anderson
2007-07-16
Take advantage of undefined behavior if the source program tries to GEP
Owen Anderson
2007-07-16
Add support for walking up memory def chains, which enables finding many more
Owen Anderson
2007-07-13
Handle GEPs with all-zero indices in the same way we handle pointer-pointer b...
Owen Anderson
2007-07-13
Be more aggressive in removing dead stores, and in removing instructions triv...
Owen Anderson
2007-07-12
Reimplement removing stores to allocas at the end of a function. This should...
Owen Anderson
2007-07-12
Make the condition-checking for free with non-trivial dependencies more correct.
Owen Anderson
2007-07-12
Remove the end-block handling code. It was unsafe, and making it safe would ...
Owen Anderson
2007-07-12
checked in as obvious,
Gabor Greif
2007-07-12
Let MemoryDependenceAnalysis take care of updating AliasAnalysis.
Owen Anderson
2007-07-11
Handle the case where an entire structure is freed, and its dependency is a s...
Owen Anderson
2007-07-11
Add support for eliminate stores to stack-allocated memory locations at the end
Owen Anderson
2007-07-11
Handle eliminating stores that occur right before a free.
Owen Anderson
2007-07-11
Clean up a few things based on Chris' feedback.
Owen Anderson
2007-07-11
Add FastDSE, a new algorithm for doing dead store elimination. This algorith...
Owen Anderson