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
/
RegAllocLinearScan.cpp
Age
Commit message (
Expand
)
Author
2004-02-12
Change MachineBasicBlock's vector of MachineInstr pointers into an
Alkis Evlogimenos
2004-02-10
Do not use MachineOperand::isVirtualRegister either!
Chris Lattner
2004-02-06
Increase code clarity.
Alkis Evlogimenos
2004-02-06
Eliminate uneeded lookups by passing a Virt2PhysMap::iterator instead
Alkis Evlogimenos
2004-02-04
Modify the two address instruction pass to remove the duplicate
Alkis Evlogimenos
2004-02-03
When an instruction like: A += B had both A and B virtual registers
Alkis Evlogimenos
2004-02-02
Fix debugging output.
Alkis Evlogimenos
2004-02-02
Create an object for tracking physical register usage. This will look
Alkis Evlogimenos
2004-02-01
Change weight array into a vector and make it as big as the number of
Alkis Evlogimenos
2004-02-01
Use std::map::count() instead of std::map::find() != std::map::end()
Alkis Evlogimenos
2004-02-01
Use MRegisterInfo::isPhysicalRegister and
Alkis Evlogimenos
2004-01-22
Add option to join live intervals. Two intervals are joined if there
Alkis Evlogimenos
2004-01-22
Remove unneeded check. An interval in active, by definition overlaps
Alkis Evlogimenos
2004-01-22
Improve debugging output. Remove unneeded virtReg->0 mapping when
Alkis Evlogimenos
2004-01-16
Handle printing of intervals that are not assign to any physical
Alkis Evlogimenos
2004-01-16
Handle printing of intervals that are not assign to any physical
Alkis Evlogimenos
2004-01-16
Fold open interval ends handling into
Alkis Evlogimenos
2004-01-14
Improve debugging output.
Alkis Evlogimenos
2004-01-13
Indentation and whitespace cleanups.
Alkis Evlogimenos
2004-01-13
Fix bug introduced by previous commit: check if fixed intervals
Alkis Evlogimenos
2004-01-07
Add a separate list of fixed intervals. This improves the running time
Alkis Evlogimenos
2004-01-07
Minor cleanups.
Alkis Evlogimenos
2004-01-07
Remove declared but undefined method.
Alkis Evlogimenos
2004-01-05
Remove simple coalescing.
Alkis Evlogimenos
2003-12-28
Reserve ECX and EDI instead of EBX and EDI. Since EBX is a callee
Alkis Evlogimenos
2003-12-28
Add coalescing to register allocator. A hint is added to each interval
Alkis Evlogimenos
2003-12-24
Improve debugging output when choosing a register to spill.
Alkis Evlogimenos
2003-12-23
Change the way free regusters are computed and perform better
Alkis Evlogimenos
2003-12-21
Remove verifyIntervals() since it doesn't actually work right now.
Alkis Evlogimenos
2003-12-21
Change weight into a float so that we can take into account the
Alkis Evlogimenos
2003-12-21
Add support for inactive intervals. This effectively reuses registers
Alkis Evlogimenos
2003-12-18
Prune some #includes
Chris Lattner
2003-12-18
Modify linear scan register allocator to use the two-address
Alkis Evlogimenos
2003-12-18
Fix bug in reserved registers. DH actually aliases DX and EDX which
Alkis Evlogimenos
2003-12-18
Rename LiveIntervals::expired() to LiveIntervals::expiredAt().
Alkis Evlogimenos
2003-12-14
Change interface of MachineOperand as follows:
Alkis Evlogimenos
2003-12-13
When reserving a preallocated register spill the aliases of this
Alkis Evlogimenos
2003-12-13
Expire any active intervals left when register allocation is done.
Alkis Evlogimenos
2003-12-13
Add instruction numbers to debugging output.
Alkis Evlogimenos
2003-12-05
Fix bug in register spilling when a preallocated live range overlaps a
Alkis Evlogimenos
2003-12-04
Improve debugging output and clean up some code.
Alkis Evlogimenos
2003-11-30
Print instructions before register allocation is performed. Also fix
Alkis Evlogimenos
2003-11-30
Remove "numReloaded" statistic.
Alkis Evlogimenos
2003-11-20
Merging the linear scan register allocator in trunk. It currently passes most...
Alkis Evlogimenos