PTX: Add intrinsics to list of built-in intrinsics, which allows them to be
[oota-llvm.git] / test / Transforms /
2011-04-16 Frits van BommelAdd test cases for Jay's r129641 and fix a 32-bit-centr...
2011-04-15 Chris LattnerFix a ton of comment typos found by codespell. Patch by
2011-04-14 Eli FriedmanAdd an instcombine for constructs like a | -(b != c...
2011-04-14 Owen AndersonFix an infinite alternation in JumpThreading where...
2011-04-13 Mon P WangVectors with different number of elements of the same...
2011-04-12 Dan GohmanFix reassociate to use a worklist instead of recursing...
2011-04-11 Chris Lattnerremove the StructRetPromotion pass. It is unused,...
2011-04-09 Eli FriedmanAdd back a couple checks removed by r129128; the fact...
2011-04-09 Chris Lattnerfix PR9523, a crash in looprotate on a non-canonical...
2011-04-09 Eli FriedmanPR9604; try to deal with RAUW updates correctly in...
2011-04-09 Eli FriedmanTest for r129190.
2011-04-07 Devang PatelDo not let debug info interfer with branch folding.
2011-04-07 Devang PatelWhile hoisting common code from if/else, hoist debug...
2011-04-07 Eli FriedmanPR9634: Don't unconditionally tell the AliasSetTracker...
2011-04-06 Nadav RotemThis testcase passed even without the fix. Added the...
2011-04-05 Nadav RotemInstCombine optimizes gep(bitcast(x)) even when the...
2011-04-02 Eli FriedmanPR9446: RecursivelyDeleteTriviallyDeadInstructions...
2011-04-01 Benjamin KramerInstCombine: Turn icmp + sext into bitwise/integer...
2011-03-31 Nadav RotemInstcombile optimization: extractelement(cast) -> cast...
2011-03-31 Benjamin KramerInstCombine: APFloat can't perform arithmetic on PPC...
2011-03-31 Benjamin KramerInstCombine: Fix transform to use the swapped predicate.
2011-03-31 Benjamin KramerInstCombine: fold fcmp (fneg x), (fneg y) -> fcmp x, y
2011-03-31 Benjamin KramerInstCombine: fold fcmp pred (fneg x), C -> fcmp swap...
2011-03-31 Benjamin KramerInstCombine: Shrink "fcmp (fpext x), C" to "fcmp x...
2011-03-31 Benjamin KramerInstCombine: fold fcmp (fpext x), (fpext y) -> fcmp...
2011-03-30 Bill Wendling* The DSE code that tested for overlapping needed to...
2011-03-30 Benjamin KramerAvoid turning a floating point division with a constant...
2011-03-30 Benjamin KramerInstCombine: If the divisor of an fdiv has an exact...
2011-03-29 Benjamin KramerInstCombine: Add a few missing combines for ANDs and...
2011-03-29 Cameron ZwarichDo some simple copy propagation through integer loads...
2011-03-27 Nick LewyckyTeach the transformation that moves binary operators...
2011-03-27 Frits van BommelConstant folding support for calls to umul.with.overflo...
2011-03-27 Nick LewyckyAdd a small missed optimization: turn X == C ? X :...
2011-03-26 Cameron ZwarichFix a typo and add a test.
2011-03-26 Bill WendlingPR9561: A store with a negative offset (via GEP) could...
2011-03-23 Cameron ZwarichFix PR9464 by correcting some math that just happened...
2011-03-20 Anders CarlssonAdd an optimization to GlobalOpt that eliminates calls...
2011-03-18 Andrew TrickAvoid creating canonical induction variables for non...
2011-03-18 Eli FriedmanFileCheck-ize and update test.
2011-03-17 Devang PatelTry to not lose variable's debug info during instcombine.
2011-03-16 Cameron ZwarichOnly convert allocas to scalars if it is profitable...
2011-03-16 Cameron ZwarichAdd native integer type TargetData to some existing...
2011-03-15 Cameron ZwarichDo not add PHIs with no users when creating LCSSA form...
2011-03-15 Eli FriedmanPR9450: Make switch optimization in SimplifyCFG not...
2011-03-15 Eric ChristopherIf we don't know how long a string is we can't fold...
2011-03-12 Benjamin KramerTeach ComputeMaskedBits about sub nsw.
2011-03-11 Cameron ZwarichRoll r127459 back in:
2011-03-11 Daniel DunbarRevert r127459, "Optimize trivial branches in CodeGenPr...
2011-03-11 Benjamin KramerComputeMaskedBits: sub falls through to add, and sub...
2011-03-11 Benjamin KramerInstCombine: Fix a thinko where transform an icmp under...
2011-03-11 Nick LewyckyTeach ComputeMaskedBits about nsw on add. I don't think...
2011-03-11 Cameron ZwarichOptimize trivial branches in CodeGenPrepare, which...
2011-03-10 Dan GohmanFix reassociate to postpone certain instruction deletio...
2011-03-10 Benjamin KramerInstCombine: Turn umul_with_overflow into mul nuw if...
2011-03-09 Benjamin KramerFix mistyped CHECK lines.
2011-03-09 Devang PatelPreserve line number information while simplifying...
2011-03-09 Cameron ZwarichAdd a test case for r127320.
2011-03-09 Nick LewyckyAdd another micro-optimization. Apologies for the lack...
2011-03-09 Cameron ZwarichAdd support to scalar replacement for partial vector...
2011-03-09 Eli FriedmanPR9346: Prevent SimplifyDemandedBits from incorrectly...
2011-03-09 Eli FriedmanPR9420; an instruction before an unreachable is guarant...
2011-03-08 Duncan SandsFix PR9331. Simplified version of a patch by Jakub...
2011-03-08 Devang PatelWhile sinking an instruction, do not lose llvm.dbg...
2011-03-07 Devang PatelPreserve line no. info.
2011-03-07 Rafael EspindolaAdd test for r127138.
2011-03-07 Nick LewyckyTweak this test. We can analyze what happens and show...
2011-03-07 Nick LewyckyAdd more analysis of the sign bit of an srem instructio...
2011-03-06 Nick LewyckyConstantInt has some getters which return ConstantInt...
2011-03-05 Nick LewyckyThread comparisons over udiv/sdiv/ashr/lshr exact and...
2011-03-05 Nick LewyckyTry once again to optimize "icmp (srem X, Y), Y" by...
2011-03-04 Nick LewyckyRevert broken srem logic from r126991.
2011-03-04 Nick LewyckyFold "icmp pred (srem X, Y), Y" like we do for urem...
2011-03-04 Nick LewyckyTeach instruction simplify to use constant ranges to...
2011-03-03 Richard OsborneOptimize fprintf -> iprintf if there are no floating...
2011-03-03 Richard OsborneOptimize sprintf -> siprintf if there are no floating...
2011-03-03 Richard OsborneOptimize printf -> iprintf if there are no floating...
2011-03-01 Anders CarlssonMake InstCombiner::FoldAndOfICmps create a ConstantRang...
2011-03-01 Nick LewyckyOptimize "icmp pred (urem X, Y), Y" --> true/false...
2011-03-01 Eli FriedmanAdd an obvious missing safety check to DAE::RemoveDeadA...
2011-02-28 Dan GohmanDelete obsolete test.
2011-02-28 Frits van BommelTeach SimplifyCFG that (switch (select cond, X, Y)...
2011-02-28 Nick Lewyckysrem doesn't actually have the same resulting sign...
2011-02-28 Nick LewyckyTeach InstCombine to fold "(shr exact X, Y) == 0" ...
2011-02-28 Nick LewyckyThe sign of an srem instruction is the sign of its...
2011-02-25 Benjamin KramerRevert "SimplifyCFG: GEPs with just one non-constant...
2011-02-24 Benjamin KramerSimplifyCFG: GEPs with just one non-constant index...
2011-02-24 Benjamin KramerSimplifyCFG: GEPs with constant indices are cheap enoug...
2011-02-24 Chris Lattnerchange instcombine to not turn a call to non-varargs...
2011-02-22 Cameron ZwarichMake LoopDeletion work on loops with multiple edges...
2011-02-20 Benjamin KramerInstCombine: Add a bunch of combines of the form x...
2011-02-20 Nick LewyckyTeach RecursivelyDeleteDeadPHINodes to handle multiple...
2011-02-19 Eli FriedmanPR9218: SimplifyDemandedVectorElts can return a non...
2011-02-19 Chris Lattnerrewrite the memset_pattern pattern generation stuff...
2011-02-19 Chris LattnerStores of null pointers should turn into memset, we...
2011-02-19 Chris LattnerImplement rdar://9009151, transforming strided loop...
2011-02-18 Duncan SandsAdd some transforms of the kind X-Y>X -> 0>Y which...
2011-02-18 Chris Lattneradd a testcase for r125827
2011-02-18 Chris Lattnerprevent jump threading from merging blocks when their...
2011-02-17 Chris Lattnerhave instcombine preserve nsw/nuw/exact when sinking
2011-02-17 Chris Lattnerfix instcombine merging GEPs through a PHI to only...
next