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
/
StackSlotColoring.cpp
Age
Commit message (
Expand
)
Author
2009-07-17
Fix pr4552. Stack slot coloring with register must take care not to generate ...
Evan Cheng
2009-05-12
Fixed a stack slot coloring with reg bug: do not update implicit use / def wh...
Evan Cheng
2009-05-11
Eliminate a compiler warning.
Evan Cheng
2009-05-07
Just turn aggressive stack coloring off at -O3.
Bill Wendling
2009-05-07
Temporarily revert r71010. It was causing massive failures during self-hosting.
Bill Wendling
2009-05-05
Enable stack coloring with regs at -O3.
Evan Cheng
2009-05-05
Do not substitute if the new register isn't in the register class of the oper...
Evan Cheng
2009-05-04
Do forward and backward substitution to eliminate loads and stores when possi...
Evan Cheng
2009-05-04
Restore minor deletion.
Mike Stump
2009-05-03
Typo.
Evan Cheng
2009-05-03
In some rare cases, the register allocator can spill registers but end up not...
Evan Cheng
2009-02-26
Enable stack slot coloring DCE. Evan's spiller fixes were needed before this...
Owen Anderson
2009-02-24
Add a debugging option for SSC DCE.
Owen Anderson
2009-02-20
Add a quick pass to the stack slot colorer to eliminate some trivially redund...
Owen Anderson
2008-12-05
Teach StackSlotColoring to update MachineMemOperands when
Dan Gohman
2008-10-15
Adjust whitespace in debug messages to be more consistent
Dan Gohman
2008-10-03
Switch the MachineOperand accessors back to the short names like
Dan Gohman
2008-09-22
Instead of setPreservesAll, just mark them preseving machine loop info and ma...
Evan Cheng
2008-09-22
Mark several codegen passes as preserving all analysis.
Evan Cheng
2008-09-04
Tidy up several unbeseeming casts from pointer to intptr_t.
Dan Gohman
2008-07-10
Make stack slot coloring's debug output more consistent with
Dan Gohman
2008-06-23
Remove option used to debug stack coloring bugs. It's no longer needed since ...
Evan Cheng
2008-06-23
Instead of adding an isSS field to LiveInterval to denote stack slot. Use top...
Evan Cheng
2008-06-04
Add a stack slot coloring pass. Not yet enabled.
Evan Cheng