| Commit message (Expand) | Author | Age | Files | Lines |
* | Handle "if ((x|y) != 0)" for ints like we do for bools. Fixes missed | Nick Lewycky | 2006-10-22 | 1 | -10/+13 |
* | AllocaInst can't return a null pointer. Fixes missed optimization | Nick Lewycky | 2006-10-22 | 1 | -0/+6 |
* | Add a workaround for PR962, disabling the more aggressive form of this | Chris Lattner | 2006-10-22 | 1 | -0/+8 |
* | 3 Changes: | Chris Lattner | 2006-10-22 | 1 | -24/+35 |
* | Fix an ugly problem in SCCP. This fixes Benchmarks/Misc-C++/mandel-text.cpp | Chris Lattner | 2006-10-20 | 1 | -2/+3 |
* | Fix miscompilation of MallocBench/espresso which code review pointed out | Chris Lattner | 2006-10-20 | 1 | -1/+1 |
* | For PR950: | Reid Spencer | 2006-10-20 | 7 | -313/+351 |
* | While creating mask, use 1ULL instead of 1. | Devang Patel | 2006-10-20 | 1 | -1/+1 |
* | It is OK to remove extra cast if operation is EQ/NE even though source | Devang Patel | 2006-10-19 | 1 | -2/+3 |
* | Typo Typo. | Devang Patel | 2006-10-19 | 1 | -1/+1 |
* | Typo. | Devang Patel | 2006-10-19 | 1 | -1/+1 |
* | Fix bug in PR454 resolution. Added new test case. | Devang Patel | 2006-10-19 | 1 | -1/+15 |
* | Undo Chris' last patch, it caused a regression. | Reid Spencer | 2006-10-16 | 1 | -2/+2 |
* | fix a buggy check that accidentally disabled this xform | Chris Lattner | 2006-10-15 | 1 | -1/+1 |
* | Replace custom dispatch code with two uses of InstVisitor. Improves | Nick Lewycky | 2006-10-12 | 1 | -93/+113 |
* | Implement SROA of unions with mixed pointers/integers in them. This implements | Chris Lattner | 2006-10-08 | 1 | -10/+16 |
* | Implement Transforms/ScalarRepl/union-pointer.ll:test | Chris Lattner | 2006-10-08 | 1 | -9/+13 |
* | add a new SimplifyDemandedVectorElts method, which works similarly to | Chris Lattner | 2006-10-05 | 1 | -8/+254 |
* | Simplify logic further. | Nick Lewycky | 2006-10-03 | 1 | -17/+8 |
* | Simplify, now that predsimplify depends on break-crit-edges. | Nick Lewycky | 2006-10-03 | 1 | -26/+8 |
* | Move break-crit-edges before the predicate simplifier. Allows us to | Nick Lewycky | 2006-10-03 | 1 | -7/+3 |
* | Fix a bug from r1.391 of this file, where we checked the size instead of | Chris Lattner | 2006-10-01 | 1 | -2/+2 |
* | Eliminate ConstantBool::True and ConstantBool::False. Instead, provide | Chris Lattner | 2006-09-28 | 5 | -115/+108 |
* | set DEBUG_TYPE right | Chris Lattner | 2006-09-27 | 1 | -0/+1 |
* | Style changes only. Remove dead code, fix a comment. | Nick Lewycky | 2006-09-23 | 1 | -11/+4 |
* | Fix Transforms/IndVarsSimplify/2006-09-20-LFTR-Crash.ll | Chris Lattner | 2006-09-21 | 1 | -15/+22 |
* | Don't rewrite ConstantExpr::get. | Nick Lewycky | 2006-09-21 | 1 | -44/+20 |
* | Once we're down to "setcc type constant1, constant2", at least come up | Nick Lewycky | 2006-09-20 | 1 | -18/+14 |
* | Use a total ordering to compare instructions. | Nick Lewycky | 2006-09-20 | 1 | -87/+101 |
* | simplify | Andrew Lenharth | 2006-09-20 | 1 | -12/+8 |
* | We went through all that trouble to compute whether it was safe to transform | Chris Lattner | 2006-09-20 | 1 | -6/+46 |
* | Back out Chris' last set of changes. This breaks 177.mesa and povray somehow. | Evan Cheng | 2006-09-20 | 1 | -43/+6 |
* | 80 col. | Evan Cheng | 2006-09-20 | 1 | -1/+2 |
* | If we have an add, do it in the pointer realm, not the int realm. This is cr... | Andrew Lenharth | 2006-09-19 | 1 | -0/+22 |
* | implement select.ll:test19-22 | Chris Lattner | 2006-09-19 | 1 | -6/+43 |
* | Walk down the dominator tree instead of the control flow graph. That means | Nick Lewycky | 2006-09-18 | 1 | -150/+90 |
* | Fix an infinite loop building the CFE | Chris Lattner | 2006-09-18 | 1 | -1/+2 |
* | Implement InstCombine/cast.ll:test31. This speeds up 462.libquantum by 26%. | Chris Lattner | 2006-09-18 | 1 | -4/+39 |
* | Implement Transforms/InstCombine/shift-sra.ll:test0 | Chris Lattner | 2006-09-18 | 1 | -0/+20 |
* | Rewrite shift/and/compare sequences to promote better licm of the RHS. | Chris Lattner | 2006-09-18 | 1 | -28/+48 |
* | Fix Transforms/InstCombine/2006-09-15-CastToBool.ll and PR913 | Chris Lattner | 2006-09-16 | 1 | -0/+5 |
* | Add some more consistency checks. | Nick Lewycky | 2006-09-13 | 1 | -1/+20 |
* | Fix unionSets so that it can merge correctly. | Nick Lewycky | 2006-09-13 | 1 | -22/+34 |
* | Erase dead instructions. | Nick Lewycky | 2006-09-13 | 1 | -2/+3 |
* | An sinkable instruction may exist with uses, if those uses are in dead blocks. | Chris Lattner | 2006-09-12 | 1 | -0/+4 |
* | Fix PR905 and InstCombine/2006-09-11-EmptyStructCrash.ll | Chris Lattner | 2006-09-11 | 1 | -1/+2 |
* | Skip the linear search if the answer is already known. | Nick Lewycky | 2006-09-11 | 1 | -20/+22 |
* | Allow tail duplication in more cases, relaxing the previous restriction a | Chris Lattner | 2006-09-10 | 1 | -1/+12 |
* | Replace EquivalenceClasses with a custom-built data structure. Many common | Nick Lewycky | 2006-09-10 | 1 | -133/+259 |
* | Implement Transforms/InstCombine/hoist_instr.ll | Chris Lattner | 2006-09-09 | 1 | -14/+54 |