mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-21 21:29:41 +00:00
Fix two-address pass's aggressive instruction commuting heuristics. It's meant
to catch cases like: %reg1024<def> = MOV r1 %reg1025<def> = MOV r0 %reg1026<def> = ADD %reg1024, %reg1025 r0 = MOV %reg1026 By commuting ADD, it let coalescer eliminate all of the copies. However, there was a bug in the heuristics where it ended up commuting the ADD in: %reg1024<def> = MOV r0 %reg1025<def> = MOV 0 %reg1026<def> = ADD %reg1024, %reg1025 r0 = MOV %reg1026 That did no benefit but rather ensure the last MOV would not be coalesced. rdar://11355268 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156048 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f12f6dff97
commit
d99d68bcee
@ -102,7 +102,7 @@ namespace {
|
|||||||
MachineInstr *FindLastUseInMBB(unsigned Reg, MachineBasicBlock *MBB,
|
MachineInstr *FindLastUseInMBB(unsigned Reg, MachineBasicBlock *MBB,
|
||||||
unsigned Dist);
|
unsigned Dist);
|
||||||
|
|
||||||
bool isProfitableToCommute(unsigned regB, unsigned regC,
|
bool isProfitableToCommute(unsigned regA, unsigned regB, unsigned regC,
|
||||||
MachineInstr *MI, MachineBasicBlock *MBB,
|
MachineInstr *MI, MachineBasicBlock *MBB,
|
||||||
unsigned Dist);
|
unsigned Dist);
|
||||||
|
|
||||||
@ -567,7 +567,8 @@ regsAreCompatible(unsigned RegA, unsigned RegB, const TargetRegisterInfo *TRI) {
|
|||||||
/// isProfitableToReMat - Return true if it's potentially profitable to commute
|
/// isProfitableToReMat - Return true if it's potentially profitable to commute
|
||||||
/// the two-address instruction that's being processed.
|
/// the two-address instruction that's being processed.
|
||||||
bool
|
bool
|
||||||
TwoAddressInstructionPass::isProfitableToCommute(unsigned regB, unsigned regC,
|
TwoAddressInstructionPass::isProfitableToCommute(unsigned regA, unsigned regB,
|
||||||
|
unsigned regC,
|
||||||
MachineInstr *MI, MachineBasicBlock *MBB,
|
MachineInstr *MI, MachineBasicBlock *MBB,
|
||||||
unsigned Dist) {
|
unsigned Dist) {
|
||||||
if (OptLevel == CodeGenOpt::None)
|
if (OptLevel == CodeGenOpt::None)
|
||||||
@ -604,15 +605,15 @@ TwoAddressInstructionPass::isProfitableToCommute(unsigned regB, unsigned regC,
|
|||||||
// %reg1026<def> = ADD %reg1024, %reg1025
|
// %reg1026<def> = ADD %reg1024, %reg1025
|
||||||
// r0 = MOV %reg1026
|
// r0 = MOV %reg1026
|
||||||
// Commute the ADD to hopefully eliminate an otherwise unavoidable copy.
|
// Commute the ADD to hopefully eliminate an otherwise unavoidable copy.
|
||||||
unsigned FromRegB = getMappedReg(regB, SrcRegMap);
|
unsigned ToRegA = getMappedReg(regA, DstRegMap);
|
||||||
unsigned FromRegC = getMappedReg(regC, SrcRegMap);
|
if (ToRegA) {
|
||||||
unsigned ToRegB = getMappedReg(regB, DstRegMap);
|
unsigned FromRegB = getMappedReg(regB, SrcRegMap);
|
||||||
unsigned ToRegC = getMappedReg(regC, DstRegMap);
|
unsigned FromRegC = getMappedReg(regC, SrcRegMap);
|
||||||
if ((FromRegB && ToRegB && !regsAreCompatible(FromRegB, ToRegB, TRI)) &&
|
bool BComp = !FromRegB || regsAreCompatible(FromRegB, ToRegA, TRI);
|
||||||
((!FromRegC && !ToRegC) ||
|
bool CComp = !FromRegC || regsAreCompatible(FromRegC, ToRegA, TRI);
|
||||||
regsAreCompatible(FromRegB, ToRegC, TRI) ||
|
if (BComp != CComp)
|
||||||
regsAreCompatible(FromRegC, ToRegB, TRI)))
|
return !BComp && CComp;
|
||||||
return true;
|
}
|
||||||
|
|
||||||
// If there is a use of regC between its last def (could be livein) and this
|
// If there is a use of regC between its last def (could be livein) and this
|
||||||
// instruction, then bail.
|
// instruction, then bail.
|
||||||
@ -1211,6 +1212,9 @@ TryInstructionTransform(MachineBasicBlock::iterator &mi,
|
|||||||
return true; // Done with this instruction.
|
return true; // Done with this instruction.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (TargetRegisterInfo::isVirtualRegister(regA))
|
||||||
|
ScanUses(regA, &*mbbi, Processed);
|
||||||
|
|
||||||
// Check if it is profitable to commute the operands.
|
// Check if it is profitable to commute the operands.
|
||||||
unsigned SrcOp1, SrcOp2;
|
unsigned SrcOp1, SrcOp2;
|
||||||
unsigned regC = 0;
|
unsigned regC = 0;
|
||||||
@ -1230,7 +1234,7 @@ TryInstructionTransform(MachineBasicBlock::iterator &mi,
|
|||||||
// If C dies but B does not, swap the B and C operands.
|
// If C dies but B does not, swap the B and C operands.
|
||||||
// This makes the live ranges of A and C joinable.
|
// This makes the live ranges of A and C joinable.
|
||||||
TryCommute = true;
|
TryCommute = true;
|
||||||
else if (isProfitableToCommute(regB, regC, &MI, mbbi, Dist)) {
|
else if (isProfitableToCommute(regA, regB, regC, &MI, mbbi, Dist)) {
|
||||||
TryCommute = true;
|
TryCommute = true;
|
||||||
AggressiveCommute = true;
|
AggressiveCommute = true;
|
||||||
}
|
}
|
||||||
@ -1252,9 +1256,6 @@ TryInstructionTransform(MachineBasicBlock::iterator &mi,
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (TargetRegisterInfo::isVirtualRegister(regA))
|
|
||||||
ScanUses(regA, &*mbbi, Processed);
|
|
||||||
|
|
||||||
if (MI.isConvertibleTo3Addr()) {
|
if (MI.isConvertibleTo3Addr()) {
|
||||||
// This instruction is potentially convertible to a true
|
// This instruction is potentially convertible to a true
|
||||||
// three-address instruction. Check if it is profitable.
|
// three-address instruction. Check if it is profitable.
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
; A test for checking PR 9623
|
; A test for checking PR 9623
|
||||||
;RUN: llc -march=x86-64 -mcpu=corei7 -promote-elements < %s | FileCheck %s
|
; RUN: llc -march=x86-64 -mcpu=corei7 -promote-elements < %s | FileCheck %s
|
||||||
|
|
||||||
target triple = "x86_64-apple-darwin"
|
target triple = "x86_64-apple-darwin"
|
||||||
|
|
||||||
; CHECK: pmulld
|
; CHECK: pmulld
|
||||||
; CHECK: paddd
|
; CHECK: paddd
|
||||||
; CHECK: movdqa
|
; CHECK-NOT: movdqa
|
||||||
|
; CHECK: ret
|
||||||
|
|
||||||
define <4 x i8> @foo(<4 x i8> %x, <4 x i8> %y) {
|
define <4 x i8> @foo(<4 x i8> %x, <4 x i8> %y) {
|
||||||
entry:
|
entry:
|
||||||
|
@ -22,6 +22,7 @@ declare i32 @bar(...)
|
|||||||
declare i32 @baz(...)
|
declare i32 @baz(...)
|
||||||
|
|
||||||
; rdar://10633221
|
; rdar://10633221
|
||||||
|
; rdar://11355268
|
||||||
define i32 @g(i32 %a, i32 %b) nounwind {
|
define i32 @g(i32 %a, i32 %b) nounwind {
|
||||||
entry:
|
entry:
|
||||||
; CHECK: g:
|
; CHECK: g:
|
||||||
@ -39,6 +40,8 @@ entry:
|
|||||||
; CHECK: h:
|
; CHECK: h:
|
||||||
; CHECK-NOT: cmp
|
; CHECK-NOT: cmp
|
||||||
; CHECK: cmov
|
; CHECK: cmov
|
||||||
|
; CHECK-NOT: movl
|
||||||
|
; CHECK: ret
|
||||||
%cmp = icmp slt i32 %b, %a
|
%cmp = icmp slt i32 %b, %a
|
||||||
%sub = sub nsw i32 %a, %b
|
%sub = sub nsw i32 %a, %b
|
||||||
%cond = select i1 %cmp, i32 %sub, i32 0
|
%cond = select i1 %cmp, i32 %sub, i32 0
|
||||||
@ -49,6 +52,8 @@ entry:
|
|||||||
; CHECK: i:
|
; CHECK: i:
|
||||||
; CHECK-NOT: cmp
|
; CHECK-NOT: cmp
|
||||||
; CHECK: cmov
|
; CHECK: cmov
|
||||||
|
; CHECK-NOT: movl
|
||||||
|
; CHECK: ret
|
||||||
%cmp = icmp sgt i32 %a, %b
|
%cmp = icmp sgt i32 %a, %b
|
||||||
%sub = sub nsw i32 %a, %b
|
%sub = sub nsw i32 %a, %b
|
||||||
%cond = select i1 %cmp, i32 %sub, i32 0
|
%cond = select i1 %cmp, i32 %sub, i32 0
|
||||||
@ -59,6 +64,8 @@ entry:
|
|||||||
; CHECK: j:
|
; CHECK: j:
|
||||||
; CHECK-NOT: cmp
|
; CHECK-NOT: cmp
|
||||||
; CHECK: cmov
|
; CHECK: cmov
|
||||||
|
; CHECK-NOT: movl
|
||||||
|
; CHECK: ret
|
||||||
%cmp = icmp ugt i32 %a, %b
|
%cmp = icmp ugt i32 %a, %b
|
||||||
%sub = sub i32 %a, %b
|
%sub = sub i32 %a, %b
|
||||||
%cond = select i1 %cmp, i32 %sub, i32 0
|
%cond = select i1 %cmp, i32 %sub, i32 0
|
||||||
@ -69,6 +76,8 @@ entry:
|
|||||||
; CHECK: k:
|
; CHECK: k:
|
||||||
; CHECK-NOT: cmp
|
; CHECK-NOT: cmp
|
||||||
; CHECK: cmov
|
; CHECK: cmov
|
||||||
|
; CHECK-NOT: movl
|
||||||
|
; CHECK: ret
|
||||||
%cmp = icmp ult i32 %b, %a
|
%cmp = icmp ult i32 %b, %a
|
||||||
%sub = sub i32 %a, %b
|
%sub = sub i32 %a, %b
|
||||||
%cond = select i1 %cmp, i32 %sub, i32 0
|
%cond = select i1 %cmp, i32 %sub, i32 0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user