Generalize the previous xform to handle cases where exactly
[oota-llvm.git] / lib / Transforms / Scalar / InstructionCombining.cpp
2010-01-02 Chris LattnerGeneralize the previous xform to handle cases where...
2010-01-02 Chris Lattnerfix a miscompilation I introduced of cdecl with a late...
2010-01-02 Chris Lattnerenhance the compare/load/index optimization to work...
2010-01-02 Chris Lattnerenhance the previous optimization to work with fcmp...
2010-01-02 Chris LattnerTeach instcombine to fold compares of loads from constant
2010-01-02 Chris Lattnerremove the instcombine transformations that are inserti...
2010-01-01 Chris Lattneradd a simple instcombine xform, simplify another one...
2010-01-01 Chris Lattnergeneralize the pointer difference optimization to handle
2010-01-01 Chris Lattnerteach instcombine to optimize pointer difference idioms...
2010-01-01 Chris Lattneruse 'match' to simplify some code.
2010-01-01 Chris Lattnerimplement the transform requested in PR5284
2010-01-01 Chris Lattneradd missing line.
2010-01-01 Chris Lattneradd a few trivial instcombines for llvm.powi.
2009-12-21 Daniel DunbarAdd suggested parentheses.
2009-12-21 Chris Lattnergive instcombine some helper functions for matching...
2009-12-21 Chris Lattnerenhance x-(-A) -> x+A to preserve NUW/NSW.
2009-12-21 Chris LattnerOptimize all cases of "icmp (X+Cst), X" to something...
2009-12-19 Chris Lattnerfix PR5827 by disabling the phi slicing transformation...
2009-12-18 Eli FriedmanOptimize icmp of null and select of two constants even...
2009-12-17 Eli FriedmanAllow instcombine to combine "sext(a) >u const" to...
2009-12-17 Eli FriedmanMake the ptrtoint comparison simplification work if...
2009-12-17 Eli FriedmanSlightly generalize transformation of memmove(a,a,n...
2009-12-15 Chris LattnerRemove isPod() from DenseMapInfo, splitting it out...
2009-12-05 Nick LewyckyGeneralize this optimization to work on equality compar...
2009-11-29 Chris Lattneradd testcases for the foo_with_overflow op xforms added...
2009-11-29 Chris LattnerImplement PR5634.
2009-11-27 Chris Lattnerfactor some logic out of instcombine into a new Simplif...
2009-11-27 Chris Lattnerfactor some instcombine simplifications for getelementp...
2009-11-26 Chris Lattnerfix crash on Transforms/InstCombine/intrinsics.ll intro...
2009-11-26 Chris LattnerFix PR5471 by removing an instcombine xform. Some...
2009-11-26 Chris Lattnerimplement a bunch of xforms for overflow intrinsics...
2009-11-23 Nick LewyckyReapply r88830 with a bugfix: this transform only appli...
2009-11-20 Duncan SandsFix PR5563, an expensive checks failure when running on
2009-11-16 David GreeneFix an expensive-checks error.
2009-11-15 Nick LewyckyRevert r88830 and r88831 which appear to have caused...
2009-11-15 Nick LewyckyTeach instcombine to look for booleans in wider integer...
2009-11-10 Chris Lattnerclarify logic.
2009-11-10 Duncan SandsAdd brackets to make gcc-4.4 happy.
2009-11-10 Chris Lattnerunify the code that determines whether it is a good...
2009-11-10 Chris Lattnerfactor simplification logic for AND and OR out to InstS...
2009-11-09 Chris Lattnerpull a bunch of logic out of instcombine into instsimpl...
2009-11-09 Chris Lattnerinline a simple function.
2009-11-09 Chris Lattnerrename SimplifyCompare -> SimplifyCmpInst and split...
2009-11-09 Chris Lattnerif a 'with overflow' intrinsic just has the normal...
2009-11-09 Chris Lattnerenhance PHI slicing to handle the case when a slicable...
2009-11-08 Chris LattnerTeach an instcombine to not pull trunc instructions...
2009-11-08 Chris Lattnerreapply r8644[3-5] with only the scary part
2009-11-08 Daniel DunbarSpeculatively revert r8644[3-5], they seem to be leadin...
2009-11-08 Chris Lattnerteach a couple of instcombine transformations involving...
2009-11-07 Chris Lattnermake instcombine only rewrite a chain of computation
2009-11-06 Chris Lattnerremove some more Context arguments.
2009-11-06 Chris Lattnerremove a bunch of extraneous LLVMContext arguments
2009-11-04 Chris Lattnermove two functions up higher in the file. Delete a...
2009-11-02 Chris Lattnerfix instcombine to only do store sinking when the align...
2009-11-01 Chris Lattnerwhen merging two loads, make sure to take the min of...
2009-11-01 Chris Lattnersplit load sinking out to its own function, like gep...
2009-11-01 Chris Lattnerfix a bug noticed by inspection: when instcombine sinks...
2009-10-31 Chris Lattneradd a comment.
2009-10-31 Dan GohmanReapply r85634, with the bug fixed.
2009-10-31 Evan ChengRevert 85634. It's breaking consumer-typeset (and others).
2009-10-30 Dan GohmanOptimize around the fact that pred_iterator is slow...
2009-10-30 Dan GohmanSort the incoming values in PHI nodes to match the...
2009-10-27 Victor HernandezRename MallocFreeHelper as MemoryBuiltins
2009-10-27 Dan GohmanAdd braces to avoid ambiguous else.
2009-10-26 Victor HernandezRename MallocHelper as MallocFreeHelper, since it now...
2009-10-26 Victor HernandezRemove FreeInst.
2009-10-26 Dan GohmanCode that checks WillNotOverflowSignedAdd before creati...
2009-10-26 Chris Lattnerreapply r85085 with a bugfix to avoid infinite looping.
2009-10-26 Evan ChengRevert 85085. It causes infinite looping during llvm...
2009-10-26 Chris LattnerImplement PR3266 & PR5276, folding:
2009-10-25 Nick LewyckyRemove ICmpInst::isSignedPredicate which was a reimplem...
2009-10-24 Victor HernandezAuto-upgrade free instructions to calls to the builtin...
2009-10-23 Victor HernandezRemove AllocationInst. Since MallocInst went away...
2009-10-22 Chris Lattnermove another load optimization from instcombine ->...
2009-10-22 Chris Lattnermove 'loading i32 from string' optimization from instco...
2009-10-22 Chris LattnerMove some constant folding logic for loads out of instc...
2009-10-22 Chris Lattnerfix PR5262.
2009-10-21 Chris Lattnerrevert r84754, it isn't the right approach. Edwin...
2009-10-21 Victor HernandezMake changes to rev 84292 as requested by Chris Lattner.
2009-10-21 Torok EdwinFix PR5262: when folding select into PHI, make sure...
2009-10-17 Victor HernandezRemove MallocInst from LLVM Instructions.
2009-10-15 Chris Lattneronly try to fold constantexpr operands when the worklis...
2009-10-15 Chris Lattnerdon't bother calling ConstantFoldInstruction unless...
2009-10-14 Devang PatelUse isVoidTy()
2009-10-14 Chris Lattnermake instcombine's instruction sinking more aggressive...
2009-10-13 Devang PatelCheck void type before using RAUWd.
2009-10-13 Devang PatelDo not check use_empty() before replaceAllUsesWith...
2009-10-12 Dale JohannesenFix warning.
2009-10-12 Chris Lattnerpopulate instcombine's initial worklist more carefully...
2009-10-11 Chris Lattnerrevert r83814 for now, it is making the llvm-gcc bootst...
2009-10-11 Chris Lattnerpopulate instcombine's initial worklist more carefully...
2009-10-11 Chris Lattnerremove some harmful code that would turn an inserteleme...
2009-10-11 Chris Lattnerteach instcombine to simplify xor's harder, catching the
2009-10-11 Chris Lattnercleanups
2009-10-11 Chris Lattnercleanup, no functionality change.
2009-10-11 Chris Lattnergeneralize a transformation even more: we don't care...
2009-10-11 Chris Lattnersimplify a transformation by making it more general.
2009-10-11 Chris Lattnertemporarily revert previous patch
2009-10-11 Chris Lattnerpopulate instcombine's initial worklist more carefully...
2009-10-11 Chris Lattnerimplement rdar://7293527, a trivial instcombine that...
next