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
/
InstCombineCasts.cpp
Age
Commit message (
Expand
)
Author
2012-06-22
Revert remaining part of r93200: "Disable folding sext(trunc(x)) -> x"
Jakob Stoklund Olesen
2012-06-20
replace usage of EmitGEPOffset() with TargetData::getIndexedOffset() when the...
Nuno Lopes
2012-05-05
Small fix in InstCombineCasts.cpp. Restored "alloca + bitcast" reducing for c...
Stepan Dyatkovskiy
2012-04-04
Always compute all the bits in ComputeMaskedBits.
Rafael Espindola
2012-02-06
Remove some dead code and tidy things up now that vectors use ConstantDataVector
Chris Lattner
2012-01-20
More dead code removal (using -Wunreachable-code)
David Blaikie
2011-12-17
The powers that be have decided that LLVM IR should now support 16-bit
Dan Gohman
2011-12-01
Last bit of TargetLibraryInfo propagation. Also fixed a case for TargetData
Chad Rosier
2011-11-30
Whitespace.
Chad Rosier
2011-11-29
Add support for sqrt, sqrtl, and sqrtf in TargetLibraryInfo. Disable
Chad Rosier
2011-09-27
Stop emitting instructions with the name "tmp" they eat up memory and have to...
Benjamin Kramer
2011-08-29
Fixes following the CR by Chris and Duncan:
Nadav Rotem
2011-08-28
Bitcasts are transitive. Bitcast-Bitcast-X becomes Bitcast-X.
Nadav Rotem
2011-07-25
Convert GetElementPtrInst to use ArrayRef.
Jay Foad
2011-07-22
Convert IRBuilder::CreateGEP and IRBuilder::CreateInBoundsGEP to use
Jay Foad
2011-07-20
Clean up includes of llvm/Analysis/ConstantFolding.h so it's included where i...
Eli Friedman
2011-07-18
land David Blaikie's patch to de-constify Type, with a few tweaks.
Chris Lattner
2011-07-13
It's not safe to fold (fptrunc (sqrt (fpext x))) to (sqrtf x) if there is ano...
Evan Cheng
2011-07-08
Reapply a fixed version of r133285.
Bob Wilson
2011-06-17
Revert r133285. Causing odd failures on Dragonegg.
Chad Rosier
2011-06-17
Relocate NUW test to cover all binary ops in a dynamic alloca expr.
Stuart Hastings
2011-06-13
Avoid fusing bitcasts with dynamic allocas if the amount-to-allocate
Stuart Hastings
2011-05-27
Final step of instcombine debuginfo; switch a couple more places over to Inse...
Eli Friedman
2011-05-18
More instcombine simplifications towards better debug locations.
Eli Friedman
2011-05-18
Use ReplaceInstUsesWith instead of replaceAllUsesWith where appropriate in in...
Eli Friedman
2011-04-02
While SimplifyDemandedBits constant folds this, we can't rely on it here.
Benjamin Kramer
2011-04-01
Fix comment.
Benjamin Kramer
2011-04-01
Tweaks to the icmp+sext-to-shifts optimization to address Frits' comments:
Benjamin Kramer
2011-04-01
Fix build.
Benjamin Kramer
2011-04-01
InstCombine: Turn icmp + sext into bitwise/integer ops when the input has onl...
Benjamin Kramer
2011-04-01
InstCombine: Move (sext icmp) transforms into their own method. No intended f...
Benjamin Kramer
2011-03-30
Remove PHINode::reserveOperandSpace(). Instead, add a parameter to
Jay Foad
2011-03-30
(Almost) always call reserveOperandSpace() on newly created PHINodes.
Jay Foad
2011-03-08
llvm.dbg.declare intrinsic does not use any llvm::Values. It's magic!
Devang Patel
2011-02-15
convert ConstantVector::get to use ArrayRef.
Chris Lattner
2011-02-14
revert my ConstantVector patch, it seems to have made the llvm-gcc
Chris Lattner
2011-02-14
Switch ConstantVector::get to use ArrayRef instead of a pointer+size
Chris Lattner
2011-01-15
implement an instcombine xform that canonicalizes casts outside of and-with-c...
Chris Lattner
2010-12-17
Whitespace fixes. No functionality change.
Bill Wendling
2010-12-17
Add vector versions of some existing scalar transforms to aid codegen in matc...
Nate Begeman
2010-09-07
Fix a serious performance regression introduced by r108687 on linux:
Chris Lattner
2010-08-28
for completeness, allow undef also.
Chris Lattner
2010-08-28
handle the constant case of vector insertion. For something
Chris Lattner
2010-08-28
optimize bitcasts from large integers to vector into vector
Chris Lattner
2010-08-27
Implement a pretty general logical shift propagation
Chris Lattner
2010-08-27
teach the truncation optimization that an entire chain of
Chris Lattner
2010-08-27
Add an instcombine to clean up a common pattern produced
Chris Lattner
2010-08-26
optimize "integer extraction out of the middle of a vector" as produced
Chris Lattner
2010-08-26
optimize bitcast(trunc(bitcast(x))) where the result is a float and 'x'
Chris Lattner
2010-07-19
Tweak per Chris' comments.
Owen Anderson
[next]