X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FCodeGen%2FX86%2Fsincos-opt.ll;h=9d02bcd9a6c708a11c97b80bc55d7cf9a3a17192;hb=6e961aa243f223ddb704ce708056238d7c1d7e24;hp=65c8417745469e73be2dbb913eaa52d974452cec;hpb=b25a645830b49beb1c5dbc326953ed16f77a19ed;p=oota-llvm.git diff --git a/test/CodeGen/X86/sincos-opt.ll b/test/CodeGen/X86/sincos-opt.ll index 65c84177454..9d02bcd9a6c 100644 --- a/test/CodeGen/X86/sincos-opt.ll +++ b/test/CodeGen/X86/sincos-opt.ll @@ -1,18 +1,26 @@ -; RUN: llc < %s -mtriple=x86_64-apple-macosx10.9.0 -mcpu=core2 | FileCheck %s --check-prefix=SINCOS -; RUN: llc < %s -mtriple=x86_64-apple-macosx10.8.0 -mcpu=core2 | FileCheck %s --check-prefix=NOOPT +; RUN: llc < %s -mtriple=x86_64-apple-macosx10.9.0 -mcpu=core2 | FileCheck %s --check-prefix=OSX_SINCOS +; RUN: llc < %s -mtriple=x86_64-apple-macosx10.8.0 -mcpu=core2 | FileCheck %s --check-prefix=OSX_NOOPT +; RUN: llc < %s -mtriple=x86_64-pc-linux-gnu -mcpu=core2 -enable-unsafe-fp-math | FileCheck %s --check-prefix=GNU_SINCOS ; Combine sin / cos into a single call. ; rdar://13087969 +; rdar://13599493 define float @test1(float %x) nounwind { entry: -; SINCOS: test1: -; SINCOS: callq ___sincosf_stret -; SINCOS: addss %xmm1, %xmm0 +; GNU_SINCOS-LABEL: test1: +; GNU_SINCOS: callq sincosf +; GNU_SINCOS: movss 4(%rsp), %xmm0 +; GNU_SINCOS: addss (%rsp), %xmm0 -; NOOPT: test1 -; NOOPT: callq _cosf -; NOOPT: callq _sinf +; OSX_SINCOS-LABEL: test1: +; OSX_SINCOS: callq ___sincosf_stret +; OSX_SINCOS: movshdup {{.*}} xmm1 = xmm0[1,1,3,3] +; OSX_SINCOS: addss %xmm1, %xmm0 + +; OSX_NOOPT: test1 +; OSX_NOOPT: callq _sinf +; OSX_NOOPT: callq _cosf %call = tail call float @sinf(float %x) nounwind readnone %call1 = tail call float @cosf(float %x) nounwind readnone %add = fadd float %call, %call1 @@ -21,20 +29,40 @@ entry: define double @test2(double %x) nounwind { entry: -; SINCOS: test2: -; SINCOS: callq ___sincos_stret -; SINCOS: addsd %xmm1, %xmm0 +; GNU_SINCOS-LABEL: test2: +; GNU_SINCOS: callq sincos +; GNU_SINCOS: movsd 16(%rsp), %xmm0 +; GNU_SINCOS: addsd 8(%rsp), %xmm0 + +; OSX_SINCOS-LABEL: test2: +; OSX_SINCOS: callq ___sincos_stret +; OSX_SINCOS: addsd %xmm1, %xmm0 -; NOOPT: test2 -; NOOPT: callq _cos -; NOOPT: callq _sin +; OSX_NOOPT: test2 +; OSX_NOOPT: callq _sin +; OSX_NOOPT: callq _cos %call = tail call double @sin(double %x) nounwind readnone %call1 = tail call double @cos(double %x) nounwind readnone %add = fadd double %call, %call1 ret double %add } +define x86_fp80 @test3(x86_fp80 %x) nounwind { +entry: +; GNU_SINCOS-LABEL: test3: +; GNU_SINCOS: callq sinl +; GNU_SINCOS: callq cosl +; GNU_SINCOS: ret + %call = tail call x86_fp80 @sinl(x86_fp80 %x) nounwind + %call1 = tail call x86_fp80 @cosl(x86_fp80 %x) nounwind + %add = fadd x86_fp80 %call, %call1 + ret x86_fp80 %add +} + declare float @sinf(float) readonly declare double @sin(double) readonly declare float @cosf(float) readonly declare double @cos(double) readonly + +declare x86_fp80 @sinl(x86_fp80) +declare x86_fp80 @cosl(x86_fp80)