index
:
emscripten-fastcomp
master
LLVM with the emscripten fastcomp javascript backend
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
MachineBlockPlacement.cpp
Age
Commit message (
Expand
)
Author
2012-02-08
Codegen pass definition cleanup. No functionality.
Andrew Trick
2011-12-21
Revert patch from 147090. There is not point to make code less readable if we
Jakub Staszak
2011-12-21
- Change a few operator[] to lookup which is cheaper.
Jakub Staszak
2011-12-07
Remove unneeded semicolon.
Jakub Staszak
2011-12-07
Remove unneeded type.
Jakub Staszak
2011-12-06
- Remove unneeded #includes.
Jakub Staszak
2011-11-27
Prevent rotating the blocks of a loop (and thus getting a backedge to be
Chandler Carruth
2011-11-27
Take two on rotating the block ordering of loops. My previous attempt
Chandler Carruth
2011-11-27
Fix an impressive type-o / spell-o Duncan noticed.
Chandler Carruth
2011-11-27
Rework a bit of the implementation of loop block rotation to not rely so
Chandler Carruth
2011-11-27
Introduce a loop block rotation optimization to the new block placement
Chandler Carruth
2011-11-24
Fix a silly use-after-free issue. A much earlier version of this code
Chandler Carruth
2011-11-24
When adding blocks to the list of those which no longer have any CFG
Chandler Carruth
2011-11-23
Relax an invariant that block placement was trying to assert a bit
Chandler Carruth
2011-11-23
Fix a crash in block placement due to an inner loop that happened to be
Chandler Carruth
2011-11-20
The logic for breaking the CFG in the presence of hot successors didn't
Chandler Carruth
2011-11-19
Move the handling of unanalyzable branches out of the loop-driven chain
Chandler Carruth
2011-11-15
Rather than trying to use the loop block sequence *or* the function
Chandler Carruth
2011-11-14
It helps to deallocate memory as well as allocate it. =] This actually
Chandler Carruth
2011-11-14
Remove an over-eager assert that was firing on one of the ARM regression
Chandler Carruth
2011-11-14
Begin chipping away at one of the biggest quadratic-ish behaviors in
Chandler Carruth
2011-11-14
Under the hood, MBPI is doing a linear scan of every successor every
Chandler Carruth
2011-11-14
Teach machine block placement to cope with unnatural loops. These don't
Chandler Carruth
2011-11-13
Cleanup some 80-columns violations and poor formatting. These snuck by
Chandler Carruth
2011-11-13
Enhance the assertion mechanisms in place to make it easier to catch
Chandler Carruth
2011-11-13
Teach MBP to force-merge layout successors for blocks with unanalyzable
Chandler Carruth
2011-11-13
Hoist another gross nested loop into a helper method.
Chandler Carruth
2011-11-13
Add a missing doxygen comment for a helper method.
Chandler Carruth
2011-11-13
Hoist a nested loop into its own method.
Chandler Carruth
2011-11-13
Rewrite #3 of machine block placement. This is based somewhat on the
Chandler Carruth
2011-11-02
Begin collecting some of the statistics for block placement discussed on
Chandler Carruth
2011-10-24
Sink an otherwise unused variable's initializer into the asserts that
Chandler Carruth
2011-10-23
Now that we have comparison on probabilities, add some static functions
Chandler Carruth
2011-10-23
Remove a commented out line of code that snuck by my auditing.
Chandler Carruth
2011-10-23
Completely re-write the algorithm behind MachineBlockPlacement based on
Chandler Carruth
2011-10-21
Add loop aligning to MachineBlockPlacement based on review discussion so
Chandler Carruth
2011-10-21
Implement a block placement pass based on the branch probability and
Chandler Carruth