| Commit message (Expand) | Author | Age | Files | Lines |
* | Use 'static const char' instead of 'static const int'. | Devang Patel | 2007-05-02 | 26 | -56/+56 |
* | Do not use typeinfo to identify pass in pass manager. | Devang Patel | 2007-05-01 | 26 | -5/+114 |
* | fix a bug triggered by 403.gcc | Chris Lattner | 2007-04-28 | 1 | -2/+1 |
* | Fix several latent bugs in EmitGEPOffset that didn't manifest with its | Chris Lattner | 2007-04-28 | 1 | -36/+52 |
* | uhn zap cvs | Chris Lattner | 2007-04-28 | 1 | -6/+0 |
* | Implement PR1345 and Transforms/InstCombine/bitcast-gep.ll | Chris Lattner | 2007-04-28 | 1 | -28/+104 |
* | refactor some code relating to pointer cast xforms, pulling it out of the cod... | Chris Lattner | 2007-04-27 | 1 | -53/+56 |
* | Using APInt more efficiently. | Zhou Sheng | 2007-04-26 | 1 | -5/+4 |
* | Mem2Reg does not need TargetData. | Devang Patel | 2007-04-25 | 2 | -4/+3 |
* | Remove unused function argument. | Devang Patel | 2007-04-25 | 1 | -1/+1 |
* | If an alloca only has two types of uses: 1) reads 2) a memcpy/memmove that | Chris Lattner | 2007-04-25 | 1 | -4/+105 |
* | refactor the SROA code out into its own method, no functionality change. | Chris Lattner | 2007-04-25 | 1 | -98/+107 |
* | Undo my previous changes. Since my approach to this problem is being revised, | Owen Anderson | 2007-04-25 | 1 | -32/+31 |
* | Fix | Devang Patel | 2007-04-25 | 1 | -0/+12 |
* | Rollback some changes that adversely affected performance. I'm currently ret... | Owen Anderson | 2007-04-24 | 1 | -22/+26 |
* | Fix | Devang Patel | 2007-04-23 | 1 | -5/+9 |
* | Make PredicateSimplifier not use DominatorTree. | Owen Anderson | 2007-04-21 | 1 | -31/+32 |
* | Fix a comment. | Owen Anderson | 2007-04-21 | 1 | -1/+1 |
* | Move more passes to using ETForest instead of DominatorTree. | Owen Anderson | 2007-04-20 | 2 | -8/+5 |
* | Make use of ConstantInt::isZero instead of ConstantInt::isNullValue. | Zhou Sheng | 2007-04-19 | 2 | -5/+5 |
* | Make the operations of APInt variables more efficient. | Zhou Sheng | 2007-04-19 | 1 | -27/+21 |
* | Revert changes that caused breakage. | Owen Anderson | 2007-04-18 | 1 | -15/+19 |
* | Switch more uses of DominatorTree over to ETForest. | Owen Anderson | 2007-04-18 | 1 | -22/+24 |
* | Use ETForest instead of DominatorTree. | Owen Anderson | 2007-04-18 | 1 | -11/+11 |
* | Use ETForest instead of DominatorTree. | Owen Anderson | 2007-04-18 | 1 | -19/+15 |
* | Spell doFinalization right, so that it is a proper virtual override and | Dan Gohman | 2007-04-17 | 1 | -1/+1 |
* | Fix | Devang Patel | 2007-04-16 | 1 | -0/+6 |
* | Removed tabs everywhere except autogenerated & external files. Add make | Anton Korobeynikov | 2007-04-16 | 2 | -5/+5 |
* | Remove ImmediateDominator analysis. The same information can be obtained fro... | Owen Anderson | 2007-04-15 | 1 | -1/+0 |
* | 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 long lines | Chris Lattner | 2007-04-14 | 6 | -18/+20 |
* | 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 |
* | 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 |
* | 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 |
* | Fix Transforms/ScalarRepl/union-pointer.ll | Chris Lattner | 2007-04-11 | 1 | -6/+7 |
* | Turn stuff like: | Chris Lattner | 2007-04-11 | 1 | -9/+40 |
* | Simplify some comparisons to arithmetic, this implements: | Chris Lattner | 2007-04-11 | 1 | -0/+27 |
* | canonicalize (x <u 2147483648) -> (x >s -1) and (x >u 2147483647) -> (x <s 0) | Chris Lattner | 2007-04-11 | 1 | -25/+32 |
* | fix a miscompilation of: | Chris Lattner | 2007-04-11 | 1 | -63/+59 |
* | fix a regression introduced by my last patch. | Chris Lattner | 2007-04-11 | 1 | -14/+1 |
* | Simplify SROA conversion to integer in some ways, make it more general in oth... | Chris Lattner | 2007-04-11 | 1 | -131/+138 |
* | Strengthen the boundary conditions of this fold, implementing | Chris Lattner | 2007-04-09 | 1 | -3/+3 |
* | eliminate the last uses of some TLI methods. | Chris Lattner | 2007-04-09 | 1 | -3/+7 |
* | switch LSR to use isLegalAddressingMode instead of other simpler hooks | Chris Lattner | 2007-04-09 | 1 | -18/+21 |
* | Check _all_ PHINodes. | Devang Patel | 2007-04-09 | 1 | -1/+1 |
* | Insert new pre-header before new header. Original pre-header may | Devang Patel | 2007-04-09 | 1 | -2/+2 |