mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Split loop exiting edges more aggressively.
PHIElimination splits critical edges when it predicts it can resolve interference and eliminate copies. It doesn't split the edge if the interference wouldn't be resolved anyway because the phi-use register is live in the critical edge anyway. Teach PHIElimination to split loop exiting edges with interference, even if it wouldn't resolve the interference. This removes the necessary copies from the loop, which is still an improvement from injecting the copies into the loop. The test case demonstrates the improvement. Before: LBB0_1: cmpb $0, (%rdx) leaq 1(%rdx), %rdx movl %esi, %eax je LBB0_1 After: LBB0_1: cmpb $0, (%rdx) leaq 1(%rdx), %rdx je LBB0_1 movl %esi, %eax git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160571 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
bb3c4fab45
commit
c321a20b2e
@ -423,28 +423,71 @@ bool PHIElimination::SplitPHIEdges(MachineFunction &MF,
|
||||
if (MBB.empty() || !MBB.front().isPHI() || MBB.isLandingPad())
|
||||
return false; // Quick exit for basic blocks without PHIs.
|
||||
|
||||
const MachineLoop *CurLoop = MLI ? MLI->getLoopFor(&MBB) : 0;
|
||||
bool IsLoopHeader = CurLoop && &MBB == CurLoop->getHeader();
|
||||
|
||||
bool Changed = false;
|
||||
for (MachineBasicBlock::iterator BBI = MBB.begin(), BBE = MBB.end();
|
||||
BBI != BBE && BBI->isPHI(); ++BBI) {
|
||||
for (unsigned i = 1, e = BBI->getNumOperands(); i != e; i += 2) {
|
||||
unsigned Reg = BBI->getOperand(i).getReg();
|
||||
MachineBasicBlock *PreMBB = BBI->getOperand(i+1).getMBB();
|
||||
// We break edges when registers are live out from the predecessor block
|
||||
// (not considering PHI nodes). If the register is live in to this block
|
||||
// anyway, we would gain nothing from splitting.
|
||||
// Is there a critical edge from PreMBB to MBB?
|
||||
if (PreMBB->succ_size() == 1)
|
||||
continue;
|
||||
|
||||
// Avoid splitting backedges of loops. It would introduce small
|
||||
// out-of-line blocks into the loop which is very bad for code placement.
|
||||
if (PreMBB != &MBB &&
|
||||
!LV.isLiveIn(Reg, MBB) && LV.isLiveOut(Reg, *PreMBB)) {
|
||||
if (!MLI ||
|
||||
!(MLI->getLoopFor(PreMBB) == MLI->getLoopFor(&MBB) &&
|
||||
MLI->isLoopHeader(&MBB))) {
|
||||
if (PreMBB->SplitCriticalEdge(&MBB, this)) {
|
||||
Changed = true;
|
||||
++NumCriticalEdgesSplit;
|
||||
}
|
||||
}
|
||||
if (PreMBB == &MBB)
|
||||
continue;
|
||||
const MachineLoop *PreLoop = MLI ? MLI->getLoopFor(PreMBB) : 0;
|
||||
if (IsLoopHeader && PreLoop == CurLoop)
|
||||
continue;
|
||||
|
||||
// LV doesn't consider a phi use live-out, so isLiveOut only returns true
|
||||
// when the source register is live-out for some other reason than a phi
|
||||
// use. That means the copy we will insert in PreMBB won't be a kill, and
|
||||
// there is a risk it may not be coalesced away.
|
||||
//
|
||||
// If the copy would be a kill, there is no need to split the edge.
|
||||
if (!LV.isLiveOut(Reg, *PreMBB))
|
||||
continue;
|
||||
|
||||
DEBUG(dbgs() << PrintReg(Reg) << " live-out before critical edge BB#"
|
||||
<< PreMBB->getNumber() << " -> BB#" << MBB.getNumber()
|
||||
<< ": " << *BBI);
|
||||
|
||||
// If Reg is not live-in to MBB, it means it must be live-in to some
|
||||
// other PreMBB successor, and we can avoid the interference by splitting
|
||||
// the edge.
|
||||
//
|
||||
// If Reg *is* live-in to MBB, the interference is inevitable and a copy
|
||||
// is likely to be left after coalescing. If we are looking at a loop
|
||||
// exiting edge, split it so we won't insert code in the loop, otherwise
|
||||
// don't bother.
|
||||
bool ShouldSplit = !LV.isLiveIn(Reg, MBB);
|
||||
|
||||
// Check for a loop exiting edge.
|
||||
if (!ShouldSplit && CurLoop != PreLoop) {
|
||||
DEBUG({
|
||||
dbgs() << "Split wouldn't help, maybe avoid loop copies?\n";
|
||||
if (PreLoop) dbgs() << "PreLoop: " << *PreLoop;
|
||||
if (CurLoop) dbgs() << "CurLoop: " << *CurLoop;
|
||||
});
|
||||
// This edge could be entering a loop, exiting a loop, or it could be
|
||||
// both: Jumping directly form one loop to the header of a sibling
|
||||
// loop.
|
||||
// Split unless this edge is entering CurLoop from an outer loop.
|
||||
ShouldSplit = PreLoop && !PreLoop->contains(CurLoop);
|
||||
}
|
||||
if (!ShouldSplit)
|
||||
continue;
|
||||
if (!PreMBB->SplitCriticalEdge(&MBB, this)) {
|
||||
DEBUG(dbgs() << "Failed to split ciritcal edge.\n");
|
||||
continue;
|
||||
}
|
||||
Changed = true;
|
||||
++NumCriticalEdgesSplit;
|
||||
}
|
||||
}
|
||||
return Changed;
|
||||
|
30
test/CodeGen/X86/phielim-split.ll
Normal file
30
test/CodeGen/X86/phielim-split.ll
Normal file
@ -0,0 +1,30 @@
|
||||
; RUN: llc < %s -verify-machineinstrs | FileCheck %s
|
||||
target triple = "x86_64-apple-macosx10.8.0"
|
||||
|
||||
; The critical edge from for.cond to if.end2 should be split to avoid injecting
|
||||
; copies into the loop. The use of %b after the loop causes interference that
|
||||
; makes a copy necessary.
|
||||
; <rdar://problem/11561842>
|
||||
;
|
||||
; CHECK: split_loop_exit
|
||||
; CHECK: %for.cond
|
||||
; CHECK-NOT: mov
|
||||
; CHECK: je
|
||||
|
||||
define i32 @split_loop_exit(i32 %a, i32 %b, i8* nocapture %p) nounwind uwtable readonly ssp {
|
||||
entry:
|
||||
%cmp = icmp sgt i32 %a, 10
|
||||
br i1 %cmp, label %for.cond, label %if.end2
|
||||
|
||||
for.cond: ; preds = %entry, %for.cond
|
||||
%p.addr.0 = phi i8* [ %incdec.ptr, %for.cond ], [ %p, %entry ]
|
||||
%incdec.ptr = getelementptr inbounds i8* %p.addr.0, i64 1
|
||||
%0 = load i8* %p.addr.0, align 1
|
||||
%tobool = icmp eq i8 %0, 0
|
||||
br i1 %tobool, label %for.cond, label %if.end2
|
||||
|
||||
if.end2: ; preds = %for.cond, %entry
|
||||
%r.0 = phi i32 [ %a, %entry ], [ %b, %for.cond ]
|
||||
%add = add nsw i32 %r.0, %b
|
||||
ret i32 %add
|
||||
}
|
Loading…
Reference in New Issue
Block a user