| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix a few minor issues that were exposed by the removal of SCEVHandle. | Dan Gohman | 2009-06-22 | 1 | -1/+0 |
* | SCEVHandle is no more! | Owen Anderson | 2009-06-22 | 3 | -117/+117 |
* | Fix this code to correctly handle loops with multiple exits. Until | Dan Gohman | 2009-06-22 | 1 | -4/+4 |
* | Rename a variable for consistency with the ExitBlock vs ExitingBlock | Dan Gohman | 2009-06-21 | 1 | -6/+6 |
* | Fix a typo in a comment that Frits von Bommel noticed. | Dan Gohman | 2009-06-19 | 1 | -1/+1 |
* | Re-apply r73718, now that the fix in r73787 is in, and add a | Dan Gohman | 2009-06-19 | 1 | -30/+36 |
* | Fix LSR's OptimizeSMax to ignore max operators with more than 2 operands, | Dan Gohman | 2009-06-19 | 1 | -0/+5 |
* | Revert 73718. It's breaking 254.gap. | Evan Cheng | 2009-06-19 | 1 | -35/+29 |
* | make jump threading handle lexically identical compare instructions | Chris Lattner | 2009-06-19 | 1 | -4/+17 |
* | Teach jump threading to look at comparisons between phi nodes and non-constants. | Nick Lewycky | 2009-06-19 | 1 | -25/+48 |
* | Improve tail call elim to move loads above readonly calls | Chris Lattner | 2009-06-19 | 1 | -1/+15 |
* | part of PR4405: disable a contentious optimization for | Chris Lattner | 2009-06-19 | 1 | -5/+3 |
* | Generalize LSR's OptimizeSMax to handle unsigned max tests as well | Dan Gohman | 2009-06-18 | 1 | -29/+35 |
* | Revert IRBuilder CC propagation. Fix SimplifyLibCalls instead. | Anton Korobeynikov | 2009-06-18 | 1 | -23/+62 |
* | Remove the code from IVUsers that attempted to handle | Dan Gohman | 2009-06-18 | 1 | -16/+2 |
* | Generalize the zext(trunc(t) & C) instcombine to work even with | Dan Gohman | 2009-06-18 | 1 | -8/+21 |
* | Instcombine zext(trunc(x) & mask) to x&mask, even if the trunc has | Dan Gohman | 2009-06-17 | 1 | -0/+14 |
* | This fixes a bug introduced in 72661, which can | Dale Johannesen | 2009-06-17 | 1 | -1/+18 |
* | Add debug message about non-local loads being clobbered. | Torok Edwin | 2009-06-17 | 1 | -1/+7 |
* | Update comments to use doxygen syntax. | Dan Gohman | 2009-06-17 | 1 | -11/+11 |
* | >> What if my global variable was into a different address space than stack? | Sanjiv Gupta | 2009-06-17 | 1 | -1/+4 |
* | PR3439: Correct a silly mistake in the SimplifyDemandedUseBits code for | Eli Friedman | 2009-06-17 | 1 | -1/+1 |
* | Generalize a few more instcombines to be vector/scalar-independent. | Dan Gohman | 2009-06-16 | 1 | -18/+17 |
* | Generalize instcombine's isSafeToLoadUnconditionally() function | Chris Lattner | 2009-06-16 | 2 | -39/+45 |
* | Use Type::getScalarType. | Dan Gohman | 2009-06-16 | 1 | -4/+2 |
* | Support vector casts in more places, fixing a variety of assertion | Dan Gohman | 2009-06-15 | 4 | -141/+170 |
* | Fix the crash in this test. This is basically the same | Dale Johannesen | 2009-06-15 | 1 | -2/+27 |
* | Merge PartialInliner changes. | Owen Anderson | 2009-06-15 | 1 | -0/+5 |
* | Make the EnableLoadPRE variable static. | Dan Gohman | 2009-06-15 | 1 | -1/+1 |
* | Fix old-style type names in comments. | Dan Gohman | 2009-06-14 | 4 | -11/+11 |
* | Convert several parts of the ScalarEvolution framework to use | Dan Gohman | 2009-06-14 | 1 | -8/+8 |
* | Add another item to the list of things that indvars does. | Dan Gohman | 2009-06-14 | 1 | -1/+4 |
* | Fix CMake build. Patch from Ingmar Vanhassel. | Torok Edwin | 2009-06-14 | 1 | -0/+1 |
* | Add an early implementation of a partial inlining pass. The idea behind this | Owen Anderson | 2009-06-14 | 1 | -0/+171 |
* | Unlike the other instructions, GEP really does need to look at the type of a | Nick Lewycky | 2009-06-13 | 1 | -0/+14 |
* | Teach SCEVExpander's visitAddRecExpr to reuse an existing canonical | Dan Gohman | 2009-06-13 | 1 | -71/+24 |
* | second half of fix for PR4366: don't zap store to null of | Chris Lattner | 2009-06-12 | 1 | -3/+7 |
* | Don't do (x - (y - z)) --> (x + (z - y)) on floating-point types, because | Dan Gohman | 2009-06-12 | 1 | -15/+0 |
* | Give Instruction::isSameOperationAs a corresponding comment to note | Dan Gohman | 2009-06-12 | 1 | -2/+3 |
* | Keep callers of a weak function calling it, instead of the non-weak equivalent. | Nick Lewycky | 2009-06-12 | 1 | -0/+1 |
* | Don't forget to match the calling convention when producing a thunk. | Nick Lewycky | 2009-06-12 | 1 | -2/+2 |
* | Given two identical weak functions, produce one internal function and two weak | Nick Lewycky | 2009-06-12 | 1 | -4/+17 |
* | Add an "are types equivalent" operation that ignores the types that a pointer | Nick Lewycky | 2009-06-12 | 1 | -99/+354 |
* | Fix 4366: store to null in non-default addr space should not be | Chris Lattner | 2009-06-11 | 1 | -1/+2 |
* | Implement and use new method Function::hasAddressTaken(). | Jay Foad | 2009-06-10 | 3 | -38/+6 |
* | Remove an unused function SafeToDestroyConstant(). Rename an almost | Jay Foad | 2009-06-09 | 2 | -24/+9 |
* | Don't crash on multiple return value with no obvious inserted value. | Nick Lewycky | 2009-06-06 | 1 | -2/+2 |
* | PR4340: Run SimplifyDemandedVectorElts on insertelement instructions; | Eli Friedman | 2009-06-06 | 1 | -0/+6 |
* | Use cast<> instead of dyn_cast<> for things that are known to be | Jay Foad | 2009-06-06 | 4 | -23/+16 |
* | Simplify. | Devang Patel | 2009-06-05 | 1 | -15/+5 |