aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Utils
Commit message (Expand)AuthorAgeFilesLines
* Add special check to avoid isLoop call. Simple, but doesn't seem to speedChris Lattner2006-08-021-2/+2
* Replace the SSA update code in LCSSA with a bottom-up approach instead of a topChris Lattner2006-08-021-125/+95
* silence warnings in a release buildChris Lattner2006-07-181-1/+1
* eliminate some ugly code, using ConstantExpr::getWithOperands instead.Chris Lattner2006-07-141-35/+4
* Handle instructions in the map, but that map to a null pointer.Chris Lattner2006-07-121-1/+2
* In addition to deleting calls, the inliner can constant fold them as well.Chris Lattner2006-07-121-2/+4
* Change the callgraph representation to store the callsite along with theChris Lattner2006-07-121-37/+46
* Fix typo in the comment.Owen Anderson2006-07-091-1/+1
* Add a fix for an issue where LCSSA would fail to insert undef's in some cornerOwen Anderson2006-07-091-14/+21
* Use hidden visibility to make symbols in an anonymous namespace getChris Lattner2006-06-284-4/+8
* Shrink libllvmgcc.dylib by another 23KChris Lattner2006-06-283-3/+6
* Use the PotDoms map to memoize 'dominating value' lookup. With this patch,Chris Lattner2006-06-141-17/+14
* Fix another instance where PHI nodes need special treatment.Owen Anderson2006-06-131-0/+6
* Fix a bug that was causing major slowdowns in povray. This was due to LCSSAOwen Anderson2006-06-131-2/+7
* Fix an infinite loop on Transforms/SimplifyCFG/2006-06-12-InfLoop.llChris Lattner2006-06-121-1/+10
* Fix for 2006-06-26-MultipleExitsSingleBlock.Owen Anderson2006-06-121-4/+7
* Re-commit the safe parts of my 6/9 patch. Still working on fixing the unsafe...Owen Anderson2006-06-111-0/+2
* Back out Owen's 6/9 changes. They broke MultiSource/Benchmarks/Prolangs-C/bis...Evan Cheng2006-06-111-3/+1
* Make Loop able to verify that it is in LCSSA-form, and have the LCSSA pass as...Owen Anderson2006-06-091-1/+3
* Update some comments, and expose LCSSAID in preparation for having other passesOwen Anderson2006-06-081-1/+8
* Fix some formatting, and use inLoop() when appropriate.Owen Anderson2006-06-061-3/+3
* Stop a memory leak, and update some comments.Owen Anderson2006-06-061-10/+10
* Some more clean-up, and squash an IDF-Phi related bug.Owen Anderson2006-06-041-16/+13
* Various clean-ups suggested by Chris.Owen Anderson2006-06-041-30/+32
* Fix a bug in Phi-noded insertion. Also, update some comments to reflect what'sOwen Anderson2006-06-031-12/+21
* Force anything that #includes llvm/Transforms/Utils/UnifyFunctionExitNodes.hChris Lattner2006-06-021-0/+2
* Remove dead #includeChris Lattner2006-06-011-2/+0
* Make the "pruning cloner" smarter. As it propagates constants through theChris Lattner2006-06-011-23/+146
* Remove a FIXME that was fixed with my last patch.Owen Anderson2006-06-011-2/+0
* More cleanups. Also, add a special case for updating PHI nodes, andOwen Anderson2006-06-011-21/+33
* Extract a huge loop into a helper method. Fix a few iterator-invalidation bugs.Owen Anderson2006-05-311-86/+113
* Add Use replacement. Assuming there is nothing horribly wrong with this, LCSSAOwen Anderson2006-05-291-2/+35
* Major think-o. Iterate over all live out-of-loop values, and perform theOwen Anderson2006-05-281-36/+36
* Make LCSSA insert proper Phi nodes throughout the rest of the CFG by computingOwen Anderson2006-05-271-8/+51
* Fix some regression from the inliner patch I committed last night. This fixesChris Lattner2006-05-271-1/+1
* Switch the inliner over to using CloneAndPruneFunctionInto. This effectivelyChris Lattner2006-05-271-5/+9
* Implement a new method, CloneAndPruneFunctionInto, as documented.Chris Lattner2006-05-272-3/+189
* Refactor some code to expose an interface to constant fold and instruction gi...Chris Lattner2006-05-271-35/+49
* A few small clean-ups, and the addition of an LCSSA statistic.Owen Anderson2006-05-271-2/+8
* Fix a copy-and-paste-o that would break some compilers.Owen Anderson2006-05-261-1/+1
* Clean up and refactor LCSSA a bunch. It should also run faster now, thoughOwen Anderson2006-05-261-66/+50
* Skeletal LCSSA pass. This is currently non-functional. Expect functionalityOwen Anderson2006-05-261-0/+159
* Revert a patch that is unsafe, due to out of range array accesses in innerChris Lattner2006-05-251-2/+2
* Patch for a new instcombine xform, patch contributed by Nick Lewycky!Chris Lattner2006-05-241-2/+4
* Fix a doxygen problem and break lines at 80 columnsReid Spencer2006-05-191-3/+3
* Declare that lowerinvoke doesn't interact with other lowering passes.Chris Lattner2006-05-175-7/+22
* Add a CloneModule call that exposes the mapping of values from the old moduleChris Lattner2006-05-171-4/+8
* remove some dead code identified by coverityChris Lattner2006-05-141-1/+1
* remove dead variablesChris Lattner2006-05-141-2/+0
* Patch to make some xforms preserve each other. Patch contributed byChris Lattner2006-05-095-2/+32