mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-24 08:33:39 +00:00
[X86] Break false dependencies before partial register updates when the source operand is in memory
Adds the various "rm" instruction variants into the list of instructions that have a partial register update. Also adds all variants of SQRTSD that were missing in the original list. Differential Revision: http://reviews.llvm.org/D6620 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224246 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4dcffed444
commit
299e0d4c24
@ -4379,23 +4379,43 @@ X86InstrInfo::foldMemoryOperandImpl(MachineFunction &MF,
|
||||
static bool hasPartialRegUpdate(unsigned Opcode) {
|
||||
switch (Opcode) {
|
||||
case X86::CVTSI2SSrr:
|
||||
case X86::CVTSI2SSrm:
|
||||
case X86::CVTSI2SS64rr:
|
||||
case X86::CVTSI2SS64rm:
|
||||
case X86::CVTSI2SDrr:
|
||||
case X86::CVTSI2SDrm:
|
||||
case X86::CVTSI2SD64rr:
|
||||
case X86::CVTSI2SD64rm:
|
||||
case X86::CVTSD2SSrr:
|
||||
case X86::CVTSD2SSrm:
|
||||
case X86::Int_CVTSD2SSrr:
|
||||
case X86::Int_CVTSD2SSrm:
|
||||
case X86::CVTSS2SDrr:
|
||||
case X86::CVTSS2SDrm:
|
||||
case X86::Int_CVTSS2SDrr:
|
||||
case X86::Int_CVTSS2SDrm:
|
||||
case X86::RCPSSr:
|
||||
case X86::RCPSSm:
|
||||
case X86::RCPSSr_Int:
|
||||
case X86::RCPSSm_Int:
|
||||
case X86::ROUNDSDr:
|
||||
case X86::ROUNDSDm:
|
||||
case X86::ROUNDSDr_Int:
|
||||
case X86::ROUNDSSr:
|
||||
case X86::ROUNDSSm:
|
||||
case X86::ROUNDSSr_Int:
|
||||
case X86::RSQRTSSr:
|
||||
case X86::RSQRTSSm:
|
||||
case X86::RSQRTSSr_Int:
|
||||
case X86::RSQRTSSm_Int:
|
||||
case X86::SQRTSSr:
|
||||
case X86::SQRTSSm:
|
||||
case X86::SQRTSSr_Int:
|
||||
case X86::SQRTSSm_Int:
|
||||
case X86::SQRTSDr:
|
||||
case X86::SQRTSDm:
|
||||
case X86::SQRTSDr_Int:
|
||||
case X86::SQRTSDm_Int:
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -34,7 +34,8 @@ entry:
|
||||
define double @squirt(double* %x) nounwind {
|
||||
entry:
|
||||
; CHECK-LABEL: squirt:
|
||||
; CHECK: sqrtsd ([[A0]]), %xmm0
|
||||
; CHECK: movsd ([[A0]]), %xmm0
|
||||
; CHECK: sqrtsd %xmm0, %xmm0
|
||||
%z = load double* %x
|
||||
%t = call double @llvm.sqrt.f64(double %z)
|
||||
ret double %t
|
||||
@ -60,3 +61,101 @@ entry:
|
||||
|
||||
declare float @llvm.sqrt.f32(float)
|
||||
declare double @llvm.sqrt.f64(double)
|
||||
|
||||
; CHECK-LABEL: loopdep1
|
||||
; CHECK: for.body
|
||||
;
|
||||
; This loop contains two cvtsi2ss instructions that update the same xmm
|
||||
; register. Verify that the execution dependency fix pass breaks those
|
||||
; dependencies by inserting xorps instructions.
|
||||
;
|
||||
; If the register allocator chooses different registers for the two cvtsi2ss
|
||||
; instructions, they are still dependent on themselves.
|
||||
; CHECK: xorps [[XMM1:%xmm[0-9]+]]
|
||||
; CHECK: , [[XMM1]]
|
||||
; CHECK: cvtsi2ssl %{{.*}}, [[XMM1]]
|
||||
; CHECK: xorps [[XMM2:%xmm[0-9]+]]
|
||||
; CHECK: , [[XMM2]]
|
||||
; CHECK: cvtsi2ssl %{{.*}}, [[XMM2]]
|
||||
;
|
||||
define float @loopdep1(i32 %m) nounwind uwtable readnone ssp {
|
||||
entry:
|
||||
%tobool3 = icmp eq i32 %m, 0
|
||||
br i1 %tobool3, label %for.end, label %for.body
|
||||
|
||||
for.body: ; preds = %entry, %for.body
|
||||
%m.addr.07 = phi i32 [ %dec, %for.body ], [ %m, %entry ]
|
||||
%s1.06 = phi float [ %add, %for.body ], [ 0.000000e+00, %entry ]
|
||||
%s2.05 = phi float [ %add2, %for.body ], [ 0.000000e+00, %entry ]
|
||||
%n.04 = phi i32 [ %inc, %for.body ], [ 1, %entry ]
|
||||
%conv = sitofp i32 %n.04 to float
|
||||
%add = fadd float %s1.06, %conv
|
||||
%conv1 = sitofp i32 %m.addr.07 to float
|
||||
%add2 = fadd float %s2.05, %conv1
|
||||
%inc = add nsw i32 %n.04, 1
|
||||
%dec = add nsw i32 %m.addr.07, -1
|
||||
%tobool = icmp eq i32 %dec, 0
|
||||
br i1 %tobool, label %for.end, label %for.body
|
||||
|
||||
for.end: ; preds = %for.body, %entry
|
||||
%s1.0.lcssa = phi float [ 0.000000e+00, %entry ], [ %add, %for.body ]
|
||||
%s2.0.lcssa = phi float [ 0.000000e+00, %entry ], [ %add2, %for.body ]
|
||||
%sub = fsub float %s1.0.lcssa, %s2.0.lcssa
|
||||
ret float %sub
|
||||
}
|
||||
|
||||
; This loop contains a cvtsi2sd instruction that has a loop-carried
|
||||
; false dependency on an xmm that is modified by other scalar instructions
|
||||
; that follow it in the loop. Additionally, the source of convert is a
|
||||
; memory operand. Verify the execution dependency fix pass breaks this
|
||||
; dependency by inserting a xor before the convert.
|
||||
@x = common global [1024 x double] zeroinitializer, align 16
|
||||
@y = common global [1024 x double] zeroinitializer, align 16
|
||||
@z = common global [1024 x double] zeroinitializer, align 16
|
||||
@w = common global [1024 x double] zeroinitializer, align 16
|
||||
@v = common global [1024 x i32] zeroinitializer, align 16
|
||||
|
||||
define void @loopdep2() {
|
||||
entry:
|
||||
br label %for.cond1.preheader
|
||||
|
||||
for.cond1.preheader: ; preds = %for.inc14, %entry
|
||||
%i.025 = phi i32 [ 0, %entry ], [ %inc15, %for.inc14 ]
|
||||
br label %for.body3
|
||||
|
||||
for.body3:
|
||||
%indvars.iv = phi i64 [ 0, %for.cond1.preheader ], [ %indvars.iv.next, %for.body3 ]
|
||||
%arrayidx = getelementptr inbounds [1024 x i32]* @v, i64 0, i64 %indvars.iv
|
||||
%0 = load i32* %arrayidx, align 4
|
||||
%conv = sitofp i32 %0 to double
|
||||
%arrayidx5 = getelementptr inbounds [1024 x double]* @x, i64 0, i64 %indvars.iv
|
||||
%1 = load double* %arrayidx5, align 8
|
||||
%mul = fmul double %conv, %1
|
||||
%arrayidx7 = getelementptr inbounds [1024 x double]* @y, i64 0, i64 %indvars.iv
|
||||
%2 = load double* %arrayidx7, align 8
|
||||
%mul8 = fmul double %mul, %2
|
||||
%arrayidx10 = getelementptr inbounds [1024 x double]* @z, i64 0, i64 %indvars.iv
|
||||
%3 = load double* %arrayidx10, align 8
|
||||
%mul11 = fmul double %mul8, %3
|
||||
%arrayidx13 = getelementptr inbounds [1024 x double]* @w, i64 0, i64 %indvars.iv
|
||||
store double %mul11, double* %arrayidx13, align 8
|
||||
%indvars.iv.next = add nuw nsw i64 %indvars.iv, 1
|
||||
%exitcond = icmp eq i64 %indvars.iv.next, 1024
|
||||
br i1 %exitcond, label %for.inc14, label %for.body3
|
||||
|
||||
for.inc14: ; preds = %for.body3
|
||||
%inc15 = add nsw i32 %i.025, 1
|
||||
%exitcond26 = icmp eq i32 %inc15, 100000
|
||||
br i1 %exitcond26, label %for.end16, label %for.cond1.preheader
|
||||
|
||||
for.end16: ; preds = %for.inc14
|
||||
ret void
|
||||
|
||||
;CHECK-LABEL:@loopdep2
|
||||
;CHECK: xorps [[XMM0:%xmm[0-9]+]], [[XMM0]]
|
||||
;CHECK-NEXT: cvtsi2sdl {{.*}}, [[XMM0]]
|
||||
;CHECK-NEXT: mulsd {{.*}}, [[XMM0]]
|
||||
;CHECK-NEXT: mulsd {{.*}}, [[XMM0]]
|
||||
;CHECK-NEXT: mulsd {{.*}}, [[XMM0]]
|
||||
;CHECK-NEXT: movsd [[XMM0]],
|
||||
}
|
||||
|
@ -43,45 +43,3 @@ while.body:
|
||||
while.end:
|
||||
ret void
|
||||
}
|
||||
|
||||
; CHECK: f2
|
||||
; CHECK: for.body
|
||||
;
|
||||
; This loop contains two cvtsi2ss instructions that update the same xmm
|
||||
; register. Verify that the execution dependency fix pass breaks those
|
||||
; dependencies by inserting xorps instructions.
|
||||
;
|
||||
; If the register allocator chooses different registers for the two cvtsi2ss
|
||||
; instructions, they are still dependent on themselves.
|
||||
; CHECK: xorps [[XMM1:%xmm[0-9]+]]
|
||||
; CHECK: , [[XMM1]]
|
||||
; CHECK: cvtsi2ssl %{{.*}}, [[XMM1]]
|
||||
; CHECK: xorps [[XMM2:%xmm[0-9]+]]
|
||||
; CHECK: , [[XMM2]]
|
||||
; CHECK: cvtsi2ssl %{{.*}}, [[XMM2]]
|
||||
;
|
||||
define float @f2(i32 %m) nounwind uwtable readnone ssp {
|
||||
entry:
|
||||
%tobool3 = icmp eq i32 %m, 0
|
||||
br i1 %tobool3, label %for.end, label %for.body
|
||||
|
||||
for.body: ; preds = %entry, %for.body
|
||||
%m.addr.07 = phi i32 [ %dec, %for.body ], [ %m, %entry ]
|
||||
%s1.06 = phi float [ %add, %for.body ], [ 0.000000e+00, %entry ]
|
||||
%s2.05 = phi float [ %add2, %for.body ], [ 0.000000e+00, %entry ]
|
||||
%n.04 = phi i32 [ %inc, %for.body ], [ 1, %entry ]
|
||||
%conv = sitofp i32 %n.04 to float
|
||||
%add = fadd float %s1.06, %conv
|
||||
%conv1 = sitofp i32 %m.addr.07 to float
|
||||
%add2 = fadd float %s2.05, %conv1
|
||||
%inc = add nsw i32 %n.04, 1
|
||||
%dec = add nsw i32 %m.addr.07, -1
|
||||
%tobool = icmp eq i32 %dec, 0
|
||||
br i1 %tobool, label %for.end, label %for.body
|
||||
|
||||
for.end: ; preds = %for.body, %entry
|
||||
%s1.0.lcssa = phi float [ 0.000000e+00, %entry ], [ %add, %for.body ]
|
||||
%s2.0.lcssa = phi float [ 0.000000e+00, %entry ], [ %add2, %for.body ]
|
||||
%sub = fsub float %s1.0.lcssa, %s2.0.lcssa
|
||||
ret float %sub
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user