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
/
RegAllocBasic.cpp
Age
Commit message (
Expand
)
Author
2011-03-23
Allow the allocation of empty live ranges that have uses.
Jakob Stoklund Olesen
2011-03-16
Tag cached interference with a user-provided tag instead of the virtual regis...
Jakob Stoklund Olesen
2011-03-12
Spill multiple registers at once.
Jakob Stoklund Olesen
2011-03-10
Change the Spiller interface to take a LiveRangeEdit reference.
Jakob Stoklund Olesen
2011-03-10
Make SpillIs an optional pointer. Avoid creating a bunch of temporary SmallVe...
Jakob Stoklund Olesen
2011-02-22
Change the RAGreedy register assignment order so large live ranges are alloca...
Jakob Stoklund Olesen
2011-02-18
Add VirtRegMap::rewrite() and use it in the new register allocators.
Jakob Stoklund Olesen
2011-02-18
Trim debugging output.
Jakob Stoklund Olesen
2011-02-17
Add basic register allocator statistics.
Jakob Stoklund Olesen
2011-02-09
Evict a lighter single interference before attempting to split a live range.
Jakob Stoklund Olesen
2010-12-18
Pass a Banner argument to the machine code verifier both from
Jakob Stoklund Olesen
2010-12-17
Make the -verify-regalloc command line option available to base classes as
Jakob Stoklund Olesen
2010-12-14
Simplyfy RegAllocBasic by using getOverlaps instead of getAliasSet.
Jakob Stoklund Olesen
2010-12-14
Use TRI::printReg instead of AbstractRegisterDescription when printing
Jakob Stoklund Olesen
2010-12-11
Add named timer groups for the different stages of register allocation.
Jakob Stoklund Olesen
2010-12-10
Move MRI into RegAllocBase. Clean up debug output a bit.
Jakob Stoklund Olesen
2010-12-09
Added register reassignment prototype to RAGreedy. It's a simple
Andrew Trick
2010-12-08
Store (priority,regnum) pairs in the priority queue instead of providing an
Jakob Stoklund Olesen
2010-12-08
Move RABasic::addMBBLiveIns to the base class, it is generally useful.
Jakob Stoklund Olesen
2010-12-07
Switch LiveIntervalUnion from std::set to IntervalMap.
Jakob Stoklund Olesen
2010-12-07
Simplify assertion.
Jakob Stoklund Olesen
2010-11-30
Coding style. No significant functionality. Abandon linear scan style
Andrew Trick
2010-11-25
Namespacify.
Benjamin Kramer
2010-11-20
RABasic fix. Regalloc is responsible for updating block live ins.
Andrew Trick
2010-11-20
Whitespace.
Andrew Trick
2010-11-11
Check TRI->getReservedRegs because other allocators do it. Even though
Andrew Trick
2010-11-10
RABasic is nearly functionally complete. There are a few remaining
Andrew Trick
2010-11-09
Adds RABasic verification and tracing.
Andrew Trick
2010-11-09
Reverting r118604. Windows build broke.
Andrew Trick
2010-11-09
Adds RABasic verification and tracing.
Andrew Trick
2010-11-08
Adds support for spilling previously allocated live intervals to
Andrew Trick
2010-11-03
Let RegAllocBasic require MachineDominators - they are already available and
Jakob Stoklund Olesen
2010-10-26
Jakob's review of the basic register allocator.
Andrew Trick
2010-10-22
This is a prototype of an experimental register allocation
Andrew Trick