Evan Cheng 3d9309c11d Fix live variables issues:
1. If part of a register is re-defined, an implicit kill and an implicit def are added to denote read / mod / write. However, this should only be necessary if the register is actually read later. This is a performance issue.
2. If a sub-register is being defined, and it doesn't have a previous use, do not add a implicit kill to the last use of a super-register:
   = EAX, AX<imp-use,kill>
...
AX =
In this case, EAX is live but AX is killed, this is wrong and will cause the coalescer to do bad things.

llvm-svn: 48521
2008-03-19 00:52:20 +00:00
..
2008-02-17 00:15:25 +00:00
2008-02-17 00:15:09 +00:00
2008-03-19 00:52:20 +00:00
2008-03-10 22:34:11 +00:00
2007-04-21 20:46:55 +00:00