Comment-ize the functions in GVNPRE.
[oota-llvm.git] / lib / Transforms / Scalar / GVNPRE.cpp
2007-06-21 Owen AndersonComment-ize the functions in GVNPRE.
2007-06-20 Owen AndersonSplit runOnFunction into many smaller functions. This...
2007-06-20 Owen AndersonMake GVNPRE accurate report whether it modified the...
2007-06-20 Owen AndersonGet rid of an unneeded helper function.
2007-06-19 Owen AndersonUse a DenseMap instead of an std::map for the value...
2007-06-19 Owen AndersonMake dependsOnInvoke much more specific in what it...
2007-06-19 Owen AndersonHandle constants in phi nodes properly. This fixes...
2007-06-19 Owen AndersonBe careful to erase values from all of the appropriate...
2007-06-19 Owen AndersonRemember to clear the maximal sets between functions.
2007-06-19 Owen AndersonRefactor GVNPRE to use a much smart method of uniquing...
2007-06-18 Owen AndersonCache the results of dependsOnInvoke()
2007-06-18 Owen AndersonFix indentation.
2007-06-18 Owen AndersonDon't perform an expensive check if it's not necessary.
2007-06-16 Owen AndersonFix test/Transforms/GVNPRE/2007-06-15-InvokeInst.ll...
2007-06-15 Owen AndersonFix test/Transforms/GVNPRE/2007-06-15-Looping.ll
2007-06-12 Owen AndersonFix test/Transforms/GVNPRE/2007-06-12-PhiTranslate.ll
2007-06-12 Owen AndersonRefactor some code, and fix test/Transforms/GVNPRE...
2007-06-12 Owen AndersonFix a few more bugs, including an instance of walking...
2007-06-11 Owen AndersonHandle functions with multiple exit blocks properly.
2007-06-09 Owen AndersonPerform PRE of comparison operators.
2007-06-08 Owen AndersonCollect statistics from GVN-PRE.
2007-06-08 Owen AndersonFix typo in a comment.
2007-06-08 Owen AndersonFix a bug that was causing the elimination phase not...
2007-06-08 Owen AndersonSmall bugfix, and const-ify some methods (Thanks, Bill).
2007-06-08 Owen AndersonAdd partial redundancy elimination.
2007-06-06 Owen AndersonAdd simple full redundancy elimination.
2007-06-05 Owen AndersonFix a misunderstanding of the algorithm. Really, we...
2007-06-05 Owen AndersonDon't leak memory.
2007-06-05 Owen AndersonFix a small bug, some 80 cols violations, and add some...
2007-06-04 Owen AndersonDon't use std::set_difference when the two sets are...
2007-06-04 Owen AndersonFix a bunch of small bugs, and improve the debugging...
2007-06-04 Owen AndersonMake phi_translate correct.
2007-06-04 Devang Patels/llvm::DominatorTreeBase::DomTreeNode/llvm::DomTreeNode/g
2007-06-03 Owen AndersonDon't use the custom comparator where it's not necessary.
2007-06-03 Devang Patels/DominatorTreeBase::Node/DominatorTreeBase:DomTreeNode/g
2007-06-03 Owen AndersonRemove an unused method.
2007-06-03 Owen AndersonThere's no need to have an Expression class... Value...
2007-06-01 Owen Andersonclean() needs to process things in topological order.
2007-06-01 Owen AndersonFix Expression comparison, which in turn fixes a value...
2007-05-31 Owen AndersonAdd a topological sort function.
2007-05-31 Owen AndersonAttempt to fix up phi_translate.
2007-05-29 Owen AndersonFix a typo
2007-05-29 Owen AndersonRe-fix a bug, where I was now being too aggressive.
2007-05-29 Owen AndersonUse proper debugging facilities so other people don...
2007-05-29 Owen AndersonComment debug code out that I accidentally uncommented...
2007-05-29 Owen AndersonAdd a place where I missed using the maximal set. ...
2007-05-29 Owen AndersonVery first part of a GVN-PRE implementation. It curren...