Age | Commit message (Expand) | Author |
2009-07-03 | Convert the first batch of passes to use LLVMContext. | Owen Anderson |
2009-07-02 | fix inverted logic pointed out by John McCall, noticed by inspection. | Chris Lattner |
2009-07-02 | Fix a bunch of other places that used operator[] to test whether | Dan Gohman |
2009-07-01 | Request LCSSA after LoopSimplify. This fixes a problem in which the | Dan Gohman |
2009-07-01 | Fix an instcombine abort on a scalar-to-vector bitcast. This fixes PR4487. | Dan Gohman |
2009-06-27 | Don't try to split a loop when the controlling icmp instruction | Dan Gohman |
2009-06-27 | More minor code simplifications. | Dan Gohman |
2009-06-27 | When a value is used multiple times within a single PHI, instructions | Dan Gohman |
2009-06-26 | Incorporate the insertion point into the key of SCEVExpander's CSE map. | Dan Gohman |
2009-06-26 | Constify this value. | Owen Anderson |
2009-06-26 | Fix linking of llvm-ld and lli with CMake, from Xerxes RÄnby | Douglas Gregor |
2009-06-26 | Change this code to a form about which VC++ reportedly isn't unhappy. | Dan Gohman |
2009-06-26 | Minor code simplification. | Dan Gohman |
2009-06-25 | Reword a few comments. | Dan Gohman |
2009-06-24 | When inserting code into a loop preheader, insert it before the | Dan Gohman |
2009-06-24 | Extend ScalarEvolution's multiple-exit support to compute exact | Dan Gohman |
2009-06-24 | Don't emit a redundant BitCastInst if the value to be defined in the | Dan Gohman |
2009-06-22 | Fix a few minor issues that were exposed by the removal of SCEVHandle. | Dan Gohman |
2009-06-22 | SCEVHandle is no more! | Owen Anderson |
2009-06-22 | Fix this code to correctly handle loops with multiple exits. Until | Dan Gohman |
2009-06-21 | Rename a variable for consistency with the ExitBlock vs ExitingBlock | Dan Gohman |
2009-06-19 | Fix a typo in a comment that Frits von Bommel noticed. | Dan Gohman |
2009-06-19 | Re-apply r73718, now that the fix in r73787 is in, and add a | Dan Gohman |
2009-06-19 | Fix LSR's OptimizeSMax to ignore max operators with more than 2 operands, | Dan Gohman |
2009-06-19 | Revert 73718. It's breaking 254.gap. | Evan Cheng |
2009-06-19 | make jump threading handle lexically identical compare instructions | Chris Lattner |
2009-06-19 | Teach jump threading to look at comparisons between phi nodes and non-constants. | Nick Lewycky |
2009-06-19 | Improve tail call elim to move loads above readonly calls | Chris Lattner |
2009-06-19 | part of PR4405: disable a contentious optimization for | Chris Lattner |
2009-06-18 | Generalize LSR's OptimizeSMax to handle unsigned max tests as well | Dan Gohman |
2009-06-18 | Revert IRBuilder CC propagation. Fix SimplifyLibCalls instead. | Anton Korobeynikov |
2009-06-18 | Remove the code from IVUsers that attempted to handle | Dan Gohman |
2009-06-18 | Generalize the zext(trunc(t) & C) instcombine to work even with | Dan Gohman |
2009-06-17 | Instcombine zext(trunc(x) & mask) to x&mask, even if the trunc has | Dan Gohman |
2009-06-17 | This fixes a bug introduced in 72661, which can | Dale Johannesen |
2009-06-17 | Add debug message about non-local loads being clobbered. | Torok Edwin |
2009-06-17 | Update comments to use doxygen syntax. | Dan Gohman |
2009-06-17 | PR3439: Correct a silly mistake in the SimplifyDemandedUseBits code for | Eli Friedman |
2009-06-16 | Generalize a few more instcombines to be vector/scalar-independent. | Dan Gohman |
2009-06-16 | Generalize instcombine's isSafeToLoadUnconditionally() function | Chris Lattner |
2009-06-16 | Use Type::getScalarType. | Dan Gohman |
2009-06-15 | Support vector casts in more places, fixing a variety of assertion | Dan Gohman |
2009-06-15 | Make the EnableLoadPRE variable static. | Dan Gohman |
2009-06-14 | Fix old-style type names in comments. | Dan Gohman |
2009-06-14 | Convert several parts of the ScalarEvolution framework to use | Dan Gohman |
2009-06-14 | Add another item to the list of things that indvars does. | Dan Gohman |
2009-06-13 | Teach SCEVExpander's visitAddRecExpr to reuse an existing canonical | Dan Gohman |
2009-06-12 | second half of fix for PR4366: don't zap store to null of | Chris Lattner |
2009-06-12 | Don't do (x - (y - z)) --> (x + (z - y)) on floating-point types, because | Dan Gohman |
2009-06-11 | Fix 4366: store to null in non-default addr space should not be | Chris Lattner |