summaryrefslogtreecommitdiff
path: root/lib/CodeGen/MachineBlockPlacement.cpp
Commit message (Expand)AuthorAge
* Fix a defect in code-layout pass, improving Benchmarks/Olden/em3d/em3d by abo...Shuxin Yang2013-06-04
* Don't disable block layout when forcing block alignment.Nadav Rotem2013-04-12
* Add a flag to align all basic blocks in the function.Nadav Rotem2013-04-12
* Fix a typoNadav Rotem2013-03-29
* Split TargetLowering into a CodeGen and a SelectionDAG part.Benjamin Kramer2013-01-11
* Remove the Function::getFnAttributes method in favor of using the AttributeSetBill Wendling2012-12-30
* Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl...Bill Wendling2012-12-19
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* Create enums for the different attributes.Bill Wendling2012-10-09
* Remove the `hasFnAttr' method from Function.Bill Wendling2012-09-26
* Remove silly dead store. Patch by Ettl Martin.Duncan Sands2012-09-14
* Add a much more conservative strategy for aligning branch targets.Chandler Carruth2012-08-07
* Reverse order of the two branches at end of a basic block if it is profitable.Manman Ren2012-07-31
* Update a bunch of stale comments that dated from when this folled theChandler Carruth2012-06-26
* Fix typos found by http://github.com/lyda/misspell-checkBenjamin Kramer2012-06-02
* Add a somewhat hacky heuristic to do something different from whole-loopChandler Carruth2012-04-16
* Tweak the loop rotation logic to check whether the loop is naturallyChandler Carruth2012-04-16
* Rewrite how machine block placement handles loop rotation.Chandler Carruth2012-04-16
* Make a somewhat subtle change in the logic of block placement. SometimesChandler Carruth2012-04-10
* Remove an over zealous assert. The assert was trying to catch placesChandler Carruth2012-04-08
* Add a debug-only 'dump' method to the BlockChain structure to easeChandler Carruth2012-04-08
* Codegen pass definition cleanup. No functionality.Andrew Trick2012-02-08
* Revert patch from 147090. There is not point to make code less readable if weJakub Staszak2011-12-21
* - Change a few operator[] to lookup which is cheaper.Jakub Staszak2011-12-21
* Remove unneeded semicolon.Jakub Staszak2011-12-07
* Remove unneeded type.Jakub Staszak2011-12-07
* - Remove unneeded #includes.Jakub Staszak2011-12-06
* Prevent rotating the blocks of a loop (and thus getting a backedge to beChandler Carruth2011-11-27
* Take two on rotating the block ordering of loops. My previous attemptChandler Carruth2011-11-27
* Fix an impressive type-o / spell-o Duncan noticed.Chandler Carruth2011-11-27
* Rework a bit of the implementation of loop block rotation to not rely soChandler Carruth2011-11-27
* Introduce a loop block rotation optimization to the new block placementChandler Carruth2011-11-27
* Fix a silly use-after-free issue. A much earlier version of this codeChandler Carruth2011-11-24
* When adding blocks to the list of those which no longer have any CFGChandler Carruth2011-11-24
* Relax an invariant that block placement was trying to assert a bitChandler Carruth2011-11-23
* Fix a crash in block placement due to an inner loop that happened to beChandler Carruth2011-11-23
* The logic for breaking the CFG in the presence of hot successors didn'tChandler Carruth2011-11-20
* Move the handling of unanalyzable branches out of the loop-driven chainChandler Carruth2011-11-19
* Rather than trying to use the loop block sequence *or* the functionChandler Carruth2011-11-15
* It helps to deallocate memory as well as allocate it. =] This actuallyChandler Carruth2011-11-14
* Remove an over-eager assert that was firing on one of the ARM regressionChandler Carruth2011-11-14
* Begin chipping away at one of the biggest quadratic-ish behaviors inChandler Carruth2011-11-14
* Under the hood, MBPI is doing a linear scan of every successor everyChandler Carruth2011-11-14
* Teach machine block placement to cope with unnatural loops. These don'tChandler Carruth2011-11-14
* Cleanup some 80-columns violations and poor formatting. These snuck byChandler Carruth2011-11-13
* Enhance the assertion mechanisms in place to make it easier to catchChandler Carruth2011-11-13
* Teach MBP to force-merge layout successors for blocks with unanalyzableChandler Carruth2011-11-13
* Hoist another gross nested loop into a helper method.Chandler Carruth2011-11-13
* Add a missing doxygen comment for a helper method.Chandler Carruth2011-11-13
* Hoist a nested loop into its own method.Chandler Carruth2011-11-13