index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
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
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
2010-07-19
Reimplement r108639 in InstCombine rather than DAGCombine.
Owen Anderson
2010-05-28
Fix instcombine's handling of alloca to accept non-i32 types.
Dan Gohman
2010-05-25
Fix a missing newline in debug output.
Dan Gohman
2010-05-08
Teach instcombine to transform a bitcast/(zext|trunc)/bitcast sequence
Chris Lattner
2010-04-07
Say bitcast instead of bitconvert.
Dan Gohman
2010-02-16
There are two ways of checking for a given type, for example isa<PointerType>(T)
Duncan Sands
2010-02-15
Uniformize the names of type predicates: rather than having isFloatTy and
Duncan Sands
2010-02-11
Rename ValueRequiresCast to ShouldOptimizeCast, to better reflect
Chris Lattner
2010-02-02
LangRef.html says that inttoptr and ptrtoint always use zero-extension
Dan Gohman
2010-01-24
change the canonical form of "cond ? -1 : 0" to be
Chris Lattner
2010-01-18
my instcombine transformations to make extension elimination more
Chris Lattner
[next]