| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fix the miscompilation of MiBench/consumer-lame that was exposed by Evan's | Chris Lattner | 2008-01-14 | 1 | -0/+16 |
* | Turn a memcpy from a double* into a load/store of double instead of | Chris Lattner | 2008-01-14 | 1 | -0/+14 |
* | Fix PR1907, a nasty miscompilation because instcombine didn't | Chris Lattner | 2008-01-13 | 1 | -0/+9 |
* | When turning a call to a bitcast function into a direct call, | Duncan Sands | 2008-01-13 | 2 | -2/+16 |
* | we don't have to make an explicit copy of a byval argument when | Chris Lattner | 2008-01-12 | 1 | -0/+28 |
* | When DAE drops the varargs part of a function, ensure any | Duncan Sands | 2008-01-11 | 1 | -1/+4 |
* | Teach argpromote to ruthlessly hack small byval structs when it can | Chris Lattner | 2008-01-11 | 1 | -0/+24 |
* | When inlining a functino with a byval argument, make an explicit | Chris Lattner | 2008-01-11 | 1 | -0/+28 |
* | Implement PR1795, an instcombine hack for forming GEPs with integer pointer a... | Chris Lattner | 2008-01-08 | 1 | -0/+20 |
* | The transform that tries to turn calls to bitcast functions into | Duncan Sands | 2008-01-06 | 1 | -0/+23 |
* | When transforming a call to a bitcast function into | Duncan Sands | 2008-01-06 | 2 | -0/+20 |
* | remove a couple more unsafe xforms in the face of overflow. | Chris Lattner | 2008-01-05 | 1 | -25/+0 |
* | Fix PR1896 | Chris Lattner | 2008-01-04 | 1 | -0/+26 |
* | don't hoist FP additions into unconditional adds + selects. This | Chris Lattner | 2008-01-03 | 1 | -0/+26 |
* | Update this testcase. The output needs to be disabled to pass. | Bill Wendling | 2008-01-01 | 1 | -25/+23 |
* | dead calls to llvm.stacksave can be deleted, even though they | Chris Lattner | 2007-12-29 | 1 | -0/+10 |
* | upgrade this test | Chris Lattner | 2007-12-29 | 1 | -11/+12 |
* | Test -simplifycfg only. | Devang Patel | 2007-12-28 | 1 | -46/+23 |
* | Add a testcase for my recent InstCombine fix, written by Nicholas. | Owen Anderson | 2007-12-28 | 1 | -0/+89 |
* | implement InstCombine/shift-trunc-shift.ll. This allows | Chris Lattner | 2007-12-22 | 1 | -0/+10 |
* | If succ has succ itself as one of the predecessors then do | Devang Patel | 2007-12-22 | 1 | -0/+60 |
* | Make DAE not wipe out attributes on calls, and not drop | Duncan Sands | 2007-12-21 | 1 | -0/+16 |
* | Implement review feedback, including additional transforms | Christopher Lamb | 2007-12-20 | 1 | -0/+25 |
* | When inlining through an 'nounwind' call, mark inlined | Duncan Sands | 2007-12-19 | 1 | -0/+19 |
* | Remove an orthogonal transformation of the selection condition from my most r... | Christopher Lamb | 2007-12-18 | 1 | -10/+1 |
* | Fix typos. | Christopher Lamb | 2007-12-18 | 1 | -1/+1 |
* | Fold certain additions through selects (and their compares) so as to eliminat... | Christopher Lamb | 2007-12-18 | 1 | -0/+38 |
* | Make invokes of inline asm legal. Teach codegen | Duncan Sands | 2007-12-17 | 1 | -1/+1 |
* | Make instcombine promote inline asm calls to 'nounwind' | Duncan Sands | 2007-12-16 | 2 | -1/+8 |
* | 1. "Upgrage" comments. | Wojciech Matyjewicz | 2007-12-12 | 1 | -0/+10 |
* | Implement constant folding if vector<->vector bitcasts where the number | Chris Lattner | 2007-12-11 | 1 | -0/+33 |
* | Fix PR1850 by removing an unsafe transformation from VMCore/ConstantFold.cpp. | Chris Lattner | 2007-12-10 | 1 | -0/+9 |
* | Make PruneEH update the nounwind/noreturn attributes | Duncan Sands | 2007-12-10 | 3 | -27/+27 |
* | If ExitValue operand is also defined in Loop header then | Devang Patel | 2007-12-03 | 1 | -0/+44 |
* | Add some convenience methods for querying attributes, and | Duncan Sands | 2007-11-28 | 1 | -1/+1 |
* | Fix PR1146: parameter attributes are longer part of | Duncan Sands | 2007-11-27 | 1 | -2/+0 |
* | Add new SCEV, SCEVSMax. This allows LLVM to analyze do-while loops. | Nick Lewycky | 2007-11-25 | 1 | -2/+2 |
* | Implement PR1822 | Chris Lattner | 2007-11-25 | 1 | -3/+11 |
* | Fix PR1816. If a bitcast of a function only exists because of a | Duncan Sands | 2007-11-25 | 1 | -0/+12 |
* | Fix PR1816, by correcting the broken definition of APInt::countTrailingZeros. | Chris Lattner | 2007-11-23 | 1 | -0/+8 |
* | Ding dong, the DoesntAccessMemoryFns and | Duncan Sands | 2007-11-23 | 4 | -49/+50 |
* | Fix a bug where we'd try to find a scev value for a bitcast operand, | Chris Lattner | 2007-11-23 | 1 | -0/+20 |
* | Fix PR1817. | Chris Lattner | 2007-11-22 | 1 | -0/+16 |
* | Turn invokes of nounwind functions into ordinary calls. | Duncan Sands | 2007-11-22 | 1 | -0/+14 |
* | Readonly/readnone functions are allowed to throw | Duncan Sands | 2007-11-22 | 1 | -10/+12 |
* | Fix PR1800 by correcting mistaken logic. | Chris Lattner | 2007-11-16 | 1 | -0/+10 |
* | Implement PR1796 and Transforms/SimplifyCFG/noreturn-call.ll | Chris Lattner | 2007-11-14 | 1 | -0/+11 |
* | upgrade test | Chris Lattner | 2007-11-13 | 2 | -11/+11 |
* | Implement PR1786 by iterating between dead cycle elimination | Chris Lattner | 2007-11-13 | 1 | -0/+100 |
* | Tighten up a check for folding away loads from (newly constant) globals. This | Chris Lattner | 2007-11-09 | 1 | -0/+19 |