diff options
author | Stephen Hines <srhines@google.com> | 2014-04-23 16:57:46 -0700 |
---|---|---|
committer | Stephen Hines <srhines@google.com> | 2014-04-24 15:53:16 -0700 |
commit | 36b56886974eae4f9c5ebc96befd3e7bfe5de338 (patch) | |
tree | e6cfb69fbbd937f450eeb83bfb83b9da3b01275a /test/CodeGen/ARM64/fmuladd.ll | |
parent | 69a8640022b04415ae9fac62f8ab090601d8f889 (diff) | |
download | external_llvm-36b56886974eae4f9c5ebc96befd3e7bfe5de338.zip external_llvm-36b56886974eae4f9c5ebc96befd3e7bfe5de338.tar.gz external_llvm-36b56886974eae4f9c5ebc96befd3e7bfe5de338.tar.bz2 |
Update to LLVM 3.5a.
Change-Id: Ifadecab779f128e62e430c2b4f6ddd84953ed617
Diffstat (limited to 'test/CodeGen/ARM64/fmuladd.ll')
-rw-r--r-- | test/CodeGen/ARM64/fmuladd.ll | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/test/CodeGen/ARM64/fmuladd.ll b/test/CodeGen/ARM64/fmuladd.ll new file mode 100644 index 0000000..174d830 --- /dev/null +++ b/test/CodeGen/ARM64/fmuladd.ll @@ -0,0 +1,88 @@ +; RUN: llc -asm-verbose=false < %s -march=arm64 -arm64-neon-syntax=apple | FileCheck %s + +define float @test_f32(float* %A, float* %B, float* %C) nounwind { +;CHECK-LABEL: test_f32: +;CHECK: fmadd +;CHECK-NOT: fmadd + %tmp1 = load float* %A + %tmp2 = load float* %B + %tmp3 = load float* %C + %tmp4 = call float @llvm.fmuladd.f32(float %tmp1, float %tmp2, float %tmp3) + ret float %tmp4 +} + +define <2 x float> @test_v2f32(<2 x float>* %A, <2 x float>* %B, <2 x float>* %C) nounwind { +;CHECK-LABEL: test_v2f32: +;CHECK: fmla.2s +;CHECK-NOT: fmla.2s + %tmp1 = load <2 x float>* %A + %tmp2 = load <2 x float>* %B + %tmp3 = load <2 x float>* %C + %tmp4 = call <2 x float> @llvm.fmuladd.v2f32(<2 x float> %tmp1, <2 x float> %tmp2, <2 x float> %tmp3) + ret <2 x float> %tmp4 +} + +define <4 x float> @test_v4f32(<4 x float>* %A, <4 x float>* %B, <4 x float>* %C) nounwind { +;CHECK-LABEL: test_v4f32: +;CHECK: fmla.4s +;CHECK-NOT: fmla.4s + %tmp1 = load <4 x float>* %A + %tmp2 = load <4 x float>* %B + %tmp3 = load <4 x float>* %C + %tmp4 = call <4 x float> @llvm.fmuladd.v4f32(<4 x float> %tmp1, <4 x float> %tmp2, <4 x float> %tmp3) + ret <4 x float> %tmp4 +} + +define <8 x float> @test_v8f32(<8 x float>* %A, <8 x float>* %B, <8 x float>* %C) nounwind { +;CHECK-LABEL: test_v8f32: +;CHECK: fmla.4s +;CHECK: fmla.4s +;CHECK-NOT: fmla.4s + %tmp1 = load <8 x float>* %A + %tmp2 = load <8 x float>* %B + %tmp3 = load <8 x float>* %C + %tmp4 = call <8 x float> @llvm.fmuladd.v8f32(<8 x float> %tmp1, <8 x float> %tmp2, <8 x float> %tmp3) + ret <8 x float> %tmp4 +} + +define double @test_f64(double* %A, double* %B, double* %C) nounwind { +;CHECK-LABEL: test_f64: +;CHECK: fmadd +;CHECK-NOT: fmadd + %tmp1 = load double* %A + %tmp2 = load double* %B + %tmp3 = load double* %C + %tmp4 = call double @llvm.fmuladd.f64(double %tmp1, double %tmp2, double %tmp3) + ret double %tmp4 +} + +define <2 x double> @test_v2f64(<2 x double>* %A, <2 x double>* %B, <2 x double>* %C) nounwind { +;CHECK-LABEL: test_v2f64: +;CHECK: fmla.2d +;CHECK-NOT: fmla.2d + %tmp1 = load <2 x double>* %A + %tmp2 = load <2 x double>* %B + %tmp3 = load <2 x double>* %C + %tmp4 = call <2 x double> @llvm.fmuladd.v2f64(<2 x double> %tmp1, <2 x double> %tmp2, <2 x double> %tmp3) + ret <2 x double> %tmp4 +} + +define <4 x double> @test_v4f64(<4 x double>* %A, <4 x double>* %B, <4 x double>* %C) nounwind { +;CHECK-LABEL: test_v4f64: +;CHECK: fmla.2d +;CHECK: fmla.2d +;CHECK-NOT: fmla.2d + %tmp1 = load <4 x double>* %A + %tmp2 = load <4 x double>* %B + %tmp3 = load <4 x double>* %C + %tmp4 = call <4 x double> @llvm.fmuladd.v4f64(<4 x double> %tmp1, <4 x double> %tmp2, <4 x double> %tmp3) + ret <4 x double> %tmp4 +} + +declare float @llvm.fmuladd.f32(float, float, float) nounwind readnone +declare <2 x float> @llvm.fmuladd.v2f32(<2 x float>, <2 x float>, <2 x float>) nounwind readnone +declare <4 x float> @llvm.fmuladd.v4f32(<4 x float>, <4 x float>, <4 x float>) nounwind readnone +declare <8 x float> @llvm.fmuladd.v8f32(<8 x float>, <8 x float>, <8 x float>) nounwind readnone +declare double @llvm.fmuladd.f64(double, double, double) nounwind readnone +declare <2 x double> @llvm.fmuladd.v2f64(<2 x double>, <2 x double>, <2 x double>) nounwind readnone +declare <4 x double> @llvm.fmuladd.v4f64(<4 x double>, <4 x double>, <4 x double>) nounwind readnone |