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
/
include
/
llvm
/
Analysis
/
InstructionSimplify.h
Age
Commit message (
Expand
)
Author
2013-01-31
Document another instsimplify assumption.
Dan Gohman
2013-01-28
Add a comment mentioning that InstructionSimplify routines do,
Dan Gohman
2013-01-02
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2012-12-28
Teach instsimplify to use the constant folder where appropriate for
Chandler Carruth
2012-12-28
Add entry points to instsimplify for simplifying calls. The entry points
Chandler Carruth
2012-12-12
Added a slew of SimplifyInstruction floating-point optimizations, many of whi...
Michael Ilseman
2012-12-09
Reorganize FastMathFlags to be a wrapper around unsigned, and streamline some...
Michael Ilseman
2012-11-27
Fast-math optimization: fold multiply by zero
Michael Ilseman
2012-11-15
Remove trailing whitespace
Michael Ilseman
2012-10-08
Move TargetData to DataLayout.
Micah Villmow
2012-03-24
Refactor the interface to recursively simplifying instructions to be tad
Chandler Carruth
2012-03-13
Generalize the "trunc(ptrtoint(x)) - trunc(ptrtoint(y)) ->
Duncan Sands
2012-03-13
Uniformize the InstructionSimplify interface by ensuring that all routines
Duncan Sands
2011-12-01
Propagate TargetLibraryInfo throughout ConstantFolding.cpp and
Chad Rosier
2011-09-05
Add some simple insertvalue simplifications, for the purpose of cleaning
Duncan Sands
2011-07-19
Convert SimplifyGEPInst to use ArrayRef.
Jay Foad
2011-05-02
Forgot to commit the changes to this file.
Duncan Sands
2011-02-09
Teach instsimplify some tricks about exact/nuw/nsw shifts.
Chris Lattner
2011-01-29
Move InstCombine's knowledge of fdiv to SimplifyInstruction().
Frits van Bommel
2011-01-28
My auto-simplifier noticed that ((X/Y)*Y)/Y occurs several times in SPEC
Duncan Sands
2011-01-14
Move some shift transforms out of instcombine and into InstructionSimplify.
Duncan Sands
2010-12-28
Clarify that InstructionSimplify only returns values that dominate the
Duncan Sands
2010-12-21
Pull a few more simplifications out of instcombine (there are still
Duncan Sands
2010-12-15
Move Sub simplifications and additional Add simplifications out of
Duncan Sands
2010-11-23
Expand a little on the description of what InstructionSimplify does.
Duncan Sands
2010-11-17
Move some those Xor simplifications which don't require creating new
Duncan Sands
2010-11-17
Previously SimplifyInstruction could report that an instruction
Duncan Sands
2010-11-16
In which I discover the existence of loops. Threading an operation
Duncan Sands
2010-11-14
If dom tree information is available, make it possible to pass
Duncan Sands
2010-11-14
Strip trailing whitespace.
Duncan Sands
2010-09-16
Revert r114097, adding back in the assertion against replacing an Instruction...
Owen Anderson
2010-04-20
move some select simplifications out out instcombine into
Chris Lattner
2009-11-27
factor some logic out of instcombine into a new SimplifyAddInst method.
Chris Lattner
2009-11-27
factor some instcombine simplifications for getelementptr out to a new
Chris Lattner
2009-11-10
move some generally useful functions out of jump threading
Chris Lattner
2009-11-10
add a new SimplifyInstruction API, which is like ConstantFoldInstruction,
Chris Lattner
2009-11-10
factor simplification logic for AND and OR out to InstSimplify from instcombine.
Chris Lattner
2009-11-09
rename SimplifyCompare -> SimplifyCmpInst and split it into
Chris Lattner
2009-11-09
stub out a new libanalysis "instruction simplify" interface that
Chris Lattner