diff options
Diffstat (limited to 'llvm/test/CodeGen/R600/ftrunc.ll')
| -rw-r--r-- | llvm/test/CodeGen/R600/ftrunc.ll | 84 | 
1 files changed, 84 insertions, 0 deletions
| diff --git a/llvm/test/CodeGen/R600/ftrunc.ll b/llvm/test/CodeGen/R600/ftrunc.ll new file mode 100644 index 00000000000..6b235ffbd98 --- /dev/null +++ b/llvm/test/CodeGen/R600/ftrunc.ll @@ -0,0 +1,84 @@ +; RUN: llc -march=r600 -mcpu=bonaire < %s | FileCheck -check-prefix=CI %s + +declare double @llvm.trunc.f64(double) nounwind readnone +declare <2 x double> @llvm.trunc.v2f64(<2 x double>) nounwind readnone +declare <3 x double> @llvm.trunc.v3f64(<3 x double>) nounwind readnone +declare <4 x double> @llvm.trunc.v4f64(<4 x double>) nounwind readnone +declare <8 x double> @llvm.trunc.v8f64(<8 x double>) nounwind readnone +declare <16 x double> @llvm.trunc.v16f64(<16 x double>) nounwind readnone + +; CI-LABEL: @ftrunc_f64: +; CI: V_TRUNC_F64_e32 +define void @ftrunc_f64(double addrspace(1)* %out, double %x) { +  %y = call double @llvm.trunc.f64(double %x) nounwind readnone +  store double %y, double addrspace(1)* %out +  ret void +} + +; CI-LABEL: @ftrunc_v2f64: +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +define void @ftrunc_v2f64(<2 x double> addrspace(1)* %out, <2 x double> %x) { +  %y = call <2 x double> @llvm.trunc.v2f64(<2 x double> %x) nounwind readnone +  store <2 x double> %y, <2 x double> addrspace(1)* %out +  ret void +} + +; FIXME-CI-LABEL: @ftrunc_v3f64: +; FIXME-CI: V_TRUNC_F64_e32 +; FIXME-CI: V_TRUNC_F64_e32 +; FIXME-CI: V_TRUNC_F64_e32 +; define void @ftrunc_v3f64(<3 x double> addrspace(1)* %out, <3 x double> %x) { +;   %y = call <3 x double> @llvm.trunc.v3f64(<3 x double> %x) nounwind readnone +;   store <3 x double> %y, <3 x double> addrspace(1)* %out +;   ret void +; } + +; CI-LABEL: @ftrunc_v4f64: +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +define void @ftrunc_v4f64(<4 x double> addrspace(1)* %out, <4 x double> %x) { +  %y = call <4 x double> @llvm.trunc.v4f64(<4 x double> %x) nounwind readnone +  store <4 x double> %y, <4 x double> addrspace(1)* %out +  ret void +} + +; CI-LABEL: @ftrunc_v8f64: +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +define void @ftrunc_v8f64(<8 x double> addrspace(1)* %out, <8 x double> %x) { +  %y = call <8 x double> @llvm.trunc.v8f64(<8 x double> %x) nounwind readnone +  store <8 x double> %y, <8 x double> addrspace(1)* %out +  ret void +} + +; CI-LABEL: @ftrunc_v16f64: +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +; CI: V_TRUNC_F64_e32 +define void @ftrunc_v16f64(<16 x double> addrspace(1)* %out, <16 x double> %x) { +  %y = call <16 x double> @llvm.trunc.v16f64(<16 x double> %x) nounwind readnone +  store <16 x double> %y, <16 x double> addrspace(1)* %out +  ret void +} | 

