| Commit message (Expand) | Author | Age | Files | Lines |
* | Add a if-conversion optimization that allows 'true' side of a diamond to be | Evan Cheng | 2011-12-19 | 1 | -5/+91 |
* | Add bundle aware API for querying instruction properties and switch the code | Evan Cheng | 2011-12-07 | 1 | -7/+5 |
* | Added missing &. Fixes <rdar://problem/10393723> | Pete Cooper | 2011-11-04 | 1 | -1/+1 |
* | Fix typo in #include which revealed in the case-sensitive filesystem. | Jakub Staszak | 2011-08-03 | 1 | -1/+1 |
* | Use MachineBranchProbabilityInfo in If-Conversion instead of its own heuristics. | Jakub Staszak | 2011-08-03 | 1 | -29/+10 |
* | Revert patch which broke some IfConversion tests. | Jakub Staszak | 2011-07-22 | 1 | -10/+29 |
* | Fix typo in #include which revealed in the case-sensitive filesystem. | Jakub Staszak | 2011-07-22 | 1 | -1/+1 |
* | Use MachineBranchProbabilityInfo instead of MachineLoopInfo in IfConversion. | Jakub Staszak | 2011-07-21 | 1 | -29/+10 |
* | Use BranchProbability instead of floating points in IfConverter. | Jakub Staszak | 2011-07-10 | 1 | -30/+29 |
* | Don't analyze block if it's not considered for ifcvt anymore. | Jakub Staszak | 2011-07-10 | 1 | -2/+3 |
* | Sink SubtargetFeature and TargetInstrItineraries (renamed MCInstrItineraries)... | Evan Cheng | 2011-06-29 | 1 | -1/+1 |
* | - Rename TargetInstrDesc, TargetOperandInfo to MCInstrDesc and MCOperandInfo and | Evan Cheng | 2011-06-28 | 1 | -5/+5 |
* | Re-commit 131172 with fix. MachineInstr identity checks should check dead | Evan Cheng | 2011-05-12 | 1 | -2/+2 |
* | Revert 131172 as it is causing clang to miscompile itself. I will try | Rafael Espindola | 2011-05-11 | 1 | -2/+2 |
* | Add a late optimization to BranchFolding that hoist common instruction sequences | Evan Cheng | 2011-05-11 | 1 | -2/+2 |
* | If converter was being too cute. It look for root BBs (which don't have | Evan Cheng | 2011-04-27 | 1 | -18/+3 |
* | Prune includes. | Benjamin Kramer | 2010-11-06 | 1 | -0/+1 |
* | Two sets of changes. Sorry they are intermingled. | Evan Cheng | 2010-11-03 | 1 | -23/+36 |
* | When the "true" and "false" blocks of a diamond if-conversion are the same, | Bob Wilson | 2010-10-26 | 1 | -52/+46 |
* | Change if-conversion to keep track of the extra cost due to microcoded | Bob Wilson | 2010-10-26 | 1 | -11/+25 |
* | Get rid of static constructors for pass registration. Instead, every pass ex... | Owen Anderson | 2010-10-19 | 1 | -1/+3 |
* | Begin adding static dependence information to passes, which will allow us to | Owen Anderson | 2010-10-12 | 1 | -1/+3 |
* | Now with fewer extraneous semicolons! | Owen Anderson | 2010-10-07 | 1 | -1/+1 |
* | Thread the determination of branch prediction hit rates back through the if-c... | Owen Anderson | 2010-10-01 | 1 | -23/+39 |
* | Silence msvc warnings. | Benjamin Kramer | 2010-09-29 | 1 | -6/+6 |
* | Give the if-converter access to MachineLoopInfo, and use it to generate plaus... | Owen Anderson | 2010-09-28 | 1 | -16/+50 |
* | Part one of switching to using a more sane heuristic for determining if-conve... | Owen Anderson | 2010-09-28 | 1 | -4/+4 |
* | Teach if-converter to be more careful with predicating instructions that would | Evan Cheng | 2010-09-10 | 1 | -4/+9 |
* | Reapply r110396, with fixes to appease the Linux buildbot gods. | Owen Anderson | 2010-08-06 | 1 | -1/+1 |
* | Revert r110396 to fix buildbots. | Owen Anderson | 2010-08-06 | 1 | -1/+1 |
* | Don't use PassInfo* as a type identifier for passes. Instead, use the addres... | Owen Anderson | 2010-08-05 | 1 | -1/+1 |
* | Fix batch of converting RegisterPass<> to INTIALIZE_PASS(). | Owen Anderson | 2010-07-21 | 1 | -2/+1 |
* | Reapply my if-conversion cleanup from svn r106939 with fixes. | Bob Wilson | 2010-06-29 | 1 | -34/+45 |
* | new, no longer brain-dead, r106907 | Jim Grosbach | 2010-06-28 | 1 | -2/+9 |
* | Revert r106907, "make sure to handle dbg_value instructions in the middle of the | Daniel Dunbar | 2010-06-28 | 1 | -10/+2 |
* | Revert my if-conversion cleanup since it caused a bunch of nightly test | Bob Wilson | 2010-06-26 | 1 | -37/+33 |
* | Clean up some problems with extra CFG edges being introduced during | Bob Wilson | 2010-06-26 | 1 | -33/+37 |
* | make sure to handle dbg_value instructions in the middle of the block, not | Jim Grosbach | 2010-06-25 | 1 | -2/+10 |
* | Change if-conversion block size limit checks to add some flexibility. | Evan Cheng | 2010-06-25 | 1 | -12/+18 |
* | 80 column and typo fix | Jim Grosbach | 2010-06-25 | 1 | -2/+2 |
* | Use pre-increment instead of post-increment when the result is not used. | Dan Gohman | 2010-06-22 | 1 | -9/+9 |
* | Tidy. | Bob Wilson | 2010-06-19 | 1 | -5/+5 |
* | Allow ARM if-converter to be run after post allocation scheduling. | Evan Cheng | 2010-06-18 | 1 | -0/+7 |
* | Fix an inverted condition. | Evan Cheng | 2010-06-18 | 1 | -1/+1 |
* | Teach iff-converter to properly count # of dups. It was not skipping over dbg... | Evan Cheng | 2010-06-18 | 1 | -1/+27 |
* | Fix PR7372: Conditional branches (at least on ARM) are treated as predicated, | Bob Wilson | 2010-06-18 | 1 | -3/+2 |
* | Add a DebugLoc parameter to TargetInstrInfo::InsertBranch(). This | Stuart Hastings | 2010-06-17 | 1 | -3/+6 |
* | Make post-ra scheduling, anti-dep breaking, and register scavenger (conservat... | Evan Cheng | 2010-06-16 | 1 | -13/+115 |
* | Fix 80col violations, remove trailing whitespace, and clarify a comment. | Bob Wilson | 2010-06-15 | 1 | -14/+15 |
* | IfConversion's AnalyzeBlocks method always returns false; clean it up. | Bob Wilson | 2010-06-15 | 1 | -9/+5 |