diff options
author | Niels Ole Salscheider <niels_ole@salscheider-online.de> | 2013-08-10 10:38:47 +0000 |
---|---|---|
committer | Niels Ole Salscheider <niels_ole@salscheider-online.de> | 2013-08-10 10:38:47 +0000 |
commit | 4ab92e4d4bdf103f487b7383ca666ccc021c147a (patch) | |
tree | 317d0818ec3440222070e047c6da4d8018cb14e8 /test/CodeGen/R600/fma.ll | |
parent | 0a69bac39607c1f715835d951a6deb1c7ecbedfe (diff) | |
download | external_llvm-4ab92e4d4bdf103f487b7383ca666ccc021c147a.zip external_llvm-4ab92e4d4bdf103f487b7383ca666ccc021c147a.tar.gz external_llvm-4ab92e4d4bdf103f487b7383ca666ccc021c147a.tar.bz2 |
R600/SI: Add FMA pattern
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188135 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/R600/fma.ll')
-rw-r--r-- | test/CodeGen/R600/fma.ll | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/test/CodeGen/R600/fma.ll b/test/CodeGen/R600/fma.ll new file mode 100644 index 0000000..afef970 --- /dev/null +++ b/test/CodeGen/R600/fma.ll @@ -0,0 +1,31 @@ +; RUN: llc < %s -march=r600 -mcpu=SI | FileCheck %s + +; CHECK: @fma_f32 +; CHECK: V_FMA_F32 {{VGPR[0-9]+, VGPR[0-9]+, VGPR[0-9]+, VGPR[0-9]+}} + +define void @fma_f32(float addrspace(1)* %out, float addrspace(1)* %in1, + float addrspace(1)* %in2, float addrspace(1)* %in3) { + %r0 = load float addrspace(1)* %in1 + %r1 = load float addrspace(1)* %in2 + %r2 = load float addrspace(1)* %in3 + %r3 = tail call float @llvm.fma.f32(float %r0, float %r1, float %r2) + store float %r3, float addrspace(1)* %out + ret void +} + +declare float @llvm.fma.f32(float, float, float) + +; CHECK: @fma_f64 +; CHECK: V_FMA_F64 {{VGPR[0-9]+_VGPR[0-9]+, VGPR[0-9]+_VGPR[0-9]+, VGPR[0-9]+_VGPR[0-9]+, VGPR[0-9]+_VGPR[0-9]+}} + +define void @fma_f64(double addrspace(1)* %out, double addrspace(1)* %in1, + double addrspace(1)* %in2, double addrspace(1)* %in3) { + %r0 = load double addrspace(1)* %in1 + %r1 = load double addrspace(1)* %in2 + %r2 = load double addrspace(1)* %in3 + %r3 = tail call double @llvm.fma.f64(double %r0, double %r1, double %r2) + store double %r3, double addrspace(1)* %out + ret void +} + +declare double @llvm.fma.f64(double, double, double) |