mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
[A57FPLoadBalancing] Ignore <def>s when checking if a chain may be killed.
Defs are seen before uses, so a def without the kill flag doesn't necessarily mean that the register is not killed on that instruction. It may be killed in a later use operand. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217689 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
c919e57cbf
commit
b4fbcbc288
@ -662,6 +662,10 @@ maybeKillChain(MachineOperand &MO, unsigned Idx,
|
||||
// determine if a chain should be ended and remove from ActiveChains.
|
||||
MachineInstr *MI = MO.getParent();
|
||||
|
||||
if (MO.isReg() && MO.isDef())
|
||||
// We don't care about defs. We see them before uses, so reject them early.
|
||||
return;
|
||||
|
||||
if (MO.isReg()) {
|
||||
|
||||
// If this is a KILL of a current chain, record it.
|
||||
|
Loading…
x
Reference in New Issue
Block a user