index
:
emscripten-fastcomp
master
LLVM with the emscripten fastcomp javascript backend
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Transforms
/
Scalar
/
GVN.cpp
Age
Commit message (
Expand
)
Author
2007-09-21
Add partial caching of non-local memory dependence queries. This provides a ...
Owen Anderson
2007-09-17
Merge DenseMapKeyInfo & DenseMapValueInfo into DenseMapInfo
Chris Lattner
2007-09-16
Be more careful when constant-folding PHI nodes.
Owen Anderson
2007-08-16
Factor out some code into a helper function.
Owen Anderson
2007-08-16
Add some more comments to GVN.
Owen Anderson
2007-08-14
Eliminate PHI nodes with constant values during normal GVN processing, even when
Owen Anderson
2007-08-14
Be more aggressive in pruning unnecessary PHI nodes when doing PHI construction.
Owen Anderson
2007-08-14
Make GVN iterative.
Owen Anderson
2007-08-14
Fix a case where GVN was failing to return true when it had, in fact, modified
Owen Anderson
2007-08-09
Make NonLocal and None const in the right way. :-)
Owen Anderson
2007-08-08
Change the None and NonLocal markers in memdep to be const.
Owen Anderson
2007-08-07
Don't insert nearly as many redundant phi nodes.
Owen Anderson
2007-08-03
Fix a subtle miscompilation. This allows 197.parser to be compiled correctly.
Owen Anderson
2007-08-03
Fix a subtle iterator invalidation bug in a recursive algorithm.
Owen Anderson
2007-08-02
Fix 80 col. violations.
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
Don't let the memory allocator outsmart GVN. ;-)
Owen Anderson
2007-07-31
Fix a failure I accidentally caused in my last commit by mishandling the
Owen Anderson
2007-07-31
Fix a misoptimization in aha.
Owen Anderson
2007-07-30
Avoid potential iterator invalidation problems.
Owen Anderson
2007-07-30
Use more caching when computing non-local dependence. This makes bzip2 not
Owen Anderson
2007-07-30
Fix a bug caused by indiscriminantly asking for the dominators of a predecessor.
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 what is _hopefully_ the last corner case for loops.
Owen Anderson
2007-07-25
My last commit was not correct for nested loops. Fix it, and add a testcase ...
Owen Anderson
2007-07-25
Fix an infinite loop on 300.twolf.
Owen Anderson
2007-07-25
Fix a bug that was causing GVN to crash on 252.eon.
Owen Anderson
2007-07-25
Add basic support for performing whole-function RLE.
Owen Anderson
2007-07-24
Add a GVN pass, using the value numbering code I developed for GVNPRE and the
Owen Anderson