mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
Reverse the order of eviction checks for possible compile time savings. No functionality.
llvm-svn: 195969
This commit is contained in:
parent
95269c69db
commit
b7e697ed41
@ -627,6 +627,9 @@ bool RAGreedy::canEvictInterference(LiveInterval &VirtReg, unsigned PhysReg,
|
||||
return false;
|
||||
if (Urgent)
|
||||
continue;
|
||||
// Apply the eviction policy for non-urgent evictions.
|
||||
if (!shouldEvict(VirtReg, IsHint, *Intf, BreaksHint))
|
||||
return false;
|
||||
// If !MaxCost.isMax(), then we're just looking for a cheap register.
|
||||
// Evicting another local live range in this case could lead to suboptimal
|
||||
// coloring.
|
||||
@ -634,9 +637,6 @@ bool RAGreedy::canEvictInterference(LiveInterval &VirtReg, unsigned PhysReg,
|
||||
!canReassign(*Intf, PhysReg)) {
|
||||
return false;
|
||||
}
|
||||
// Finally, apply the eviction policy for non-urgent evictions.
|
||||
if (!shouldEvict(VirtReg, IsHint, *Intf, BreaksHint))
|
||||
return false;
|
||||
}
|
||||
}
|
||||
MaxCost = Cost;
|
||||
|
Loading…
x
Reference in New Issue
Block a user