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
/
InstCombine
/
InstCombineVectorOps.cpp
Age
Commit message (
Expand
)
Author
2013-05-04
Tabs to spaces. No functionality change.
Nick Lewycky
2013-05-01
Revert "InstCombine: Fold more shuffles of shuffles."
Jim Grosbach
2013-04-30
InstCombine: Fold more shuffles of shuffles.
Jim Grosbach
2013-04-22
Changed back (relative to commit 179786) the operations executed when extract...
Anat Shemer
2013-04-18
In the function InstCombiner::visitExtractElementInst() removed the limitatio...
Anat Shemer
2013-04-18
Added a function scalarizePHI() that sclarizes a vector phi instruction if it...
Anat Shemer
2013-04-11
Fix for wrong instcombine on vector insert/extract
Benjamin Kramer
2013-01-18
Check for less than 0 in shuffle mask instead of -1. It's more consistent wit...
Craig Topper
2013-01-18
Remove trailing whitespace. Remove new lines between closing brace and 'else'
Craig Topper
2013-01-15
Teach InstCombine to optimize extract of a value from a vector add operation ...
Nadav Rotem
2012-10-16
[InstCombine] Teach InstCombine how to handle an obfuscated splat.
Michael Gottesman
2012-01-27
continue making the world safe for ConstantDataVector. At this point,
Chris Lattner
2012-01-26
some general cleanup, using new methods and tidying up old code.
Chris Lattner
2012-01-24
basic instcombine support for CDS.
Chris Lattner
2011-10-21
Minor simplification: use ShuffleVectorInst::getMaskValue instead of a more e...
Eli Friedman
2011-10-21
Extend instcombine's shufflevector simplification to handle more cases where ...
Eli Friedman
2011-07-18
land David Blaikie's patch to de-constify Type, with a few tweaks.
Chris Lattner
2011-03-31
Instcombile optimization: extractelement(cast) -> cast(extractelement)
Nadav Rotem
2011-02-19
PR9218: SimplifyDemandedVectorElts can return a non-null value that is not
Eli Friedman
2010-12-01
PR5207: Rename overloaded APInt methods set(), clear(), flip() to
Jay Foad
2010-10-29
Clean up indentation and other whitespace.
Bob Wilson
2010-10-29
Remove trailing whitespace.
Bob Wilson
2010-10-29
Fix 80-column violation.
Bob Wilson
2010-10-29
Change instcombine's getShuffleMask to represent undef with negative values.
Bob Wilson
2010-10-29
Make instcombine a little more aggressive in combining vector shuffles.
Bob Wilson
2010-08-17
Temporarily revert r110987 as it's causing some miscompares in
Eric Christopher
2010-08-13
Reapply this transformation now that it is passing the external test which it...
Nate Begeman
2010-08-12
Temporarily revert 110737 and 110734, they were causing failures
Eric Christopher
2010-08-10
Add the minimal amount of smarts necessary to instcombine of shufflevectors t...
Nate Begeman
2010-02-16
There are two ways of checking for a given type, for example isa<PointerType>(T)
Duncan Sands
2010-02-08
fix some problems handling large vectors reported in PR6230
Chris Lattner
2010-01-05
reduce indentation
Chris Lattner
2010-01-05
split vector stuff out to InstCombineVectorOps.cpp
Chris Lattner