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
/
LiveInterval.cpp
Age
Commit message (
Expand
)
Author
2005-05-14
Print the symbolic register name in a register allocator debug dump.
Chris Lattner
2005-04-21
Remove trailing whitespace
Misha Brukman
2004-12-04
Prevent accessing past the end of the intervals vector, this fixes
Chris Lattner
2004-11-18
There is no need to check to see if j overflowed in this loop as we're only
Chris Lattner
2004-11-18
Moderate head scratching reveals that this conditional is not needed. If
Chris Lattner
2004-11-18
Take another .7 seconds off of linear scan time.
Chris Lattner
2004-11-18
Add ability to give hints to the overlaps routines.
Chris Lattner
2004-11-16
Give a better message for a common assertion failure.
Brian Gaeke
2004-09-28
Fix includes. Patch contributed by Paolo Invernizzi!
Alkis Evlogimenos
2004-09-01
Changes For Bug 352
Reid Spencer
2004-07-25
Fix the sense of joinable
Chris Lattner
2004-07-25
This patch makes use of the infrastructure implemented before to safely and
Chris Lattner
2004-07-25
Make a method const, no functionality changes
Chris Lattner
2004-07-25
Fix a bug in the range remover
Chris Lattner
2004-07-24
Change std::map<unsigned, LiveInterval*> into a std::map<unsigned,
Alkis Evlogimenos
2004-07-24
In the joiner, merge the small interval into the large interval. This restores
Chris Lattner
2004-07-24
Little stuff:
Chris Lattner
2004-07-23
Change addRange and join to be a little bit smarter. In particular, we don't
Chris Lattner
2004-07-23
Search by the start point, not by the whole interval. This saves some
Chris Lattner
2004-07-23
Instead of searching for a live interval pair, search for a location. This g...
Chris Lattner
2004-07-23
Pull the LiveRange and LiveInterval classes out of LiveIntervals.h (which
Chris Lattner