mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 06:33:24 +00:00
Prepare RAGreedy::growRegion for compact regions.
A split candidate can have a null PhysReg which means that it doesn't map to a real interference pattern. Instead, pretend that all through blocks have interference. This makes it possible to generate compact regions where the live range doesn't go through blocks that don't use it. The live range will still be live between directly connected blocks with uses. Splitting around a compact region tends to produce a live range with a high spill weight, so it may evict a less dense live range. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135845 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e60f103d2d
commit
b4666364f4
@ -749,7 +749,14 @@ void RAGreedy::growRegion(GlobalSplitCandidate &Cand) {
|
||||
// Any new blocks to add?
|
||||
if (ActiveBlocks.size() == AddedTo)
|
||||
break;
|
||||
addThroughConstraints(Cand.Intf, makeArrayRef(ActiveBlocks).slice(AddedTo));
|
||||
|
||||
// Compute through constraints from the interference, or assume that all
|
||||
// through blocks prefer spilling when forming compact regions.
|
||||
ArrayRef<unsigned> NewBlocks = makeArrayRef(ActiveBlocks).slice(AddedTo);
|
||||
if (Cand.PhysReg)
|
||||
addThroughConstraints(Cand.Intf, NewBlocks);
|
||||
else
|
||||
SpillPlacer->addPrefSpill(NewBlocks);
|
||||
AddedTo = ActiveBlocks.size();
|
||||
|
||||
// Perhaps iterating can enable more bundles?
|
||||
|
Loading…
x
Reference in New Issue
Block a user