[llvm-commits] [llvm] r51525 - /llvm/trunk/test/CodeGen/X86/vec_loadhl.ll

Evan Cheng evan.cheng at apple.com
Fri May 23 17:10:02 PDT 2008


Author: evancheng
Date: Fri May 23 19:10:02 2008
New Revision: 51525

URL: http://llvm.org/viewvc/llvm-project?rev=51525&view=rev
Log:
New loadl_pd and loadh_pd tests.

Added:
    llvm/trunk/test/CodeGen/X86/vec_loadhl.ll

Added: llvm/trunk/test/CodeGen/X86/vec_loadhl.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/vec_loadhl.ll?rev=51525&view=auto

==============================================================================
--- llvm/trunk/test/CodeGen/X86/vec_loadhl.ll (added)
+++ llvm/trunk/test/CodeGen/X86/vec_loadhl.ll Fri May 23 19:10:02 2008
@@ -0,0 +1,19 @@
+; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep movlpd
+; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | grep movhpd
+; RUN: llvm-as < %s | llc -march=x86 -mattr=+sse2 | not grep movsd
+
+define void @t1(<2 x double>* %r, <2 x double>* %A, double %B) nounwind  {
+	%tmp3 = load <2 x double>* %A, align 16
+	%tmp7 = insertelement <2 x double> undef, double %B, i32 0
+	%tmp9 = shufflevector <2 x double> %tmp3, <2 x double> %tmp7, <2 x i32> < i32 2, i32 1 >
+	store <2 x double> %tmp9, <2 x double>* %r, align 16
+	ret void
+}
+
+define void @t2(<2 x double>* %r, <2 x double>* %A, double %B) nounwind  {
+	%tmp3 = load <2 x double>* %A, align 16
+	%tmp7 = insertelement <2 x double> undef, double %B, i32 0
+	%tmp9 = shufflevector <2 x double> %tmp3, <2 x double> %tmp7, <2 x i32> < i32 0, i32 2 >
+	store <2 x double> %tmp9, <2 x double>* %r, align 16
+	ret void
+}





More information about the llvm-commits mailing list