Stephen Lin | 73de7bf | 2013-07-09 18:16:56 +0000 | [diff] [blame] | 1 | ; RUN: llc -mcpu=pwr6 -mattr=+altivec < %s | FileCheck %s |
| 2 | |
| 3 | target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v128:128:128-n32:64" |
| 4 | target triple = "powerpc64-unknown-linux-gnu" |
| 5 | |
| 6 | declare <2 x float> @llvm.fmuladd.v2f32(<2 x float> %val, <2 x float>, <2 x float>) |
| 7 | declare <4 x float> @llvm.fmuladd.v4f32(<4 x float> %val, <4 x float>, <4 x float>) |
| 8 | declare <8 x float> @llvm.fmuladd.v8f32(<8 x float> %val, <8 x float>, <8 x float>) |
| 9 | declare <2 x double> @llvm.fmuladd.v2f64(<2 x double> %val, <2 x double>, <2 x double>) |
| 10 | declare <4 x double> @llvm.fmuladd.v4f64(<4 x double> %val, <4 x double>, <4 x double>) |
| 11 | |
| 12 | define <2 x float> @v2f32_fmuladd(<2 x float> %x) nounwind readnone { |
| 13 | entry: |
| 14 | %fmuladd = call <2 x float> @llvm.fmuladd.v2f32 (<2 x float> %x, <2 x float> %x, <2 x float> %x) |
| 15 | ret <2 x float> %fmuladd |
| 16 | } |
| 17 | ; fmuladd (<2 x float>) is promoted to fmuladd (<4 x float>) |
Stephen Lin | 764d8d3 | 2013-07-12 14:54:12 +0000 | [diff] [blame^] | 18 | ; CHECK-LABEL: v2f32_fmuladd: |
Stephen Lin | 73de7bf | 2013-07-09 18:16:56 +0000 | [diff] [blame] | 19 | ; CHECK: vmaddfp {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}} |
| 20 | |
| 21 | define <4 x float> @v4f32_fmuladd(<4 x float> %x) nounwind readnone { |
| 22 | entry: |
| 23 | %fmuladd = call <4 x float> @llvm.fmuladd.v4f32 (<4 x float> %x, <4 x float> %x, <4 x float> %x) |
| 24 | ret <4 x float> %fmuladd |
| 25 | } |
Stephen Lin | 764d8d3 | 2013-07-12 14:54:12 +0000 | [diff] [blame^] | 26 | ; CHECK-LABEL: v4f32_fmuladd: |
Stephen Lin | 73de7bf | 2013-07-09 18:16:56 +0000 | [diff] [blame] | 27 | ; CHECK: vmaddfp {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}} |
| 28 | |
| 29 | define <8 x float> @v8f32_fmuladd(<8 x float> %x) nounwind readnone { |
| 30 | entry: |
| 31 | %fmuladd = call <8 x float> @llvm.fmuladd.v8f32 (<8 x float> %x, <8 x float> %x, <8 x float> %x) |
| 32 | ret <8 x float> %fmuladd |
| 33 | } |
Stephen Lin | 764d8d3 | 2013-07-12 14:54:12 +0000 | [diff] [blame^] | 34 | ; CHECK-LABEL: v8f32_fmuladd: |
Stephen Lin | 73de7bf | 2013-07-09 18:16:56 +0000 | [diff] [blame] | 35 | ; CHECK: vmaddfp {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}} |
| 36 | ; CHECK: vmaddfp {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}} |
| 37 | |
| 38 | define <2 x double> @v2f64_fmuladd(<2 x double> %x) nounwind readnone { |
| 39 | entry: |
| 40 | %fmuladd = call <2 x double> @llvm.fmuladd.v2f64 (<2 x double> %x, <2 x double> %x, <2 x double> %x) |
| 41 | ret <2 x double> %fmuladd |
| 42 | } |
Stephen Lin | 764d8d3 | 2013-07-12 14:54:12 +0000 | [diff] [blame^] | 43 | ; CHECK-LABEL: v2f64_fmuladd: |
Stephen Lin | 73de7bf | 2013-07-09 18:16:56 +0000 | [diff] [blame] | 44 | ; CHECK: fmadd {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}} |
| 45 | ; CHECK: fmadd {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}} |
| 46 | |
| 47 | define <4 x double> @v4f64_fmuladd(<4 x double> %x) nounwind readnone { |
| 48 | entry: |
| 49 | %fmuladd = call <4 x double> @llvm.fmuladd.v4f64 (<4 x double> %x, <4 x double> %x, <4 x double> %x) |
| 50 | ret <4 x double> %fmuladd |
| 51 | } |
Stephen Lin | 764d8d3 | 2013-07-12 14:54:12 +0000 | [diff] [blame^] | 52 | ; CHECK-LABEL: v4f64_fmuladd: |
Stephen Lin | 73de7bf | 2013-07-09 18:16:56 +0000 | [diff] [blame] | 53 | ; CHECK: fmadd {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}} |
| 54 | ; CHECK: fmadd {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}} |
| 55 | ; CHECK: fmadd {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}} |
| 56 | ; CHECK: fmadd {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}} |