blob: 5683b607934c88d8e3712e108839a790e4c42b83 [file] [log] [blame]
Stephen Lin73de7bf2013-07-09 18:16:56 +00001; RUN: llc -mcpu=pwr6 -mattr=+altivec < %s | FileCheck %s
2
3target 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"
4target triple = "powerpc64-unknown-linux-gnu"
5
6declare <2 x float> @llvm.fmuladd.v2f32(<2 x float> %val, <2 x float>, <2 x float>)
7declare <4 x float> @llvm.fmuladd.v4f32(<4 x float> %val, <4 x float>, <4 x float>)
8declare <8 x float> @llvm.fmuladd.v8f32(<8 x float> %val, <8 x float>, <8 x float>)
9declare <2 x double> @llvm.fmuladd.v2f64(<2 x double> %val, <2 x double>, <2 x double>)
10declare <4 x double> @llvm.fmuladd.v4f64(<4 x double> %val, <4 x double>, <4 x double>)
11
12define <2 x float> @v2f32_fmuladd(<2 x float> %x) nounwind readnone {
13entry:
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 Lin764d8d32013-07-12 14:54:12 +000018; CHECK-LABEL: v2f32_fmuladd:
Stephen Lin73de7bf2013-07-09 18:16:56 +000019; CHECK: vmaddfp {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}
20
21define <4 x float> @v4f32_fmuladd(<4 x float> %x) nounwind readnone {
22entry:
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 Lin764d8d32013-07-12 14:54:12 +000026; CHECK-LABEL: v4f32_fmuladd:
Stephen Lin73de7bf2013-07-09 18:16:56 +000027; CHECK: vmaddfp {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}
28
29define <8 x float> @v8f32_fmuladd(<8 x float> %x) nounwind readnone {
30entry:
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 Lin764d8d32013-07-12 14:54:12 +000034; CHECK-LABEL: v8f32_fmuladd:
Stephen Lin73de7bf2013-07-09 18:16:56 +000035; CHECK: vmaddfp {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}
36; CHECK: vmaddfp {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}
37
38define <2 x double> @v2f64_fmuladd(<2 x double> %x) nounwind readnone {
39entry:
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 Lin764d8d32013-07-12 14:54:12 +000043; CHECK-LABEL: v2f64_fmuladd:
Stephen Lin73de7bf2013-07-09 18:16:56 +000044; CHECK: fmadd {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}
45; CHECK: fmadd {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}, {{[0-9]+}}
46
47define <4 x double> @v4f64_fmuladd(<4 x double> %x) nounwind readnone {
48entry:
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 Lin764d8d32013-07-12 14:54:12 +000052; CHECK-LABEL: v4f64_fmuladd:
Stephen Lin73de7bf2013-07-09 18:16:56 +000053; 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]+}}