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
/
CorrelatedValuePropagation.cpp
Age
Commit message (
Expand
)
Author
2013-02-24
CVP: If we have a PHI with an incoming select, try to skip the select.
Benjamin Kramer
2013-01-02
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2012-12-03
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-09-28
CorrelatedPropagation: BasicBlock::removePredecessor can simplify PHI nodes. ...
Benjamin Kramer
2012-03-11
llvm::SwitchInst
Stepan Dyatkovskiy
2012-03-09
Add statistics on removed switch cases, and fix the phi statistic
Duncan Sands
2012-03-09
Eliminate switch cases that can never match, for example removes all
Duncan Sands
2011-04-11
Don't include Operator.h from InstrTypes.h.
Jay Foad
2010-12-15
Fix PR8790, another instance where unreachable code can cause instruction sim...
Owen Anderson
2010-12-15
Cleanup trailing whitespace.
Owen Anderson
2010-11-16
Have a few places that want to simplify phi nodes use SimplifyInstruction
Duncan Sands
2010-10-29
Give up on doing in-line instruction simplification during correlated value p...
Owen Anderson
2010-10-19
Get rid of static constructors for pass registration. Instead, every pass ex...
Owen Anderson
2010-10-12
Begin adding static dependence information to passes, which will allow us to
Owen Anderson
2010-10-07
Now with fewer extraneous semicolons!
Owen Anderson
2010-09-16
Use a depth-first iteratation in CorrelatedValuePropagation to avoid wasting ...
Owen Anderson
2010-09-03
Propagate non-local comparisons. Fixes PR1757.
Owen Anderson
2010-09-03
Add support for simplifying a load from a computed value to a load from a glo...
Owen Anderson
2010-08-31
Only try to clean up the current block if we changed that block already.
Owen Anderson
2010-08-31
Don't perform an extra traversal of the function just to do cleanup. We can ...
Owen Anderson
2010-08-31
Rename ValuePropagation to a more descriptive CorrelatedValuePropagation.
Owen Anderson
2010-08-31
Rename file to something more descriptive.
Owen Anderson