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
/
LoopDeletion.cpp
Age
Commit message (
Expand
)
Author
2009-07-15
Make makeLoopInvariant report whether it made any changes or not,
Dan Gohman
2009-07-08
Tell ScalarEvolution to forget a loop before starting to delete it.
Dan Gohman
2009-07-07
Change all SCEV* to SCEV *.
Dan Gohman
2009-06-22
SCEVHandle is no more!
Owen Anderson
2009-05-06
Allow readonly functions to unwind exceptions. Teach
Duncan Sands
2009-05-04
Re-apply 70645, converting ScalarEvolution to use
Dan Gohman
2009-05-03
Revert r70645 for now; it's causing a variety of regressions.
Dan Gohman
2009-05-02
Convert ScalarEvolution to use CallbackVH for its internal map. This
Dan Gohman
2009-05-02
Tell ScalarEvolution that the loop is being deleted before actually
Dan Gohman
2009-02-24
Rename ScalarEvolution's getIterationCount to getBackedgeTakenCount,
Dan Gohman
2009-02-24
Preserve the DominanceFrontier analysis in the LoopDeletion pass.
Dan Gohman
2009-02-23
LoopDeletion needs to inform ScalarEvolution when a loop is deleted,
Dan Gohman
2008-10-22
Change create*Pass factory functions to return Pass* instead of
Daniel Dunbar
2008-09-04
Tidy up several unbeseeming casts from pointer to intptr_t.
Dan Gohman
2008-06-23
Use use_empty() instead of getNumUses(), avoiding a use list traversal.
Dan Gohman
2008-05-29
Remove debugging code.
Owen Anderson
2008-05-16
Clean ups for loop deletion based on Chris' feedback.
Owen Anderson
2008-05-13
Clean up the use of static and anonymous namespaces. This turned up
Dan Gohman
2008-05-08
Improve pass documentation and comments.
Gordon Henriksen
2008-05-06
We need to update PHIs containing the exiting block, not the exit block. We ...
Owen Anderson
2008-04-30
This condition got inverted accidentally.
Owen Anderson
2008-04-29
A lot of cleanups and documentation improvements, as well as a few corner cas...
Owen Anderson
2008-04-29
Rename DeadLoopElimination to LoopDeletion, part 2.
Owen Anderson
2008-04-29
Rename DeadLoopElimination to LoopDeletion, part one.
Owen Anderson