diff options
author | Stephen Hines <srhines@google.com> | 2014-05-29 02:49:00 -0700 |
---|---|---|
committer | Stephen Hines <srhines@google.com> | 2014-05-29 02:49:00 -0700 |
commit | dce4a407a24b04eebc6a376f8e62b41aaa7b071f (patch) | |
tree | dcebc53f2b182f145a2e659393bf9a0472cedf23 /test/CodeGen/R600/llvm.sin.ll | |
parent | 220b921aed042f9e520c26cffd8282a94c66c3d5 (diff) | |
download | external_llvm-dce4a407a24b04eebc6a376f8e62b41aaa7b071f.zip external_llvm-dce4a407a24b04eebc6a376f8e62b41aaa7b071f.tar.gz external_llvm-dce4a407a24b04eebc6a376f8e62b41aaa7b071f.tar.bz2 |
Update LLVM for 3.5 rebase (r209712).
Change-Id: I149556c940fb7dc92d075273c87ff584f400941f
Diffstat (limited to 'test/CodeGen/R600/llvm.sin.ll')
-rw-r--r-- | test/CodeGen/R600/llvm.sin.ll | 44 |
1 files changed, 33 insertions, 11 deletions
diff --git a/test/CodeGen/R600/llvm.sin.ll b/test/CodeGen/R600/llvm.sin.ll index 9eb9983..41c363c 100644 --- a/test/CodeGen/R600/llvm.sin.ll +++ b/test/CodeGen/R600/llvm.sin.ll @@ -1,19 +1,41 @@ -;RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s +;RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s -check-prefix=EG -check-prefix=FUNC +;RUN: llc < %s -march=r600 -mcpu=SI | FileCheck %s -check-prefix=SI -check-prefix=FUNC -;CHECK: MULADD_IEEE * -;CHECK: FRACT * -;CHECK: ADD * -;CHECK: SIN * T{{[0-9]+\.[XYZW], PV\.[XYZW]}} +;FUNC-LABEL: test +;EG: MULADD_IEEE * +;EG: FRACT * +;EG: ADD * +;EG: SIN * T{{[0-9]+\.[XYZW], PV\.[XYZW]}} +;EG-NOT: SIN +;SI: V_MUL_F32 +;SI: V_SIN_F32 +;SI-NOT: V_SIN_F32 -define void @test(<4 x float> inreg %reg0) #0 { - %r0 = extractelement <4 x float> %reg0, i32 0 - %r1 = call float @llvm.sin.f32( float %r0) - %vec = insertelement <4 x float> undef, float %r1, i32 0 - call void @llvm.R600.store.swizzle(<4 x float> %vec, i32 0, i32 0) +define void @test(float addrspace(1)* %out, float %x) #1 { + %sin = call float @llvm.sin.f32(float %x) + store float %sin, float addrspace(1)* %out + ret void +} + +;FUNC-LABEL: testv +;EG: SIN * T{{[0-9]+\.[XYZW], PV\.[XYZW]}} +;EG: SIN * T{{[0-9]+\.[XYZW], PV\.[XYZW]}} +;EG: SIN * T{{[0-9]+\.[XYZW], PV\.[XYZW]}} +;EG: SIN * T{{[0-9]+\.[XYZW], PV\.[XYZW]}} +;EG-NOT: SIN +;SI: V_SIN_F32 +;SI: V_SIN_F32 +;SI: V_SIN_F32 +;SI: V_SIN_F32 +;SI-NOT: V_SIN_F32 + +define void @testv(<4 x float> addrspace(1)* %out, <4 x float> %vx) #1 { + %sin = call <4 x float> @llvm.sin.v4f32( <4 x float> %vx) + store <4 x float> %sin, <4 x float> addrspace(1)* %out ret void } declare float @llvm.sin.f32(float) readnone -declare void @llvm.R600.store.swizzle(<4 x float>, i32, i32) +declare <4 x float> @llvm.sin.v4f32(<4 x float>) readnone attributes #0 = { "ShaderType"="0" } |