| Commit message (Expand) | Author | Age | Files | Lines |
* | Transform (extractvalue (load P), ...) to (load (gep P, 0, ...)) if the load ... | Frits van Bommel | 2010-11-29 | 1 | -3/+72 |
* | Update this test to keep testing the -instcombine transform it's supposed to ... | Frits van Bommel | 2010-11-29 | 1 | -3/+3 |
* | The srem -> urem transform is not safe for any divisor that's not a power of ... | Benjamin Kramer | 2010-11-23 | 1 | -3/+3 |
* | InstCombine: Reduce "X shift (A srem B)" to "X shift (A urem B)" iff B is pos... | Benjamin Kramer | 2010-11-23 | 1 | -0/+11 |
* | Exploit distributive laws (eg: And distributes over Or, Mul over Add, etc) in a | Duncan Sands | 2010-11-23 | 1 | -0/+11 |
* | duncan's spider sense was right, I completely reversed the condition | Chris Lattner | 2010-11-23 | 1 | -4/+4 |
* | InstCombine: Implement X - A*-B -> X + A*B. | Benjamin Kramer | 2010-11-22 | 1 | -0/+20 |
* | If a GEP index simply advances by multiples of a type of zero size, | Duncan Sands | 2010-11-22 | 1 | -1/+10 |
* | Add a rather pointless InstructionSimplify transform, inspired by recent cons... | Duncan Sands | 2010-11-21 | 1 | -0/+8 |
* | optimize: | Chris Lattner | 2010-11-21 | 1 | -0/+38 |
* | InstCombine: Add a missing irem identity (X % X -> 0). | Benjamin Kramer | 2010-11-17 | 1 | -0/+5 |
* | In which I discover the existence of loops. Threading an operation | Duncan Sands | 2010-11-16 | 1 | -0/+15 |
* | Teach InstructionSimplify the trick of skipping incoming phi | Duncan Sands | 2010-11-15 | 1 | -0/+19 |
* | Move PHI tests to phi.ll, out of select.ll. | Duncan Sands | 2010-11-15 | 2 | -49/+48 |
* | Generalize the reassociation transform in SimplifyCommutative (now renamed to | Duncan Sands | 2010-11-13 | 1 | -0/+10 |
* | Teach InstructionSimplify how to look through PHI nodes. Since PHI | Duncan Sands | 2010-11-10 | 1 | -0/+47 |
* | When checking that the necessary bits are zero in | Dale Johannesen | 2010-11-10 | 1 | -0/+26 |
* | Add an additional test for icmp of select folding. | Duncan Sands | 2010-11-08 | 1 | -0/+11 |
* | Add simplification of floating point comparisons with the result | Duncan Sands | 2010-11-07 | 1 | -0/+8 |
* | Fix a README item: when doing a comparison with the result | Duncan Sands | 2010-11-07 | 1 | -0/+10 |
* | When folding away a (shl (shr)) pair, we need to check that the bits that wil... | Owen Anderson | 2010-11-01 | 1 | -0/+20 |
* | Change instcombine's getShuffleMask to represent undef with negative values. | Bob Wilson | 2010-10-29 | 1 | -0/+13 |
* | Make instcombine a little more aggressive in combining vector shuffles. | Bob Wilson | 2010-10-29 | 1 | -0/+10 |
* | Teach InstCombine not to use Add and Neg on FP. PR 8490. | Dale Johannesen | 2010-10-27 | 1 | -0/+20 |
* | Fix a case where instcombine was stripping metadata (and alignment) | Dan Gohman | 2010-10-25 | 1 | -0/+21 |
* | Teach instcombine to set the alignment arguments for NEON load/store intrinsics. | Bob Wilson | 2010-10-22 | 1 | -0/+25 |
* | fix PR8267 - Instcombine shouldn't optimizer away volatile memcpy's. | Chris Lattner | 2010-10-01 | 1 | -3/+12 |
* | upgrade this test. | Chris Lattner | 2010-10-01 | 1 | -2/+2 |
* | Don't try to constant fold libm functions with non-finite arguments. | Jakob Stoklund Olesen | 2010-09-27 | 1 | -5/+0 |
* | Be more precise when trying to XFAIL this tester: http://google1.osuosl.org:8... | Jakob Stoklund Olesen | 2010-09-24 | 1 | -3/+4 |
* | Attempt to XFAIL this test on arm-linux, which is inexplicably failing. | Dan Gohman | 2010-09-18 | 1 | -0/+4 |
* | Fix this test so that folding doesn't depend on a potentially | Dan Gohman | 2010-09-17 | 1 | -2/+2 |
* | Fix the folding of floating-point math library calls, like sin(infinity), | Dan Gohman | 2010-09-17 | 1 | -0/+19 |
* | Add a reduced testcase for the infinite loop fixed in r113763. | Owen Anderson | 2010-09-13 | 1 | -0/+33 |
* | Re-apply r113679, which was reverted in r113720, which added a paid of new in... | Owen Anderson | 2010-09-13 | 3 | -17/+26 |
* | Revert 113679, it was causing an infinite loop in a testcase that I've sent | Eric Christopher | 2010-09-12 | 4 | -39/+17 |
* | Invert and-of-or into or-of-and when doing so would allow us to clear bits of... | Owen Anderson | 2010-09-11 | 4 | -17/+39 |
* | Teach InstructionSimplify to fold (A & B) & A -> A & B and (A | B) | A -> A | B. | Benjamin Kramer | 2010-09-10 | 2 | -0/+35 |
* | Generalize instcombine's support for combining multiple bit checks into a sin... | Owen Anderson | 2010-09-08 | 1 | -1/+347 |
* | Fix a serious performance regression introduced by r108687 on linux: | Chris Lattner | 2010-09-07 | 1 | -3/+19 |
* | rename test. | Chris Lattner | 2010-09-07 | 1 | -0/+0 |
* | Add a test for PR4413, which was apparently fixed at some point in the past. | Owen Anderson | 2010-09-03 | 1 | -0/+21 |
* | more test cleanup | Chris Lattner | 2010-09-02 | 1 | -1/+1 |
* | Remove r111665, which implemented store-narrowing in InstCombine. Chris disc... | Owen Anderson | 2010-08-31 | 1 | -21/+0 |
* | handle the constant case of vector insertion. For something | Chris Lattner | 2010-08-28 | 1 | -0/+12 |
* | optimize bitcasts from large integers to vector into vector | Chris Lattner | 2010-08-28 | 1 | -0/+31 |
* | tidy up test. | Chris Lattner | 2010-08-27 | 1 | -1/+2 |
* | Enhance the shift propagator to handle the case when you have: | Chris Lattner | 2010-08-27 | 1 | -0/+15 |
* | Implement a pretty general logical shift propagation | Chris Lattner | 2010-08-27 | 1 | -4/+17 |
* | merge and filecheckize test | Chris Lattner | 2010-08-27 | 2 | -42/+57 |