summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix test/Transforms/GVNPRE/2007-06-12-PhiTranslate.llOwen Anderson2007-06-121-38/+39
| | | | llvm-svn: 37564
* Add a test where phi translation was producing a null result.Owen Anderson2007-06-121-0/+19
| | | | llvm-svn: 37563
* isReachableFromEntry() is not suitable for post dominator.Devang Patel2007-06-121-0/+2
| | | | llvm-svn: 37562
* Remove redundant check.Devang Patel2007-06-121-7/+3
| | | | llvm-svn: 37561
* Protect updateDFSNumbers()Devang Patel2007-06-121-2/+3
| | | | llvm-svn: 37560
* Check A dominates B and vise versa first while searching for nearestDevang Patel2007-06-121-8/+4
| | | | | | common dominator. llvm-svn: 37559
* one final bugfixChris Lattner2007-06-121-1/+1
| | | | llvm-svn: 37558
* modernize exampleChris Lattner2007-06-121-5/+5
| | | | llvm-svn: 37557
* Refactor some code, and fix test/Transforms/GVNPRE/2007-06-12-NoExit.ll by ↵Owen Anderson2007-06-121-47/+69
| | | | | | | | being more careful when using post-dominator information. llvm-svn: 37556
* Testcase where GVNPRE crashes on functions with no exit nodes.Owen Anderson2007-06-121-0/+9
| | | | llvm-svn: 37555
* Sink CmpInst's to their uses to reduce register pressure.Dale Johannesen2007-06-121-3/+61
| | | | llvm-svn: 37554
* Make DFS number manipulation methods private.Devang Patel2007-06-121-1/+5
| | | | llvm-svn: 37553
* Make the run line for this test correct. Thanks to Chris for spotting it.Owen Anderson2007-06-121-2/+2
| | | | llvm-svn: 37552
* Break DominatorTree from ETNode.Devang Patel2007-06-124-151/+12
| | | | | | Remove unused PostETForest. llvm-svn: 37551
* Fix a few more bugs, including an instance of walking in reverse topological ↵Owen Anderson2007-06-121-31/+49
| | | | | | | | rather than topological order. This fixes a testcase extracted from llvm-test. llvm-svn: 37550
* Add a GVN-PRE basic regression test.Owen Anderson2007-06-122-0/+41
| | | | llvm-svn: 37549
* Use SmallPtrSet instaed of std::setDevang Patel2007-06-121-2/+1
| | | | llvm-svn: 37548
* Check immediate dominators first while searching for nearset common dominator.Devang Patel2007-06-121-6/+18
| | | | | | Fix 80 col violations. llvm-svn: 37547
* Maintain DFS number in DomTreeNode itself.Devang Patel2007-06-122-6/+54
| | | | | | This means now ETNodes are not useful anymore. llvm-svn: 37546
* Add and use DominatorTreeBase::findNearestCommonDominator().Devang Patel2007-06-113-1/+50
| | | | llvm-svn: 37545
* Fix a typo in bswap lowering.Lauro Ramos Venancio2007-06-111-1/+1
| | | | llvm-svn: 37544
* Restructure code to reduce ifcvt compile time cost.Evan Cheng2007-06-111-155/+193
| | | | llvm-svn: 37543
* Simplify.Devang Patel2007-06-111-4/+2
| | | | llvm-svn: 37542
* simplifyDevang Patel2007-06-111-4/+3
| | | | llvm-svn: 37541
* Simplify. Dominator Tree is required so always available.Devang Patel2007-06-111-31/+26
| | | | llvm-svn: 37540
* Handle functions with multiple exit blocks properly.Owen Anderson2007-06-111-0/+6
| | | | llvm-svn: 37539
* Use DominatorTree instead of ETForest.Devang Patel2007-06-111-16/+16
| | | | llvm-svn: 37538
* Fix the build.Reid Spencer2007-06-101-1/+2
| | | | llvm-svn: 37537
* Perform PRE of comparison operators.Owen Anderson2007-06-091-24/+155
| | | | llvm-svn: 37536
* rename C files to end with .cChris Lattner2007-06-093-0/+0
| | | | llvm-svn: 37535
* fix x86-64 mmx calling convention for real, which passes in integer gprs.Chris Lattner2007-06-091-3/+9
| | | | llvm-svn: 37534
* fix mmx handling bugChris Lattner2007-06-091-1/+4
| | | | llvm-svn: 37533
* Fix edge case.Nick Lewycky2007-06-091-2/+2
| | | | llvm-svn: 37532
* Don't change CFG during analysis stage. Do so during ifcvt and invalidate ↵Evan Cheng2007-06-091-56/+106
| | | | | | predecessors accordingly. llvm-svn: 37531
* Collect statistics from GVN-PRE.Owen Anderson2007-06-081-0/+9
| | | | llvm-svn: 37530
* Carefully remove extraneous CFG edges after each ifcvt.Evan Cheng2007-06-081-24/+51
| | | | llvm-svn: 37529
* Add a utility routine to check for unpredicated terminator instruction.Evan Cheng2007-06-086-13/+24
| | | | llvm-svn: 37528
* Define AsmTransCBE for ARM.Lauro Ramos Venancio2007-06-081-0/+25
| | | | llvm-svn: 37527
* Fix typo in a comment.Owen Anderson2007-06-081-1/+1
| | | | llvm-svn: 37526
* Fix a bug that was causing the elimination phase not to replace values when ↵Owen Anderson2007-06-081-13/+56
| | | | | | | | | | it should be. With this patch, GVN-PRE now correctly optimizes the example from the thesis. Many thanks to Daniel Berlin for helping me find errors in this. llvm-svn: 37525
* Correct transfer predicate information.Evan Cheng2007-06-081-8/+6
| | | | llvm-svn: 37524
* Hidden options to help debugging ifcvt issues.Evan Cheng2007-06-081-2/+32
| | | | llvm-svn: 37523
* Fix spelling.Devang Patel2007-06-081-1/+1
| | | | llvm-svn: 37522
* Add entry to CREDITS.David Greene2007-06-081-0/+5
| | | | llvm-svn: 37521
* Factor live variable analysis so it does not do register coalescingDavid Greene2007-06-086-1169/+1337
| | | | | | | | | | simultaneously. Move that pass to SimpleRegisterCoalescing. This makes it easier to implement alternative register allocation and coalescing strategies while maintaining reuse of the existing live interval analysis. llvm-svn: 37520
* wording fix noticed by Ivan NovickChris Lattner2007-06-081-1/+1
| | | | llvm-svn: 37519
* Allow more cmp / bcc to be predicated; clean up triangle ifcvt checking code.Evan Cheng2007-06-081-144/+135
| | | | llvm-svn: 37518
* Fix ARM condition code subsumission check.Evan Cheng2007-06-081-3/+3
| | | | llvm-svn: 37517
* tBcc is not a barrier.Evan Cheng2007-06-081-1/+1
| | | | llvm-svn: 37516
* Use more realistically sized vectors. Reserve capacity if we know in advanceDuncan Sands2007-06-081-4/+7
| | | | | | how much will be used. llvm-svn: 37515
OpenPOWER on IntegriCloud