| Commit message (Expand) | Author | Age | Files | Lines |
* | For PR1336: | Reid Spencer | 2007-04-16 | 1 | -1/+1 |
* | Fix test/CodeGen/Generic/vector-constantexpr.ll | Reid Spencer | 2007-04-16 | 1 | -0/+2 |
* | Regenerate. | Reid Spencer | 2007-04-16 | 3 | -1207/+1049 |
* | For PR1328: | Reid Spencer | 2007-04-16 | 1 | -0/+8 |
* | For PR1328: | Reid Spencer | 2007-04-16 | 1 | -3/+4 |
* | Revert last patch. It was already fixed. | Reid Spencer | 2007-04-16 | 1 | -6/+1 |
* | For PR1336: | Reid Spencer | 2007-04-16 | 1 | -1/+6 |
* | Tabs -> Spaces | Owen Anderson | 2007-04-15 | 2 | -10/+10 |
* | Fix PR1335 and Transforms/Inline/2007-04-15-InlineEH.ll | Chris Lattner | 2007-04-15 | 1 | -4/+5 |
* | Fix a nasty bug introduced when apint'ified. This fixes | Chris Lattner | 2007-04-15 | 1 | -4/+4 |
* | Remove ImmediateDominator analysis. The same information can be obtained fro... | Owen Anderson | 2007-04-15 | 5 | -186/+88 |
* | fix SimplifyLibCalls/IsDigit.ll | Chris Lattner | 2007-04-15 | 1 | -1/+1 |
* | Extend store merging to support the 'if/then' version in addition to if/then/... | Chris Lattner | 2007-04-15 | 1 | -26/+60 |
* | refactor some code, no functionality change. | Chris Lattner | 2007-04-15 | 1 | -58/+77 |
* | Fix some unsafe code. Also, tabs -> spaces. | Owen Anderson | 2007-04-14 | 1 | -6/+6 |
* | Make ETForest depend on DomTree rather than IDom. This is the first step | Owen Anderson | 2007-04-14 | 1 | -8/+11 |
* | fix long lines | Chris Lattner | 2007-04-14 | 6 | -18/+20 |
* | add a note | Chris Lattner | 2007-04-14 | 1 | -0/+18 |
* | Implement Transforms/InstCombine/vec_extract_elt.ll, transforming: | Chris Lattner | 2007-04-14 | 1 | -0/+11 |
* | Implement InstCombine/vec_demanded_elts.ll:test2. This allows us to turn | Chris Lattner | 2007-04-14 | 1 | -0/+66 |
* | avoid copying sets and vectors around. | Chris Lattner | 2007-04-14 | 1 | -7/+6 |
* | Fix PR1329. | Jeff Cohen | 2007-04-14 | 1 | -0/+28 |
* | disable switch lowering using shift/and. It still breaks ppc bootstrap for | Chris Lattner | 2007-04-14 | 1 | -0/+1 |
* | avoid iterator invalidation. | Chris Lattner | 2007-04-14 | 1 | -2/+4 |
* | An even better fix. | Jeff Cohen | 2007-04-14 | 1 | -3/+2 |
* | Fix recent regression that broke several llvm-tests. | Jeff Cohen | 2007-04-14 | 1 | -0/+2 |
* | Fix PR1325: Case range optimization was performed in the case it | Anton Korobeynikov | 2007-04-14 | 1 | -4/+2 |
* | disable shift/and lowering to work around PR1325 for now. | Chris Lattner | 2007-04-14 | 1 | -1/+3 |
* | Implement a few missing xforms: printf("foo\n") -> puts. printf("x") -> putchar | Chris Lattner | 2007-04-14 | 1 | -9/+48 |
* | in addition to merging, constantmerge should also delete trivially dead globals, | Chris Lattner | 2007-04-14 | 1 | -1/+8 |
* | Implement PR1201 and test/Transforms/InstCombine/malloc-free-delete.ll | Chris Lattner | 2007-04-14 | 1 | -8/+23 |
* | use an accessor to simplify code. | Chris Lattner | 2007-04-14 | 1 | -15/+1 |
* | add GetElementPtrInst::hasAllZeroIndices, a long-overdue helper method. | Chris Lattner | 2007-04-14 | 1 | -0/+16 |
* | We want the number of bits needed, not the power of 2. | Reid Spencer | 2007-04-14 | 1 | -1/+1 |
* | Silence VC++ warning. | Jeff Cohen | 2007-04-13 | 1 | -1/+1 |
* | Now that codegen prepare isn't defeating me, I can finally fix what I set | Chris Lattner | 2007-04-13 | 1 | -1/+19 |
* | Completely rewrite addressing-mode related sinking of code. In particular, | Chris Lattner | 2007-04-13 | 1 | -341/+542 |
* | Implement a getBitsNeeded method to determine how many bits are needed to | Reid Spencer | 2007-04-13 | 1 | -0/+37 |
* | Remove use of SlowOperationInformer. | Devang Patel | 2007-04-13 | 1 | -3/+0 |
* | Undo previous check-in. | Devang Patel | 2007-04-13 | 1 | -1/+1 |
* | Hello uses LLVMSupport.a (SlowerOperationInformer) | Devang Patel | 2007-04-13 | 1 | -1/+1 |
* | Fix PR1323 : we haven't updated phi nodes in good manner :) | Anton Korobeynikov | 2007-04-13 | 1 | -0/+1 |
* | arm has r+r*s and r+i addr modes, but no r+i+r*s addr modes. | Chris Lattner | 2007-04-13 | 1 | -1/+5 |
* | Make the apint construction more effective. | Zhou Sheng | 2007-04-13 | 1 | -3/+3 |
* | CSE simple binary expressions when they are inserted. This makes LSR produce | Chris Lattner | 2007-04-13 | 1 | -5/+25 |
* | Implement review feedback .. don't double search a set. | Reid Spencer | 2007-04-12 | 1 | -3/+1 |
* | Make sure intrinsics that are lowered to functions make the function weak | Reid Spencer | 2007-04-12 | 1 | -2/+2 |
* | Provide support for intrinsics that lower themselves to a function body. | Reid Spencer | 2007-04-12 | 1 | -2/+32 |
* | Implement Thread Local Storage (TLS) in CBackend. | Lauro Ramos Venancio | 2007-04-12 | 1 | -17/+27 |
* | Implement the "thread_local" keyword. | Lauro Ramos Venancio | 2007-04-12 | 15 | -3657/+4042 |