2011-05-11 16:40:50 +02:00
|
|
|
; RUN: llc < %s -mcpu=corei7 -march=x86 -mattr=+sse2,-sse41 -o %t
|
|
|
|
; RUN: grep movss %t | count 4
|
2007-08-15 15:36:28 +02:00
|
|
|
; RUN: grep movhlps %t | count 1
|
2011-05-11 16:40:50 +02:00
|
|
|
; RUN: not grep pshufd %t
|
2007-08-15 15:36:28 +02:00
|
|
|
; RUN: grep unpckhpd %t | count 1
|
2006-04-20 19:59:30 +02:00
|
|
|
|
2008-09-27 01:41:32 +02:00
|
|
|
define void @test1(<4 x float>* %F, float* %f) nounwind {
|
2008-02-21 08:42:26 +01:00
|
|
|
%tmp = load <4 x float>* %F ; <<4 x float>> [#uses=2]
|
2009-06-05 00:49:04 +02:00
|
|
|
%tmp7 = fadd <4 x float> %tmp, %tmp ; <<4 x float>> [#uses=1]
|
2008-02-21 08:42:26 +01:00
|
|
|
%tmp2 = extractelement <4 x float> %tmp7, i32 0 ; <float> [#uses=1]
|
2006-04-20 19:59:30 +02:00
|
|
|
store float %tmp2, float* %f
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2008-09-27 01:41:32 +02:00
|
|
|
define float @test2(<4 x float>* %F, float* %f) nounwind {
|
2008-02-21 08:42:26 +01:00
|
|
|
%tmp = load <4 x float>* %F ; <<4 x float>> [#uses=2]
|
2009-06-05 00:49:04 +02:00
|
|
|
%tmp7 = fadd <4 x float> %tmp, %tmp ; <<4 x float>> [#uses=1]
|
2008-02-21 08:42:26 +01:00
|
|
|
%tmp2 = extractelement <4 x float> %tmp7, i32 2 ; <float> [#uses=1]
|
|
|
|
ret float %tmp2
|
2006-04-20 19:59:30 +02:00
|
|
|
}
|
|
|
|
|
2008-09-27 01:41:32 +02:00
|
|
|
define void @test3(float* %R, <4 x float>* %P1) nounwind {
|
2008-02-21 08:42:26 +01:00
|
|
|
%X = load <4 x float>* %P1 ; <<4 x float>> [#uses=1]
|
|
|
|
%tmp = extractelement <4 x float> %X, i32 3 ; <float> [#uses=1]
|
2006-04-20 19:59:30 +02:00
|
|
|
store float %tmp, float* %R
|
|
|
|
ret void
|
|
|
|
}
|
2006-10-27 23:05:18 +02:00
|
|
|
|
2008-09-27 01:41:32 +02:00
|
|
|
define double @test4(double %A) nounwind {
|
2008-02-21 08:42:26 +01:00
|
|
|
%tmp1 = call <2 x double> @foo( ) ; <<2 x double>> [#uses=1]
|
|
|
|
%tmp2 = extractelement <2 x double> %tmp1, i32 1 ; <double> [#uses=1]
|
2009-06-05 00:49:04 +02:00
|
|
|
%tmp3 = fadd double %tmp2, %A ; <double> [#uses=1]
|
2008-02-21 08:42:26 +01:00
|
|
|
ret double %tmp3
|
2006-10-27 23:05:18 +02:00
|
|
|
}
|
|
|
|
|
2008-02-21 08:42:26 +01:00
|
|
|
declare <2 x double> @foo()
|