summaryrefslogtreecommitdiff
path: root/lib/CodeGen/BranchFolding.cpp
Commit message (Expand)AuthorAge
...
* Update comment.Evan Cheng2011-05-12
* Re-enable branchfolding common code hoisting optimization. Fixed a liveness t...Evan Cheng2011-05-12
* Temporarily disable the transformation. It's breaking 186.crafty in some conf...Evan Cheng2011-05-12
* Re-commit 131172 with fix. MachineInstr identity checks should check deadEvan Cheng2011-05-12
* Revert 131172 as it is causing clang to miscompile itself. I will tryRafael Espindola2011-05-11
* Add a late optimization to BranchFolding that hoist common instruction sequencesEvan Cheng2011-05-11
* Branch folding is folding a landing pad into a regular BB.Bill Wendling2011-04-22
* Add more debugging output.Evan Cheng2011-02-21
* Reapply r110396, with fixes to appease the Linux buildbot gods.Owen Anderson2010-08-06
* Revert r110396 to fix buildbots.Owen Anderson2010-08-06
* Don't use PassInfo* as a type identifier for passes. Instead, use the addres...Owen Anderson2010-08-05
* Tail merging pass shall not break up IT blocks. rdar://8115404Evan Cheng2010-06-22
* Allow ARM if-converter to be run after post allocation scheduling.Evan Cheng2010-06-18
* Add a DebugLoc parameter to TargetInstrInfo::InsertBranch(). ThisStuart Hastings2010-06-17
* Fix a bug which prevented tail merging of return instructions inDan Gohman2010-05-03
* Teach AnalyzeBranch, RemoveBranch and the branchDale Johannesen2010-04-02
* Stop trying to merge identical jump tables. This had been inadvertentlyBob Wilson2010-03-19
* Remove a check that can no longer be true, after r84803.Bob Wilson2010-03-16
* eliminate InvalidateLabel and LabelIDList from MMI and replaceChris Lattner2010-03-14
* Fix another place where DEBUG_VALUE affected codegen.Dale Johannesen2010-03-10
* This survived a bootstrap, so let's try 98104 again.Dale Johannesen2010-03-10
* Speculatively revert 98104; could be what's causing crashesDale Johannesen2010-03-10
* Ever more complicated DEBUG_VALUE fixes for branch folding.Dale Johannesen2010-03-09
* Fix dbg value handling in tail merging.Dale Johannesen2010-03-08
* Fix some more places where dbg_value affected codegen.Dale Johannesen2010-03-05
* move target-independent opcodes out of TargetInstrInfoChris Lattner2010-02-09
* Rearrange handling of jump tables. Highlights:Chris Lattner2010-01-25
* Change errs() to dbgs().David Greene2009-12-24
* Initialize uninitialized variables.Bill Wendling2009-12-16
* Initialize uninitialized variables.Bill Wendling2009-12-16
* Revert these. They may have been causing 483_xalancbmk to fail:Bill Wendling2009-12-15
* Don't try to move a MBB into the fall-through position if it's a landing pad orBill Wendling2009-12-11
* Remove the target hook TargetInstrInfo::BlockHasNoFallThrough in favor ofDan Gohman2009-12-05
* improve portability to avoid conflicting with std::next in c++'0x.Chris Lattner2009-12-03
* Split tail duplication into a separate pass. This is needed to avoidBob Wilson2009-11-26
* Refactor target hook for tail duplication as requested by Chris.Bob Wilson2009-11-24
* There should be no need to keep renumbering blocks during tail duplication.Bob Wilson2009-11-18
* Tail duplication still needs to iterate. Duplicating new instructions ontoBob Wilson2009-11-18
* Add another statistic to measure code size due to tail duplication.Bob Wilson2009-11-18
* Add statistics for tail duplication.Bob Wilson2009-11-18
* Add a target hook to allow changing the tail duplication limit based on theBob Wilson2009-11-18
* Remove a special case for tail merging that seems to be both broken andBob Wilson2009-11-17
* Set MadeChange instead of MadeChangeThisIteration.Dan Gohman2009-11-17
* Update a comment, now that tail duplication happens after other branchBob Wilson2009-11-17
* Perform tail duplication only once, after tail merging is complete.Bob Wilson2009-11-17
* Fix a comment.Bob Wilson2009-11-16
* Fix some comments.Bob Wilson2009-11-16
* Whitespace: be consistent with pointer syntax.Bob Wilson2009-11-16
* Clean up whitespace.Bob Wilson2009-11-16
* When optimizing for size, don't tail-merge unless it's likely to be aDan Gohman2009-11-13