[PM] Add a really simple trait to the DOTGraphTraitsPass class templates
[oota-llvm.git] / lib / Transforms / InstCombine /
2013-11-16 Hal FinkelApply the InstCombine fptrunc sqrt optimization to...
2013-11-16 Benjamin KramerInstCombine: fold (A >> C) == (B >> C) --> (A^B) <...
2013-11-15 Matt ArsenaultAdd instcombine visitor for addrspacecast
2013-11-13 Nadav RotemUpdate the docs to match the function name.
2013-11-12 Nadav RotemFold (iszero(A&K1) | iszero(A&K2)) -> (A&(K1|K2))...
2013-11-04 Matt ArsenaultScalarize select vector arguments when extracted.
2013-10-15 Craig TopperRemove x86_sse42_crc32_64_8 intrinsic. It has no functi...
2013-10-03 Owen AndersonPull fptrunc's upwards through selects when one of...
2013-10-03 Matt ArsenaultMake gep i8* X, -(ptrtoint Y) transform work with addre...
2013-09-30 Matt ArsenaultUse right address space size in InstCombineCompares
2013-09-30 Matt ArsenaultConstant fold ptrtoint + compare with address spaces
2013-09-30 Benjamin KramerInstCombine: Replace manual fast math flag copying...
2013-09-30 Joey GoulyFix a bug in InstCombine where it attempted to cast...
2013-09-27 Matt ArsenaultUse type helper functions
2013-09-27 Justin BognerInstCombine: Only foldSelectICmpAndOr for integer types
2013-09-24 Benjamin KramerPush analysis passes to InstSimplify when they're aroun...
2013-09-20 Benjamin KramerInstCombine: Remove unused argument. No functionality...
2013-09-20 Benjamin KramerInstCombine: Canonicalize (gep i8* X, -(ptrtoint Y...
2013-09-19 Shuxin Yang[Fast-math] Disable "(C1/X)*C2 => (C1*C2)/X" if C1...
2013-09-19 Benjamin KramerInstCombine: Don't allow turning vector-of-pointer...
2013-09-17 Quentin ColombetRevert the load slicing done in r190870.
2013-09-17 Matt ArsenaultCleanup handling of constant function casts.
2013-09-17 Quentin Colombet[InstCombiner] Slice a big load in two loads when the...
2013-09-11 Eli FriedmanGet rid of unused isPodLike definitions.
2013-09-09 Quentin Colombet[InstCombiner] Expose opportunities to merge subtract...
2013-09-06 Matt ArsenaultUse type helper functions.
2013-09-05 Matt ArsenaultConsistently use dbgs() in debug printing
2013-09-04 Tim NorthoverInstCombine: allow unmasked icmps to be combined with...
2013-09-04 Tim NorthoverInstCombine: look for masked compares with subset relation
2013-09-03 Matt ArsenaultTeach InstCombineLoadCast about address spaces.
2013-09-03 Matt ArsenaultUse type form of getIntPtrType in alloca visitor.
2013-08-30 Benjamin KramerInstCombine: Check for zero shift amounts before subtra...
2013-08-28 Matt ArsenaultFix typo.
2013-08-21 Matt ArsenaultTeach InstCombine about address spaces
2013-08-19 Jakub StaszakUse pop_back_val() instead of both back() and pop_back().
2013-08-19 Matt ArsenaultTeach InstCombine visitGetElementPtr about address...
2013-08-19 Matt ArsenaultCleanup visitGetElementPtr to make address space change...
2013-08-19 Matt ArsenaultcommonPointerCast cleanups to make address space change...
2013-08-19 Matt ArsenaultRevert non-test parts of r188507
2013-08-16 Jim GrosbachInstCombine: Use isAllOnesValue() instead of explicit -1.
2013-08-16 Jim GrosbachInstCombine: Simplify if(x!=0 && x!=-1).
2013-08-15 Matt ArsenaultDon't do FoldCmpLoadFromIndexedGlobal for non inbounds...
2013-08-14 Matt ArsenaultFix always creating GEP with i32 indices
2013-08-14 Matt ArsenaultUse type helper functions instead of cast
2013-08-14 Matt ArsenaultUse array initializer, space around operator
2013-08-12 Richard SandifordFix big-endian handling of integer-to-vector bitcasts...
2013-08-06 Matt ArsenaultFix missing -*- C++ -*-s
2013-07-30 Owen AndersonPreserve fast-math flags when folding (fsub x, (fneg...
2013-07-30 Matt ArsenaultChange behavior of calling bitcasted alias functions.
2013-07-26 Owen AndersonFix variable name.
2013-07-26 Owen AndersonWhen InstCombine tries to fold away (fsub x, (fneg...
2013-07-26 Stephen LinCorrect case of m_UIToFp to m_UIToFP to match instructi...
2013-07-20 Stephen LinInstCombine: call FoldOpIntoSelect for all floating...
2013-07-17 Stephen LinRestore r181216, which was partially reverted in r182499.
2013-07-15 Craig TopperUse llvm::array_lengthof to replace sizeof(array)/sizeo...
2013-07-14 Craig TopperUse SmallVectorImpl& instead of SmallVector to avoid...
2013-07-13 Nick LewyckyAdd a microoptimization for urem.
2013-07-12 Joey GoulyFix a crash in EvaluateInDifferentElementOrder where...
2013-07-11 Benjamin KramerDon't use a potentially expensive shift if all we want...
2013-07-09 David MajnemerInstCombine: Fix typo in comment for visitICmpInstWithI...
2013-07-09 David MajnemerInstCombine: variations on 0xffffffff - x >= 4
2013-07-09 David MajnemerInstCombine: X & -C != -C -> X <= u ~C
2013-07-09 David MajnemerCommit r185909 was a misapplied patch, fix it
2013-07-09 David MajnemerInstCombine: add more transforms
2013-07-08 David MajnemerInstCombine: Fold X-C1 <u 2 -> (X & -2) == C1
2013-07-05 David MajnemerInstCombine: (icmp eq B, 0) | (icmp ult A, B) -> (icmp...
2013-07-04 David MajnemerInstCombine: Reimplementation of visitUDivOperand
2013-07-04 Craig TopperUse SmallVectorImpl::iterator/const_iterator instead...
2013-07-02 Hal FinkelRevert r185257 (InstCombine: Be more agressive optimizi...
2013-06-29 Benjamin KramerInstCombine: Also turn selects fed by an and into arith...
2013-06-29 David MajnemerInstCombine: FoldGEPICmp shouldn't change sign of base...
2013-06-29 David MajnemerInstCombine: Small whitespace cleanup in FoldGEPICmp
2013-06-29 David MajnemerInstCombine: Be more agressive optimizing 'udiv' instrs...
2013-06-28 David MajnemerInstCombine: Optimize (1 << X) Pred CstP2 to X Pred...
2013-06-28 Matt ArsenaultFix using arg_end() - arg_begin() instead of arg_size()
2013-06-27 Michael GottesmanRevert "Revert "[APFloat] Removed APFloat constructor...
2013-06-27 Michael GottesmanRevert "[APFloat] Removed APFloat constructor which...
2013-06-27 Michael Gottesman[APFloat] Removed APFloat constructor which initialized...
2013-06-26 Michael GottesmanIn InstCombine{AddSub,MulDivRem} convert APFloat.isFini...
2013-06-19 Michael Gottesman[APFloat] Converted all references to APFloat::isNormal...
2013-06-06 Jakub StaszakSimplify code. No functionality change.
2013-06-06 Jakub StaszakRe-apply "Use IRBuilder instead of ConstantInt methods...
2013-06-06 Rafael EspindolaRevert "Use IRBuilder instead of ConstantInt methods...
2013-06-06 Jakub StaszakRemove unneeded cast<>.
2013-06-06 Jakub StaszakUse IRBuilder instead of ConstantInt methods.
2013-06-05 Jakub StaszakUse IRBuilder instead of ConstantInt methods. It simpli...
2013-06-03 Nick LewyckyDelete dead safety check.
2013-06-01 Nick LewyckyWhen determining the new index for an insertelement...
2013-05-31 Rafael EspindolaSimplify multiplications by vectors whose elements...
2013-05-31 Nick LewyckyReapply with r182909 with a fix to the calculation...
2013-05-30 Evgeniy StepanovRevert r182909.
2013-05-30 Nick LewyckySwizzle vector inputs if it helps us eliminate shuffles.
2013-05-24 Michael J. SpencerReplace Count{Leading,Trailing}Zeros_{32,64} with count...
2013-05-24 Joey GoulyRun clang-format over the scalarizePHI function.
2013-05-24 Joey GoulyscalarizePHI needs to insert the next ExtractElement...
2013-05-22 Jean-Luc DupratThis is an update to a previous commit (r181216).
2013-05-17 Matt ArsenaultAdd missing -*- C++ -*- to headers
2013-05-14 Sylvestre LedruFix two typo
2013-05-12 David MajnemerInstCombine: Flip the order of two urem transforms
2013-05-11 David MajnemerInstCombine: Turn urem to bitwise-and more often
next