Factor out some code into a helper function.
[oota-llvm.git] / lib / Transforms / Scalar / GVN.cpp
2007-08-16 Owen AndersonFactor out some code into a helper function.
2007-08-16 Owen AndersonAdd some more comments to GVN.
2007-08-14 Owen AndersonEliminate PHI nodes with constant values during normal...
2007-08-14 Owen AndersonBe more aggressive in pruning unnecessary PHI nodes...
2007-08-14 Owen AndersonMake GVN iterative.
2007-08-14 Owen AndersonFix a case where GVN was failing to return true when...
2007-08-09 Owen AndersonMake NonLocal and None const in the right way. :-)
2007-08-08 Owen AndersonChange the None and NonLocal markers in memdep to be...
2007-08-07 Owen AndersonDon't insert nearly as many redundant phi nodes.
2007-08-03 Owen AndersonFix a subtle miscompilation. This allows 197.parser...
2007-08-03 Owen AndersonFix a subtle iterator invalidation bug in a recursive...
2007-08-02 Owen AndersonFix 80 col. violations.
2007-08-02 Owen AndersonFix a bug that was causing several miscompilations...
2007-08-01 Owen AndersonMake non-local memdep not be recursive, and fix a bug...
2007-07-31 Owen AndersonDon't let the memory allocator outsmart GVN. ;-)
2007-07-31 Owen AndersonFix a failure I accidentally caused in my last commit...
2007-07-31 Owen AndersonFix a misoptimization in aha.
2007-07-30 Owen AndersonAvoid potential iterator invalidation problems.
2007-07-30 Owen AndersonUse more caching when computing non-local dependence...
2007-07-30 Owen AndersonFix a bug caused by indiscriminantly asking for the...
2007-07-26 Owen AndersonFix a couple more bugs in the phi construction by pulli...
2007-07-25 Owen AndersonFix what is _hopefully_ the last corner case for loops.
2007-07-25 Owen AndersonMy last commit was not correct for nested loops. Fix...
2007-07-25 Owen AndersonFix an infinite loop on 300.twolf.
2007-07-25 Owen AndersonFix a bug that was causing GVN to crash on 252.eon.
2007-07-25 Owen AndersonAdd basic support for performing whole-function RLE.
2007-07-24 Owen AndersonAdd a GVN pass, using the value numbering code I develo...