Files
llvm-6502/lib/CodeGen
Evan Cheng 61230d18d2 Try schedule def + use closer whne Sethi-Ullman numbers are the same.
e.g.
t1 = op t2, c1
t3 = op t4, c2
and the following instructions are both ready.
t2 = op c3
t4 = op c4

Then schedule t2 = op first.
i.e.
t4 = op c4
t2 = op c3
t1 = op t2, c1
t3 = op t4, c2

This creates more short live intervals which work better with the register
allocator.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35089 91177308-0d34-0410-b5e6-96231b3b80d8
2007-03-13 23:25:11 +00:00
..
2007-02-22 16:39:03 +00:00
2007-03-01 20:25:32 +00:00
2007-03-04 04:41:04 +00:00
2007-02-28 07:40:50 +00:00
2006-11-03 19:15:55 +00:00
2006-11-16 20:11:33 +00:00
2007-03-06 21:58:15 +00:00
2007-02-01 05:32:05 +00:00