| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove llvm-upgrade and update tests. | Tanya Lattner | 2008-02-19 | 162 | -3373/+3173 |
* | - When DAG combiner is folding a bit convert into a BUILD_VECTOR, it should c... | Evan Cheng | 2008-02-18 | 8 | -60/+129 |
* | Correctly fold divide-by-constant, even when faced with overflow. | Nick Lewycky | 2008-02-18 | 3 | -2/+50 |
* | Chris pointed out that it's not necessary to set i64 MUL to Expand | Dan Gohman | 2008-02-18 | 1 | -12/+10 |
* | - Remove the previous check which broke coalescer-commute3.ll | Evan Cheng | 2008-02-18 | 1 | -5/+5 |
* | upgrade some tests. | Chris Lattner | 2008-02-18 | 1 | -39/+43 |
* | Add a note | Nate Begeman | 2008-02-18 | 1 | -0/+3 |
* | Add a note about sext from i1 plus flags use. | Chris Lattner | 2008-02-18 | 1 | -0/+52 |
* | Don't mark scalar integer multiplication as Expand on x86, since x86 | Dan Gohman | 2008-02-18 | 2 | -5/+14 |
* | Transforming -A + -B --> -(A + B) isn't safe for FP, thanks | Chris Lattner | 2008-02-18 | 1 | -4/+6 |
* | minor code simplification, no functionality change. | Chris Lattner | 2008-02-18 | 1 | -8/+6 |
* | make this just a bit more strict. | Chris Lattner | 2008-02-18 | 1 | -1/+1 |
* | Simplify caller updating using a CallSite, as | Duncan Sands | 2008-02-18 | 3 | -22/+21 |
* | don't bother calling getUnderlyingObject for non-pointers. | Chris Lattner | 2008-02-18 | 1 | -1/+2 |
* | Fix a missing space in the description of the find-bugs option. | Dan Gohman | 2008-02-18 | 1 | -1/+1 |
* | Since we're not checking for the more general AllocationInst first, we need t... | Owen Anderson | 2008-02-18 | 1 | -1/+1 |
* | New helper function getMBBFromIndex() that given an index in any instruction ... | Roman Levenstein | 2008-02-18 | 2 | -16/+30 |
* | Add support to GVN for performing sret return slot optimization. This means ... | Owen Anderson | 2008-02-18 | 2 | -2/+94 |
* | I got the predicate backwards in my last patch. The comment is correct, the ... | Owen Anderson | 2008-02-18 | 1 | -1/+1 |
* | This check is not correct for mallocs, so exclude them earlier. | Owen Anderson | 2008-02-18 | 1 | -2/+2 |
* | For now, avoid commuting def MI for copy MI's whose source is not killed. Tha... | Evan Cheng | 2008-02-18 | 1 | -0/+7 |
* | switch simplifycfg from using vectors for most things to smallvectors, | Chris Lattner | 2008-02-18 | 1 | -14/+12 |
* | optimize away stackrestore calls that have no intervening alloca or call. | Chris Lattner | 2008-02-18 | 2 | -13/+58 |
* | upgrade this test. | Chris Lattner | 2008-02-18 | 1 | -11/+11 |
* | Clarify that 'sret' only applies to pointers, and | Duncan Sands | 2008-02-18 | 1 | -2/+3 |
* | Make the definition of the noalias attribute clearer. | Owen Anderson | 2008-02-18 | 1 | -2/+3 |
* | Duncan pointed out that we can fast fail here, because the sret parameter of | Owen Anderson | 2008-02-18 | 1 | -1/+2 |
* | Fix a comment, and a bug where we weren't applying the tail call logic in cas... | Owen Anderson | 2008-02-18 | 1 | -6/+8 |
* | Fix bugs that Chris noticed in my last patch. | Owen Anderson | 2008-02-18 | 1 | -9/+17 |
* | simplify some code, BreakUpSubtract always returns nonnull now. | Chris Lattner | 2008-02-18 | 1 | -4/+2 |
* | bitcasts of pointers are always pointers. | Chris Lattner | 2008-02-18 | 1 | -5/+2 |
* | Add support for setting parameters to CallSite. | Owen Anderson | 2008-02-18 | 1 | -0/+9 |
* | Add a predicate to Argument to check for the StructRet attribute. | Owen Anderson | 2008-02-17 | 2 | -0/+11 |
* | Teach getModRefInfo that memcpy, memmove, and memset don't "capture" memory a... | Owen Anderson | 2008-02-17 | 1 | -3/+13 |
* | Fold (-x + -y) -> -(x+y) which promotes better association, fixing | Chris Lattner | 2008-02-17 | 2 | -2/+22 |
* | fix pasto | Chris Lattner | 2008-02-17 | 1 | -1/+1 |
* | Split up subtracts into add+negate if they have a reassociable use or operand | Chris Lattner | 2008-02-17 | 2 | -5/+21 |
* | upgrade and simplify this test. | Chris Lattner | 2008-02-17 | 1 | -6/+7 |
* | make the logic for breaking up subtracts more explicit, no | Chris Lattner | 2008-02-17 | 1 | -9/+22 |
* | Remove llvm-upgrade. | Tanya Lattner | 2008-02-17 | 50 | -906/+906 |
* | move PR2053 to here. | Chris Lattner | 2008-02-17 | 1 | -0/+12 |
* | fix this test. | Chris Lattner | 2008-02-17 | 1 | -1/+1 |
* | Remove llvm-upgrade | Tanya Lattner | 2008-02-17 | 1 | -10/+6 |
* | Remove llvm-upgrade. | Tanya Lattner | 2008-02-17 | 2 | -17/+21 |
* | this test isn't useful since we added @ notation for globals. | Chris Lattner | 2008-02-17 | 1 | -21/+0 |
* | this line was commented out. | Chris Lattner | 2008-02-17 | 1 | -1/+1 |
* | Remove llvm-upgrade and update tests. | Tanya Lattner | 2008-02-16 | 2 | -31/+8 |
* | Removing llvm upgrade, so remove tests specific to llvm-upgrade and update th... | Tanya Lattner | 2008-02-16 | 27 | -13270/+13054 |
* | Remove any 'nest' parameter attributes if the function | Duncan Sands | 2008-02-16 | 2 | -10/+109 |
* | Some micro-optimizations. | Duncan Sands | 2008-02-16 | 1 | -4/+5 |