Skip to content

Commit

Permalink
[PowerPC] Fix the liveins for ppc-expand-isel pass
Browse files Browse the repository at this point in the history
Summary:
In the ppc-expand-isel pass, we use stepForward() to update the
liveins, this function is not recommended, because it needs the
accurate kill info.

This patch uses the function computeAndAddLiveIns() to update the
liveins, it's the recommended method and can fix the liveins bug for
ppc-expand-isel pass..

Reviewed By: efriedma, lkail

Differential Revision: https://reviews.llvm.org/D78657
  • Loading branch information
zhangkangcool committed Apr 28, 2020
1 parent be884b7 commit 4bb0a1c
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 39 deletions.
54 changes: 19 additions & 35 deletions llvm/lib/Target/PowerPC/PPCExpandISEL.cpp
Expand Up @@ -381,21 +381,10 @@ void PPCExpandISEL::reorganizeBlockLayout(BlockISELList &BIL,
MBB->end());
NewSuccessor->transferSuccessorsAndUpdatePHIs(MBB);

// Copy the original liveIns of MBB to NewSuccessor.
for (auto &LI : MBB->liveins())
NewSuccessor->addLiveIn(LI);

// After splitting the NewSuccessor block, Regs defined but not killed
// in MBB should be treated as liveins of NewSuccessor.
// Note: Cannot use stepBackward instead since we are using the Reg
// liveness state at the end of MBB (liveOut of MBB) as the liveIn for
// NewSuccessor. Otherwise, will cause cyclic dependence.
LivePhysRegs LPR(*MF->getSubtarget<PPCSubtarget>().getRegisterInfo());
SmallVector<std::pair<MCPhysReg, const MachineOperand *>, 2> Clobbers;
for (MachineInstr &MI : *MBB)
LPR.stepForward(MI, Clobbers);
for (auto &LI : LPR)
NewSuccessor->addLiveIn(LI);
// Update the liveins for NewSuccessor.
LivePhysRegs LPR;
computeAndAddLiveIns(LPR, *NewSuccessor);

} else {
// Remove successor from MBB.
MBB->removeSuccessor(Successor);
Expand Down Expand Up @@ -453,32 +442,15 @@ void PPCExpandISEL::populateBlocks(BlockISELList &BIL) {
bool IsADDIInstRequired = !useSameRegister(Dest, TrueValue);
bool IsORIInstRequired = !useSameRegister(Dest, FalseValue);

if (IsADDIInstRequired) {
// Copy the result into the destination if the condition is true.
// Copy the result into the destination if the condition is true.
if (IsADDIInstRequired)
BuildMI(*TrueBlock, TrueBlockI, dl,
TII->get(isISEL8(*MI) ? PPC::ADDI8 : PPC::ADDI))
.add(Dest)
.add(TrueValue)
.add(MachineOperand::CreateImm(0));

// Add the LiveIn registers required by true block.
TrueBlock->addLiveIn(TrueValue.getReg());
}

if (IsORIInstRequired) {
// Add the LiveIn registers required by false block.
FalseBlock->addLiveIn(FalseValue.getReg());
}

if (NewSuccessor) {
// Add the LiveIn registers required by NewSuccessor block.
NewSuccessor->addLiveIn(Dest.getReg());
NewSuccessor->addLiveIn(TrueValue.getReg());
NewSuccessor->addLiveIn(FalseValue.getReg());
NewSuccessor->addLiveIn(ConditionRegister.getReg());
}

// Copy the value into the destination if the condition is false.
// Copy the result into the destination if the condition is false.
if (IsORIInstRequired)
BuildMI(*FalseBlock, FalseBlockI, dl,
TII->get(isISEL8(*MI) ? PPC::ORI8 : PPC::ORI))
Expand All @@ -490,6 +462,18 @@ void PPCExpandISEL::populateBlocks(BlockISELList &BIL) {

NumExpanded++;
}

if (IsTrueBlockRequired) {
// Update the liveins for TrueBlock.
LivePhysRegs LPR;
computeAndAddLiveIns(LPR, *TrueBlock);
}

if (IsFalseBlockRequired) {
// Update the liveins for FalseBlock.
LivePhysRegs LPR;
computeAndAddLiveIns(LPR, *FalseBlock);
}
}

void PPCExpandISEL::expandMergeableISELs(BlockISELList &BIL) {
Expand Down
8 changes: 4 additions & 4 deletions llvm/test/CodeGen/PowerPC/expand-isel-liveness.mir
Expand Up @@ -38,14 +38,14 @@ body: |
; CHECK-LABEL: name: expand_isel_liveness1
; CHECK: bb.1:
; CHECK: liveins: $x7
; CHECK: liveins: $x3, $x4, $x7
; CHECK: renamable $x5 = ORI8 killed renamable $x7, 0
; CHECK: B %bb.3
; CHECK: bb.2:
; CHECK: liveins: $zero8
; CHECK: liveins: $x3, $x4
; CHECK: renamable $x5 = ADDI8 $zero8, 0
; CHECK: bb.3:
; CHECK: liveins: $x3, $x4, $x5, $x6, $cr1lt, $cr1gt, $x3, $cr6lt, $cr0eq, $r3, $cr5un, $cr1eq, $cr1un, $cr6un, $cr0lt, $cr0gt, $cr6gt, $cr0un, $cr1, $cr6, $cr5eq, $x8, $r8, $cr6eq, $x4, $r4, $cr0, $cr5gt, $cr5, $cr5lt, $x7, $r7, $x5, $r5, $x5, $zero8, $x7, $cr5lt
; CHECK: liveins: $x3, $x4, $x5
; CHECK: BLR8 implicit $lr8, implicit $rm, implicit killed $x3, implicit killed $x4, implicit killed $x5
...

Expand Down Expand Up @@ -74,7 +74,7 @@ body: |
; CHECK: $r3 = ORI killed $r0, 0
; CHECK: B %bb.3
; CHECK: bb.2.entry:
; CHECK: liveins: $zero
; CHECK-NOT: liveins: $zero
; CHECK: $r3 = ADDI $zero, 0
...

0 comments on commit 4bb0a1c

Please sign in to comment.