Matt Arsenault | c6f8fdb | 2014-06-26 01:28:05 +0000 | [diff] [blame] | 1 | ; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs < %s | FileCheck -check-prefix=SI -check-prefix=FUNC %s |
Matt Arsenault | 83592a2 | 2014-07-24 17:41:01 +0000 | [diff] [blame] | 2 | ; RUN: llc -march=r600 -mcpu=redwood -verify-machineinstrs < %s | FileCheck -check-prefix=EG -check-prefix=FUNC %s |
Niels Ole Salscheider | 6509ac6 | 2013-08-10 10:38:47 +0000 | [diff] [blame] | 3 | |
Matt Arsenault | c6f8fdb | 2014-06-26 01:28:05 +0000 | [diff] [blame] | 4 | declare float @llvm.fma.f32(float, float, float) nounwind readnone |
| 5 | declare <2 x float> @llvm.fma.v2f32(<2 x float>, <2 x float>, <2 x float>) nounwind readnone |
| 6 | declare <4 x float> @llvm.fma.v4f32(<4 x float>, <4 x float>, <4 x float>) nounwind readnone |
Niels Ole Salscheider | 6509ac6 | 2013-08-10 10:38:47 +0000 | [diff] [blame] | 7 | |
Matt Arsenault | c6f8fdb | 2014-06-26 01:28:05 +0000 | [diff] [blame] | 8 | ; FUNC-LABEL: @fma_f32 |
| 9 | ; SI: V_FMA_F32 {{v[0-9]+, v[0-9]+, v[0-9]+, v[0-9]+}} |
Niels Ole Salscheider | 6509ac6 | 2013-08-10 10:38:47 +0000 | [diff] [blame] | 10 | define void @fma_f32(float addrspace(1)* %out, float addrspace(1)* %in1, |
| 11 | float addrspace(1)* %in2, float addrspace(1)* %in3) { |
| 12 | %r0 = load float addrspace(1)* %in1 |
| 13 | %r1 = load float addrspace(1)* %in2 |
| 14 | %r2 = load float addrspace(1)* %in3 |
| 15 | %r3 = tail call float @llvm.fma.f32(float %r0, float %r1, float %r2) |
| 16 | store float %r3, float addrspace(1)* %out |
| 17 | ret void |
| 18 | } |
| 19 | |
Matt Arsenault | c6f8fdb | 2014-06-26 01:28:05 +0000 | [diff] [blame] | 20 | ; FUNC-LABEL: @fma_v2f32 |
| 21 | ; SI: V_FMA_F32 |
| 22 | ; SI: V_FMA_F32 |
| 23 | define void @fma_v2f32(<2 x float> addrspace(1)* %out, <2 x float> addrspace(1)* %in1, |
| 24 | <2 x float> addrspace(1)* %in2, <2 x float> addrspace(1)* %in3) { |
| 25 | %r0 = load <2 x float> addrspace(1)* %in1 |
| 26 | %r1 = load <2 x float> addrspace(1)* %in2 |
| 27 | %r2 = load <2 x float> addrspace(1)* %in3 |
| 28 | %r3 = tail call <2 x float> @llvm.fma.v2f32(<2 x float> %r0, <2 x float> %r1, <2 x float> %r2) |
| 29 | store <2 x float> %r3, <2 x float> addrspace(1)* %out |
| 30 | ret void |
| 31 | } |
Niels Ole Salscheider | 6509ac6 | 2013-08-10 10:38:47 +0000 | [diff] [blame] | 32 | |
Matt Arsenault | c6f8fdb | 2014-06-26 01:28:05 +0000 | [diff] [blame] | 33 | ; FUNC-LABEL: @fma_v4f32 |
| 34 | ; SI: V_FMA_F32 |
| 35 | ; SI: V_FMA_F32 |
| 36 | ; SI: V_FMA_F32 |
| 37 | ; SI: V_FMA_F32 |
| 38 | define void @fma_v4f32(<4 x float> addrspace(1)* %out, <4 x float> addrspace(1)* %in1, |
| 39 | <4 x float> addrspace(1)* %in2, <4 x float> addrspace(1)* %in3) { |
| 40 | %r0 = load <4 x float> addrspace(1)* %in1 |
| 41 | %r1 = load <4 x float> addrspace(1)* %in2 |
| 42 | %r2 = load <4 x float> addrspace(1)* %in3 |
| 43 | %r3 = tail call <4 x float> @llvm.fma.v4f32(<4 x float> %r0, <4 x float> %r1, <4 x float> %r2) |
| 44 | store <4 x float> %r3, <4 x float> addrspace(1)* %out |
| 45 | ret void |
| 46 | } |