| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix a corner case in updating LoopInfo after fully unrolling an outer loop. | Andrew Trick | 2011-11-18 | 1 | -11/+9 |
* | Fix SCEV overly optimistic back edge taken count for multi-exit loops. | Andrew Trick | 2011-11-16 | 1 | -9/+22 |
* | Missed some users of Value::getNameStr. | Benjamin Kramer | 2011-11-15 | 1 | -4/+2 |
* | Remove all remaining uses of Value::getNameStr(). | Benjamin Kramer | 2011-11-15 | 8 | -27/+27 |
* | Twinify GraphWriter a little bit. | Benjamin Kramer | 2011-11-15 | 1 | -2/+2 |
* | Refactor capture tracking (which already had a couple flags for whether returns | Nick Lewycky | 2011-11-14 | 2 | -117/+110 |
* | Don't try to loop on iterators that are potentially invalidated inside the lo... | Nick Lewycky | 2011-11-12 | 1 | -0/+18 |
* | Fix typo in comment. | Nick Lewycky | 2011-11-09 | 1 | -1/+1 |
* | Don't forget to check FlagNW when determining whether an AddRecExpr will wrap | Nick Lewycky | 2011-11-09 | 1 | -2/+3 |
* | Fix code to match comment. Fixes PR11340, a regression from r143209. | Eli Friedman | 2011-11-08 | 1 | -1/+1 |
* | Teach instsimplify to simplify calls to undef. | Dan Gohman | 2011-11-04 | 1 | -0/+11 |
* | build: Add initial cut at LLVMBuild.txt files. | Daniel Dunbar | 2011-11-03 | 2 | -0/+47 |
* | Reapply commit 143214 with a fix: m_ICmp doesn't match conditions | Duncan Sands | 2011-10-30 | 1 | -29/+65 |
* | Revert r143214; it's breaking a bunch of stuff. | Eli Friedman | 2011-10-29 | 1 | -45/+29 |
* | The expression icmp eq (select (icmp eq x, 0), 1, x), 0 folds to false. | Duncan Sands | 2011-10-28 | 1 | -29/+45 |
* | A shift of a power of two is a power of two or zero. | Duncan Sands | 2011-10-28 | 1 | -1/+6 |
* | Fold icmp ugt (udiv X, Y), X to false. Spotted by my super-optimizer | Duncan Sands | 2011-10-28 | 1 | -0/+12 |
* | Reapply commit 143028 with a fix: the problem was casting a ConstantExpr Mul | Duncan Sands | 2011-10-27 | 2 | -9/+52 |
* | Revert Duncan's r143028 expression folding which appears to be the culprit | Bob Wilson | 2011-10-27 | 1 | -46/+4 |
* | The maximum power of 2 dividing a power of 2 is itself. This occurs | Duncan Sands | 2011-10-26 | 2 | -10/+36 |
* | My super-optimizer noticed that we weren't folding this expression to | Duncan Sands | 2011-10-26 | 1 | -4/+46 |
* | Restore commits 142790 and 142843 - they weren't breaking the build | Duncan Sands | 2011-10-25 | 1 | -26/+46 |
* | Fix the API usage in loop probability heuristics. It was incorrectly | Chandler Carruth | 2011-10-25 | 1 | -15/+8 |
* | Speculatively revert commits 142790 and 142843 to see if it fixes | Duncan Sands | 2011-10-25 | 1 | -46/+26 |
* | Now that we look at all the header PHIs, we need to consider all the header PHIs | Nick Lewycky | 2011-10-24 | 1 | -6/+14 |
* | Remove return heuristics from the static branch probabilities, and | Chandler Carruth | 2011-10-24 | 1 | -73/+76 |
* | Reapply r142781 with fix. Original message: | Nick Lewycky | 2011-10-24 | 1 | -20/+32 |
* | PHI nodes not in the loop header aren't part of the loop iteration initial | Nick Lewycky | 2011-10-24 | 1 | -1/+1 |
* | Speculatively revert r142781. Bots are showing | Nick Lewycky | 2011-10-24 | 1 | -32/+20 |
* | Simplify the design of BranchProbabilityInfo by collapsing it into | Chandler Carruth | 2011-10-24 | 1 | -135/+90 |
* | Enhance SCEV's brute force loop analysis to handle multiple PHI nodes in the | Nick Lewycky | 2011-10-23 | 1 | -20/+32 |
* | Tidy up a loop to be more idiomatic for LLVM's codebase, and remove some | Chandler Carruth | 2011-10-23 | 1 | -18/+9 |
* | Teach the BranchProbabilityInfo pass to print its results, and use that | Chandler Carruth | 2011-10-23 | 1 | -2/+20 |
* | Add compare operators to BranchProbability and use it to determine if an edge... | Benjamin Kramer | 2011-10-23 | 1 | -8/+4 |
* | Make SCEV's brute force analysis stronger in two ways. Firstly, we should be | Nick Lewycky | 2011-10-22 | 1 | -26/+145 |
* | Extend the floating point heuristic to consider NaN checks unlikely. | Benjamin Kramer | 2011-10-21 | 1 | -4/+17 |
* | BranchProbabilityInfo: floating point equality is unlikely. | Benjamin Kramer | 2011-10-21 | 1 | -2/+34 |
* | A FIXME about block addresses and indirectbr. | Eli Friedman | 2011-10-20 | 1 | -0/+6 |
* | Simplify; no intended functional change. | Eli Friedman | 2011-10-20 | 1 | -10/+3 |
* | "@string = constant i8 0" is a value i8* string of length zero. Analyze that | Nick Lewycky | 2011-10-20 | 1 | -6/+13 |
* | Generalize the reading of probability metadata to work for both branches | Chandler Carruth | 2011-10-19 | 1 | -16/+24 |
* | Teach the BranchProbabilityInfo analysis pass to read any metadata | Chandler Carruth | 2011-10-19 | 1 | -0/+38 |
* | Add pass printing support to BlockFrequencyInfo pass. The implementation | Chandler Carruth | 2011-10-19 | 1 | -0/+4 |
* | Update DebugInfoFinder to match recent debug info encoding changes. | Devang Patel | 2011-10-17 | 1 | -3/+24 |
* | Correct over-zealous removal of hack. | Bill Wendling | 2011-10-17 | 1 | -1/+1 |
* | Now that we have the ReturnsTwice function attribute, this method is | Bill Wendling | 2011-10-17 | 1 | -6/+5 |
* | Delete a dead member. Dunno if this was ever used, but the current code | Chandler Carruth | 2011-10-16 | 1 | -6/+3 |
* | Fix SCEVExpander assert during LSR: "argument of incompatible type". | Andrew Trick | 2011-10-15 | 1 | -6/+5 |
* | An instruction's operands aren't necessarily instructions or constants. They | Nick Lewycky | 2011-10-14 | 1 | -1/+2 |
* | Enhance the memdep interface so that users can tell the difference between a ... | Eli Friedman | 2011-10-13 | 2 | -35/+42 |