| Commit message (Expand) | Author | Age | Files | Lines |
* | New test for bug fixed in 50545. | Dale Johannesen | 2008-05-01 | 1 | -0/+26 |
* | Fix an overaggressive SimplifyDemandedBits optimization on urem. This | Dan Gohman | 2008-05-01 | 1 | -0/+32 |
* | fix typo | Chris Lattner | 2008-05-01 | 1 | -1/+1 |
* | instcombine does memset optzns. | Chris Lattner | 2008-05-01 | 1 | -18/+0 |
* | simplifylibcalls doesn't optimize llvm.memmove, instcombine does. | Chris Lattner | 2008-05-01 | 1 | -22/+0 |
* | move some tests from libcall optimizer suite. | Chris Lattner | 2008-05-01 | 1 | -0/+17 |
* | Move this test to LoopDeletion, where it now passes. | Owen Anderson | 2008-04-30 | 2 | -2/+4 |
* | move lowering of llvm.memset -> store from simplify libcalls | Chris Lattner | 2008-04-30 | 1 | -0/+15 |
* | no reason for simplifylibcalls to simplify intrinsics, instcombine does | Chris Lattner | 2008-04-30 | 1 | -3/+1 |
* | remove redundant check. | Chris Lattner | 2008-04-30 | 1 | -3/+1 |
* | Fix a bug in memcpyopt where the memcpy-memcpy transform was never being appl... | Owen Anderson | 2008-04-29 | 1 | -0/+17 |
* | don't eliminate load from volatile value on paths where the load is dead. | Chris Lattner | 2008-04-29 | 1 | -0/+25 |
* | make this test reduced and *valid* | Chris Lattner | 2008-04-29 | 1 | -15/+6 |
* | fix a subtle volatile handling bug. | Chris Lattner | 2008-04-29 | 1 | -0/+30 |
* | don't delete the last store to an alloca if the store is volatile. | Chris Lattner | 2008-04-29 | 1 | -0/+8 |
* | Fix DSE to not eliminate volatile loads with no uses. | Dan Gohman | 2008-04-28 | 1 | -0/+8 |
* | Teach InstCombine's ComputeMaskedBits what SelectionDAG's | Dan Gohman | 2008-04-28 | 1 | -0/+45 |
* | Fix PR2256, yet another miscompilation in simplifycfg of i | Chris Lattner | 2008-04-28 | 1 | -0/+30 |
* | When SRoA'ing a global variable, make sure the new globals get the | Chris Lattner | 2008-04-26 | 1 | -0/+32 |
* | Remove 'unwinds to' support from mainline. This patch undoes r47802 r47989 | Nick Lewycky | 2008-04-25 | 3 | -89/+0 |
* | Don't infininitely thread branches when a threaded edge | Chris Lattner | 2008-04-25 | 1 | -0/+142 |
* | Split some code out of the main SimplifyCFG loop into its own function. | Chris Lattner | 2008-04-24 | 1 | -0/+43 |
* | Rewrite multiple return value handling in SCCP. Before, the -sccp pass | Chris Lattner | 2008-04-23 | 1 | -0/+11 |
* | remove this testcase. It isn't testing loop rotate, it is testing all | Chris Lattner | 2008-04-23 | 1 | -127/+0 |
* | make this test more interesting. | Chris Lattner | 2008-04-23 | 1 | -4/+6 |
* | distill down the essense of this test. | Chris Lattner | 2008-04-23 | 1 | -7/+1 |
* | new test | Dale Johannesen | 2008-04-23 | 1 | -0/+21 |
* | Don't do: "(X & 4) >> 1 == 2 --> (X & 4) == 4" if there are more than one us... | Evan Cheng | 2008-04-23 | 1 | -0/+29 |
* | Start doing the significantly useful part of jump threading: handle cases | Chris Lattner | 2008-04-22 | 1 | -0/+30 |
* | Dig through multiple levels of AND to thread jumps if needed. | Chris Lattner | 2008-04-22 | 1 | -0/+33 |
* | Teach jump threading to thread through blocks like: | Chris Lattner | 2008-04-22 | 1 | -0/+32 |
* | add a basic testcase. | Chris Lattner | 2008-04-22 | 2 | -0/+34 |
* | optimize "p != gep p, ..." better. This allows us to compile | Chris Lattner | 2008-04-22 | 1 | -0/+13 |
* | Refactor memcpyopt based on Chris' suggestions. Consolidate several functions | Owen Anderson | 2008-04-21 | 2 | -4/+4 |
* | rename *.llx -> *.ll, last batch. | Chris Lattner | 2008-04-19 | 42 | -0/+0 |
* | XFAIL this test for the moment. The real solution is to prevent ADCE | Owen Anderson | 2008-04-16 | 1 | -0/+1 |
* | Add testcase for PR2213. | Owen Anderson | 2008-04-11 | 1 | -0/+12 |
* | Teach InstCombine's ComputeMaskedBits to handle pointer expressions | Dan Gohman | 2008-04-10 | 2 | -0/+73 |
* | Generalize getUnaryFloatFunction to handle any FP unary function, automatically | Chris Lattner | 2008-04-09 | 1 | -0/+5 |
* | remove capital letter from test name. | Chris Lattner | 2008-04-09 | 1 | -0/+0 |
* | Factor a bunch of functionality related to memcpy and memset transforms out of | Owen Anderson | 2008-04-09 | 7 | -8/+11 |
* | many cleanups to the pow optimizer. Allow it to handle powf, | Chris Lattner | 2008-04-09 | 1 | -4/+12 |
* | merge r48768 from branches/ggreif/parallelized-test | Gabor Greif | 2008-04-08 | 1 | -3/+0 |
* | add a testcase for forming memset from noncontiguous stores. | Chris Lattner | 2008-03-29 | 2 | -1/+100 |
* | Handle a special case xor undef, undef -> 0. Technically this should be trans... | Evan Cheng | 2008-03-25 | 1 | -0/+6 |
* | Byebye llvm-upgrade! | Tanya Lattner | 2008-03-25 | 27 | -882/+654 |
* | Add incoming value from header only if phi node has any use inside the loop. | Devang Patel | 2008-03-24 | 1 | -0/+69 |
* | apparently tclsh doesn't lex like bash. Weird. | Chris Lattner | 2008-03-24 | 1 | -1/+1 |
* | pass the option so this test tests the right thing. | Chris Lattner | 2008-03-24 | 1 | -2/+2 |
* | Transform (zext (or (icmp), (icmp))) to (or (zext (cimp), (zext icmp))) if at... | Evan Cheng | 2008-03-24 | 1 | -0/+35 |