Age | Commit message (Expand) | Author |
2008-10-14 | Combine (fcmp cc0 x, y) | (fcmp cc1 x, y) into a single fcmp when possible. | Evan Cheng |
2008-10-14 | - Somehow I forgot about one / une. | Evan Cheng |
2008-10-14 | Optimize anding of two fcmp into a single fcmp if the operands are the same. ... | Evan Cheng |
2008-10-11 | Fix PR2697 by rewriting the '(X / pos) op neg' logic. This also changes | Chris Lattner |
2008-10-10 | Check loop exit predicate properly while eliminating one iteration loop. | Devang Patel |
2008-10-06 | Fix typo, fix PR 2865. | Devang Patel |
2008-10-06 | Allow scalarrepl to treat an all-zero GEP just as bitcast. | Matthijs Kooijman |
2008-10-05 | rewrite bswap matching to be more general, allowing arbitrary | Chris Lattner |
2008-10-04 | Ignore loads from and stores to local memory (i.e. allocas) | Duncan Sands |
2008-10-04 | Allow the construction of SCEVs with SCEVCouldNotCompute operands, by | Nick Lewycky |
2008-10-03 | Nick Lewycky's patch. | Devang Patel |
2008-09-30 | Fix misoptimization of: xor i1 (icmp eq (X, C1), icmp s[lg]t (X, C2)) | Nick Lewycky |
2008-09-29 | Support inreg, zext and sext as return value attributes. | Devang Patel |
2008-09-29 | Add a testcase showing that scalarrepl supports first class structs. | Matthijs Kooijman |
2008-09-26 | Implement function notes as function attributes. | Devang Patel |
2008-09-23 | Rationalize the names of passes that print information: | Duncan Sands |
2008-09-19 | Add test for improvement of readonly to readnone, | Duncan Sands |
2008-09-19 | Turn on these tests! | Duncan Sands |
2008-09-19 | Add a new pass AddReadAttrs which works out which functions | Duncan Sands |
2008-09-19 | Test the callgraph directly for the missing edge. | Duncan Sands |
2008-09-18 | splitLoop does not handle split condition EQ. | Devang Patel |
2008-09-17 | Do not hoist instruction above branch condition. The instruction may use bran... | Devang Patel |
2008-09-17 | Do not ignore iv uses outside the loop. | Devang Patel |
2008-09-16 | Improve instcombine's handling of integer min and max in two ways: | Dan Gohman |
2008-09-11 | On 64-bit targets, change 32-bit getelementptr indices to be 64-bit | Dan Gohman |
2008-09-11 | Fix a vectorshuffle instcombine bug introduced by r55995. | Dan Gohman |
2008-09-10 | Fix an icmp+sdiv optimization to check for and handle an overflow | Dan Gohman |
2008-09-09 | Remove. | Devang Patel |
2008-09-09 | if loop induction variable is always sign or zero extended then | Devang Patel |
2008-09-09 | fix overflow check. | Devang Patel |
2008-09-09 | Resolve aliases, when possible | Anton Korobeynikov |
2008-09-09 | Make SimplifyDemandedVectorElts simplify vectors with multiple | Dan Gohman |
2008-09-09 | Fix simplifycfg crash in handing block merge. | Devang Patel |
2008-09-08 | xfail | Devang Patel |
2008-09-08 | Update the callgraph correctly in ArgumentPromotion. | Duncan Sands |
2008-09-06 | When PruneEH turned an invoke into an ordinary | Duncan Sands |
2008-09-03 | Don't crash when trying to constant fold a vector with some elements that can't | Nick Lewycky |
2008-09-03 | Check iteration count. | Devang Patel |
2008-09-02 | If all IV uses are extending integer IV then change the type of IV itself, if... | Devang Patel |
2008-09-02 | respect inline=never and inline=always notes. | Devang Patel |
2008-08-26 | If IV is used in a int-to-float cast inside the loop then try to eliminate th... | Devang Patel |
2008-08-23 | Fix PR2423 by checking all indices for out of range access, not only | Chris Lattner |
2008-08-21 | Revert r54876 r54877 r54906 and r54907. Evan found that these caused a 20% | Nick Lewycky |
2008-08-18 | XFAIL this test for now. | Bill Wendling |
2008-08-17 | Consider the case where xor by -1 and xor by 128 have been combined already to | Nick Lewycky |
2008-08-17 | Didn't mean to change this. | Evan Cheng |
2008-08-17 | Fix a (u)comiss intrinsic lowering bug. It was using anyext which can return ... | Evan Cheng |
2008-08-17 | Xor'ing both sides of icmp by sign-bit is equivalent to swapping signedness of | Nick Lewycky |
2008-08-16 | Remove GCSE and LoadVN from the testsuite. | Owen Anderson |
2008-08-15 | Reapply 54786. Add overflow and number of mantissa bits checks. | Devang Patel |