Age | Commit message (Expand) | Author |
2008-08-15 | Revert 54786. It's not checking for overflows, etc. | Evan Cheng |
2008-08-14 | If IV is used in a int-to-float cast inside the loop then try to eliminate th... | Devang Patel |
2008-08-13 | Fix a bogus srem rule - a negative value srem'd by a power-of-2 | Dan Gohman |
2008-08-13 | Fix SCCP's handling of struct value loads and stores. SCCP doesn't | Dan Gohman |
2008-08-13 | Check sign to detect overflow before changing compare stride. | Devang Patel |
2008-08-11 | Implement support for simplifying vector comparisons by 0.0 and 1.0 like we | Chris Lattner |
2008-08-07 | Add a basic test for the SRETPromotion pass. | Matthijs Kooijman |
2008-08-07 | Move two tests from SRETPromotion to Inline, since they only call opt -inline. | Matthijs Kooijman |
2008-08-06 | Fix a shufflevector instcombine that was emitting invalid masks indices | Dan Gohman |
2008-08-06 | PR2535, not PR2355. | Evan Cheng |
2008-08-06 | Fix PR2355: bug in ChangeCompareStride. When the loop termination compare is ... | Evan Cheng |
2008-08-06 | optimize a common idiom generated by clang for bitfield access, PR2638. | Chris Lattner |
2008-08-06 | Zap sitofp/fptoui pairs. In all cases when the sign difference | Chris Lattner |
2008-08-06 | Reinstate this optimization, but without the miscompile. Thanks to Bill for | Nick Lewycky |
2008-08-06 | Just grep for through the LL code instead of the ASM code | Bill Wendling |
2008-08-05 | Add default architecture. | Bill Wendling |
2008-08-05 | Testcase for PR2629. | Bill Wendling |
2008-08-05 | Revert r53282. This was causing a miscompile on Linux. Also, the transformation | Bill Wendling |
2008-07-29 | Add -unroll-allow-partial command line option that enabled the loop unroller to | Matthijs Kooijman |
2008-07-29 | Restructure ArgumentPromotion a bit. Instead of just having a single boolean | Matthijs Kooijman |
2008-07-28 | Add support for eliminating stores that store the same value that was just lo... | Owen Anderson |
2008-07-24 | Put the LICM of constant GlobalVariables, introduced in r53945, under a | Dan Gohman |
2008-07-23 | "Allow LICM to sink or lift loads from constant memory. Also add a test | Chris Lattner |
2008-07-23 | Enable first-class aggregates support. | Dan Gohman |
2008-07-21 | Add the PR number to the test. | Dan Gohman |
2008-07-21 | Fix a bug in LSR's dead-PHI cleanup. If a PHI has a def-use chain that | Dan Gohman |
2008-07-17 | Make GlobalOpt preserve address spaces when scalar replacing aggregate globals. | Matthijs Kooijman |
2008-07-17 | Fix PR2553 | Chris Lattner |
2008-07-16 | Add a few cases to instcombine's extractvalue testcase. | Matthijs Kooijman |
2008-07-16 | Un-XFAIL multdeadretval, since instcombine now properly handles the mess dead... | Matthijs Kooijman |
2008-07-16 | Fix PR2296. Do not transform x86_sse2_storel_dq into a full-width store. | Evan Cheng |
2008-07-15 | XFAIL the multdeadretval test for now, I will be fixing instcombine to make i... | Matthijs Kooijman |
2008-07-15 | Remove a few tests which no longer hold for deadargelim (since it is now | Matthijs Kooijman |
2008-07-15 | Add a testcase for the canonicalizations now performed by deadargelim. | Matthijs Kooijman |
2008-07-15 | Make deadargelim a bit less smart, so it doesn't choke on nested structs as | Matthijs Kooijman |
2008-07-15 | Fix typo. | Matthijs Kooijman |
2008-07-14 | Fix PR2506 by being a bit more careful about reverse fact propagation when | Chris Lattner |
2008-07-13 | Fix mishandling of the infinite loop case when merging two blocks. This | Chris Lattner |
2008-07-12 | Enhance analysis of srem. | Nick Lewycky |
2008-07-11 | Add another optimization from PR2330. Also catch some missing cases that are | Nick Lewycky |
2008-07-11 | Fix folding of icmp's of i1 where the comparison is signed. The code | Chris Lattner |
2008-07-11 | Fix a bogus optimization: folding (slt (zext i1 A to i32), 1) -> (slt i1 A, t... | Chris Lattner |
2008-07-11 | make this condition more precise. | Chris Lattner |
2008-07-10 | Restructure dead argument elimination, try #3 :-) | Matthijs Kooijman |
2008-07-10 | Fix overzealous optimization. Thanks to Duncan Sands for pointing out my error! | Nick Lewycky |
2008-07-10 | Fix a case where vector comparison constant folding would cause an | Chris Lattner |
2008-07-10 | elementwise comparison of vector constants was completely wrong. Fix | Chris Lattner |
2008-07-09 | Fold (a < 8) && (b < 8) into (a|b) < 8 for unsigned less or greater than. | Nick Lewycky |
2008-07-09 | Fold ((1 << a) & 1) to (a == 0). | Nick Lewycky |
2008-07-09 | Fix a broken test. Neither load is eliminable without changing the CFG. | Chris Lattner |