summaryrefslogtreecommitdiffstats
path: root/test/Transforms
Commit message (Expand)AuthorAgeFilesLines
* Fix a ton of comment typos found by codespell. Patch byChris Lattner2011-04-1510-11/+11
* Add an instcombine for constructs like a | -(b != c); a select is moreEli Friedman2011-04-141-0/+19
* Fix an infinite alternation in JumpThreading where two transforms would repea...Owen Anderson2011-04-141-0/+31
* Vectors with different number of elements of the same element type can haveMon P Wang2011-04-131-0/+46
* Fix reassociate to use a worklist instead of recursing when newDan Gohman2011-04-121-0/+24
* remove the StructRetPromotion pass. It is unused, not maintained andChris Lattner2011-04-115-87/+0
* Add back a couple checks removed by r129128; the fact that an intitializerEli Friedman2011-04-091-0/+5
* fix PR9523, a crash in looprotate on a non-canonical loop made out of indirec...Chris Lattner2011-04-091-0/+16
* PR9604; try to deal with RAUW updates correctly in the AST. I'm not convincedEli Friedman2011-04-091-0/+49
* Test for r129190.Eli Friedman2011-04-091-0/+32
* Do not let debug info interfer with branch folding.Devang Patel2011-04-071-0/+58
* While hoisting common code from if/else, hoist debug info intrinsics if they ...Devang Patel2011-04-071-0/+53
* PR9634: Don't unconditionally tell the AliasSetTracker that the PreheaderLoadEli Friedman2011-04-072-1/+40
* This testcase passed even without the fix. Added the target info to make theNadav Rotem2011-04-061-0/+3
* InstCombine optimizes gep(bitcast(x)) even when the bitcasts casts away addressNadav Rotem2011-04-051-0/+16
* PR9446: RecursivelyDeleteTriviallyDeadInstructions can delete the instructionEli Friedman2011-04-021-0/+32
* InstCombine: Turn icmp + sext into bitwise/integer ops when the input has onl...Benjamin Kramer2011-04-011-0/+48
* Instcombile optimization: extractelement(cast) -> cast(extractelement)Nadav Rotem2011-03-311-0/+27
* InstCombine: APFloat can't perform arithmetic on PPC double doubles, don't ev...Benjamin Kramer2011-03-311-0/+9
* InstCombine: Fix transform to use the swapped predicate.Benjamin Kramer2011-03-311-1/+1
* InstCombine: fold fcmp (fneg x), (fneg y) -> fcmp x, yBenjamin Kramer2011-03-311-0/+9
* InstCombine: fold fcmp pred (fneg x), C -> fcmp swap(pred) x, -CBenjamin Kramer2011-03-311-0/+8
* InstCombine: Shrink "fcmp (fpext x), C" to "fcmp x, C" if C can be losslessly...Benjamin Kramer2011-03-311-0/+23
* InstCombine: fold fcmp (fpext x), (fpext y) -> fcmp x, y.Benjamin Kramer2011-03-311-0/+11
* * The DSE code that tested for overlapping needed to take into account the factBill Wendling2011-03-301-0/+1
* Avoid turning a floating point division with a constant power of two into a d...Benjamin Kramer2011-03-301-1/+1
* InstCombine: If the divisor of an fdiv has an exact inverse, turn it into an ...Benjamin Kramer2011-03-301-0/+25
* InstCombine: Add a few missing combines for ANDs and ORs of sign bit tests.Benjamin Kramer2011-03-291-0/+79
* Do some simple copy propagation through integer loads and stores when promotingCameron Zwarich2011-03-292-1/+54
* Teach the transformation that moves binary operators around selects to preserveNick Lewycky2011-03-271-0/+12
* Constant folding support for calls to umul.with.overflow(), basically identic...Frits van Bommel2011-03-271-8/+33
* Add a small missed optimization: turn X == C ? X : Y into X == C ? C : Y. ThisNick Lewycky2011-03-271-0/+13
* Fix a typo and add a test.Cameron Zwarich2011-03-261-0/+15
* PR9561: A store with a negative offset (via GEP) could erroniously say that itBill Wendling2011-03-261-0/+22
* Fix PR9464 by correcting some math that just happened to be right in most casesCameron Zwarich2011-03-231-0/+16
* Add an optimization to GlobalOpt that eliminates calls to __cxa_atexit, if th...Anders Carlsson2011-03-201-0/+31
* Avoid creating canonical induction variables for non-native types.Andrew Trick2011-03-1818-18/+22
* FileCheck-ize and update test.Eli Friedman2011-03-181-6/+9
* Try to not lose variable's debug info during instcombine.Devang Patel2011-03-171-0/+57
* Only convert allocas to scalars if it is profitable. The profitability metric ICameron Zwarich2011-03-161-0/+27
* Add native integer type TargetData to some existing tests.Cameron Zwarich2011-03-162-2/+2
* Do not add PHIs with no users when creating LCSSA form. Patch by Andrew Clinton.Cameron Zwarich2011-03-152-2/+38
* PR9450: Make switch optimization in SimplifyCFG not dependent on the orderingEli Friedman2011-03-151-8/+48
* If we don't know how long a string is we can't fold an _chk version to theEric Christopher2011-03-151-0/+18
* Teach ComputeMaskedBits about sub nsw.Benjamin Kramer2011-03-121-0/+23
* Roll r127459 back in:Cameron Zwarich2011-03-111-1/+2
* Revert r127459, "Optimize trivial branches in CodeGenPrepare, which often getDaniel Dunbar2011-03-111-2/+1
* ComputeMaskedBits: sub falls through to add, and sub doesn't have the same ov...Benjamin Kramer2011-03-111-0/+10
* InstCombine: Fix a thinko where transform an icmp under the assumption that i...Benjamin Kramer2011-03-111-0/+10
* Teach ComputeMaskedBits about nsw on add. I don't think there's anything we canNick Lewycky2011-03-111-0/+10