| Commit message (Expand) | Author | Age | Files | Lines |
* | More cleanups for CellSPU: | Scott Michel | 2008-01-30 | 18 | -3868/+4951 |
* | Make DSE much more aggressive by performing DCE earlier. Update a testcase t... | Owen Anderson | 2008-01-30 | 1 | -2/+55 |
* | Fix an issue where, under very specific circumstances, memdep could end up de... | Owen Anderson | 2008-01-30 | 1 | -2/+2 |
* | Fix a bug where scalarrepl would discard offset if type would match. | Chris Lattner | 2008-01-30 | 1 | -2/+2 |
* | Factor the addressing mode and the load/store VT out of LoadSDNode | Dan Gohman | 2008-01-30 | 14 | -108/+108 |
* | Work in progress. This patch *fixes* x86-64 calls which are modelled as Struc... | Evan Cheng | 2008-01-29 | 6 | -96/+283 |
* | When expanding an operand, it's not the result value | Duncan Sands | 2008-01-29 | 1 | -2/+2 |
* | Don't let globalopt hack on volatile loads or stores. | Chris Lattner | 2008-01-29 | 1 | -1/+4 |
* | Use empty() instead of comparing size() with zero. | Dan Gohman | 2008-01-29 | 17 | -22/+22 |
* | Fix a typo in a comment. | Dan Gohman | 2008-01-29 | 1 | -1/+1 |
* | Fix 80-col violations. | Dan Gohman | 2008-01-29 | 3 | -10/+17 |
* | Remove top-level const qualifiers from casts, avoiding associated | Dan Gohman | 2008-01-29 | 1 | -10/+10 |
* | Fix a typo in a comment. | Dan Gohman | 2008-01-29 | 1 | -1/+0 |
* | Add explicit keywords. | Dan Gohman | 2008-01-29 | 1 | -2/+2 |
* | eliminate additions of 0.0 when they are obviously dead. This has to be care... | Chris Lattner | 2008-01-29 | 1 | -0/+47 |
* | Use getPreferredAlignmentLog or getPreferredAlignment | Duncan Sands | 2008-01-29 | 6 | -19/+26 |
* | Add support for eliminating memcpy's at the end of functions. Also fix some ... | Owen Anderson | 2008-01-29 | 1 | -26/+63 |
* | RegAllocBigBlock doesn't need LiveVariables either. | Owen Anderson | 2008-01-29 | 1 | -13/+2 |
* | Properly expand extract-element for non-power-of-2 codegen | Nate Begeman | 2008-01-29 | 1 | -2/+3 |
* | Handle 'X' constraint in asm's better. | Dale Johannesen | 2008-01-29 | 5 | -21/+69 |
* | Filter loops that subtract induction variables. | Devang Patel | 2008-01-29 | 1 | -17/+17 |
* | Overhaul Cell SPU's addressing mode internals so that there are now | Scott Michel | 2008-01-29 | 8 | -680/+566 |
* | Simplify the code and fix a typo. | Lauro Ramos Venancio | 2008-01-28 | 1 | -7/+4 |
* | Fix fpcmp infinite loop when comparing "29-266" with "29-268". | Lauro Ramos Venancio | 2008-01-28 | 1 | -5/+21 |
* | If the function has no machine instructions, then emit a "nop" so that | Bill Wendling | 2008-01-28 | 1 | -0/+10 |
* | Transform calls to memcpy into llvm.memcpy calls, patch by Eli Friedman. | Chris Lattner | 2008-01-28 | 1 | -0/+30 |
* | Handle some more combinations of extend and icmp. Fixes PR1940. | Nick Lewycky | 2008-01-28 | 2 | -8/+25 |
* | Fix PR1932 by disabling an xform invalid for fdiv. | Chris Lattner | 2008-01-28 | 1 | -9/+10 |
* | Fix PR1938 by forcing the code that uses an undefined value to branch one | Chris Lattner | 2008-01-28 | 1 | -4/+19 |
* | Fix PowerPC/./2007-10-18-PtrArithmetic.ll | Chris Lattner | 2008-01-27 | 1 | -7/+14 |
* | fix a crash on CodeGen/X86/vector-rem.ll | Chris Lattner | 2008-01-27 | 1 | -4/+6 |
* | Reg alloc doesn't really need LiveVariables. | Owen Anderson | 2008-01-27 | 1 | -9/+2 |
* | Be more careful modifying the use_list while also iterating through it. | Nick Lewycky | 2008-01-27 | 1 | -1/+2 |
* | Revert r46393: readonly/readnone functions are no | Duncan Sands | 2008-01-27 | 1 | -9/+6 |
* | Implement some dag combines that allow doing fneg/fabs/fcopysign in integer | Chris Lattner | 2008-01-27 | 1 | -2/+79 |
* | add a note | Chris Lattner | 2008-01-27 | 1 | -0/+39 |
* | Use fldz and fld1 for long double constants instead of a constant pool load. | Chris Lattner | 2008-01-27 | 1 | -1/+14 |
* | The CorrelatedExpressionElimination pass is known to be buggy. Remove it. | Bill Wendling | 2008-01-27 | 1 | -1486/+0 |
* | For long double constants, print an approximation of their value to the .s fi... | Chris Lattner | 2008-01-27 | 1 | -2/+6 |
* | Fold fptrunc(add (fpextend x), (fpextend y)) -> add(x,y), as GCC does. | Chris Lattner | 2008-01-27 | 1 | -3/+75 |
* | Add some notes. | Chris Lattner | 2008-01-26 | 1 | -0/+18 |
* | Remove some code for inferring alignment info from the x86 backend | Chris Lattner | 2008-01-26 | 1 | -10/+1 |
* | Infer alignment of loads and increase their alignment when we can tell they are | Chris Lattner | 2008-01-26 | 1 | -4/+33 |
* | If there's no instructions being emitted on X86 for a function, emit a | Bill Wendling | 2008-01-26 | 2 | -8/+14 |
* | If there are no machine instructions emitted for a function, then insert | Bill Wendling | 2008-01-26 | 2 | -16/+16 |
* | Create an explicit copy for byval parameters even | Duncan Sands | 2008-01-26 | 1 | -6/+9 |
* | If we have a function like this: | Bill Wendling | 2008-01-26 | 1 | -1/+14 |
* | Fix some bugs in SimplifyNodeWithTwoResults where it would call deletenode to | Chris Lattner | 2008-01-26 | 1 | -41/+31 |
* | don't bother making x&-1 only to simplify it in dag combine. This commonly o... | Chris Lattner | 2008-01-26 | 1 | -0/+2 |
* | reduce indentation | Chris Lattner | 2008-01-25 | 1 | -42/+44 |