| Commit message (Expand) | Author | Age | Files | Lines |
| * | Use DominatorTree instead of ETForest. | Devang Patel | 2007-06-07 | 1 | -8/+7 |
| * | Use DominatorTree instead of ETForest. | Devang Patel | 2007-06-07 | 1 | -23/+25 |
| * | Use DominatorTree instead of ETForest. | Devang Patel | 2007-06-07 | 1 | -3/+1 |
| * | Use DominatorTree instead of ETForest. | Devang Patel | 2007-06-07 | 1 | -3/+3 |
| * | Maintain ETNode as part of DomTreeNode. | Devang Patel | 2007-06-07 | 2 | -2/+2 |
| * | Formating fixes. | Tanya Lattner | 2007-06-07 | 1 | -4/+4 |
| * | Instruct the inliner to obey the noinline attribute. Add test case. | Tanya Lattner | 2007-06-06 | 1 | -1/+43 |
| * | simplify this code and fix PR1493, now that llvm-gcc3 is dead. | Chris Lattner | 2007-06-06 | 1 | -17/+2 |
| * | Fix PR1499. | Lauro Ramos Venancio | 2007-06-06 | 1 | -0/+4 |
| * | Inform ScalarEvolutions that we're deleting Values. | Nick Lewycky | 2007-06-06 | 1 | -0/+2 |
| * | Add simple full redundancy elimination. | Owen Anderson | 2007-06-06 | 1 | -12/+38 |
| * | Fix PR1495 and CodeGen/X86/2007-06-05-LSR-Dominator.ll | Chris Lattner | 2007-06-06 | 1 | -0/+6 |
| * | Avoid non-trivial loop unswitching while optimizing for size. | Devang Patel | 2007-06-06 | 1 | -3/+12 |
| * | Fix a misunderstanding of the algorithm. Really, we should be tracking values | Owen Anderson | 2007-06-05 | 1 | -14/+17 |
| * | Don't leak memory. | Owen Anderson | 2007-06-05 | 1 | -3/+6 |
| * | Fix a small bug, some 80 cols violations, and add some more debugging output. | Owen Anderson | 2007-06-05 | 1 | -2/+8 |
| * | Allow insertelement, extractelement, and shufflevector to be hoisted/sunk | Dan Gohman | 2007-06-05 | 1 | -1/+3 |
| * | Patches by Chuck Rose to unbreak V Studio builds. | Bill Wendling | 2007-06-04 | 1 | -0/+15 |
| * | s/ETNode::getChildren/ETNode::getETNodeChildren/g | Devang Patel | 2007-06-04 | 1 | -1/+1 |
| * | Don't use std::set_difference when the two sets are sorted differently. Compute | Owen Anderson | 2007-06-04 | 1 | -7/+6 |
| * | Fix a bunch of small bugs, and improve the debugging output significantly. | Owen Anderson | 2007-06-04 | 1 | -26/+44 |
| * | When rebuilding constant structs, make sure to honor the isPacked bit. | Chris Lattner | 2007-06-04 | 1 | -1/+1 |
| * | Make phi_translate correct. | Owen Anderson | 2007-06-04 | 1 | -47/+50 |
| * | s/DominatorTree::createNewNode/DominatorTree::addNewBlock/g | Devang Patel | 2007-06-04 | 3 | -4/+3 |
| * | Add basic block level interface to change immediate dominator | Devang Patel | 2007-06-04 | 1 | -2/+2 |
| * | s/llvm::DominatorTreeBase::DomTreeNode/llvm::DomTreeNode/g | Devang Patel | 2007-06-04 | 8 | -41/+41 |
| * | Don't use the custom comparator where it's not necessary. | Owen Anderson | 2007-06-03 | 1 | -13/+22 |
| * | s/DominatorTreeBase::Node/DominatorTreeBase:DomTreeNode/g | Devang Patel | 2007-06-03 | 8 | -41/+41 |
| * | Remove an unused method. | Owen Anderson | 2007-06-03 | 1 | -5/+0 |
| * | There's no need to have an Expression class... Value works just as well! Thi... | Owen Anderson | 2007-06-03 | 1 | -285/+166 |
| * | Insert new instructions in AliasSet. | Devang Patel | 2007-06-01 | 1 | -1/+5 |
| * | clean() needs to process things in topological order. | Owen Anderson | 2007-06-01 | 1 | -26/+19 |
| * | Fix Expression comparison, which in turn fixes a value numbering error. | Owen Anderson | 2007-06-01 | 1 | -12/+11 |
| * | Add a topological sort function. | Owen Anderson | 2007-05-31 | 1 | -2/+56 |
| * | Attempt to fix up phi_translate. | Owen Anderson | 2007-05-31 | 1 | -11/+61 |
| * | Fix typo. | Devang Patel | 2007-05-30 | 1 | -1/+1 |
| * | Fix Transforms/ScalarRepl/2007-05-29-MemcpyPreserve.ll and the second | Chris Lattner | 2007-05-30 | 1 | -48/+148 |
| * | Fix a typo | Owen Anderson | 2007-05-29 | 1 | -1/+1 |
| * | Re-fix a bug, where I was now being too aggressive. | Owen Anderson | 2007-05-29 | 1 | -1/+5 |
| * | Use proper debugging facilities so other people don't have to look at my comm... | Owen Anderson | 2007-05-29 | 1 | -14/+18 |
| * | Comment debug code out that I accidentally uncommented last time. | Owen Anderson | 2007-05-29 | 1 | -2/+2 |
| * | Add a place where I missed using the maximal set. Note that using the maximal | Owen Anderson | 2007-05-29 | 1 | -3/+3 |
| * | Very first part of a GVN-PRE implementation. It currently performs a bunch o... | Owen Anderson | 2007-05-29 | 1 | -0/+459 |
| * | Fix PR1446 by not scalarrepl'ing giant structures. | Chris Lattner | 2007-05-24 | 1 | -1/+5 |
| * | Minor comment cleanups. | Dan Gohman | 2007-05-24 | 1 | -1/+1 |
| * | fix a miscompilation when passing a float through varargs | Chris Lattner | 2007-05-23 | 1 | -2/+1 |
| * | Fix Transforms/InstCombine/2007-05-18-CastFoldBug.ll, a bug that devastates | Chris Lattner | 2007-05-19 | 1 | -0/+8 |
| * | Handle negative strides much more optimally. This compiles X86/lsr-negative-... | Chris Lattner | 2007-05-19 | 1 | -3/+26 |
| * | Fix PR1431 | Devang Patel | 2007-05-17 | 1 | -1/+1 |
| * | selects can also reach here | Chris Lattner | 2007-05-15 | 1 | -2/+3 |