diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2015-02-20 02:44:13 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2015-02-20 02:44:13 +0000 |
commit | 66778098204e99b854bf4fcda59fae01a0eaf706 (patch) | |
tree | 838063debea1887e6df4761b4ca7d03a41f26636 /llvm/test/CodeGen/X86/mmx-arg-passing.ll | |
parent | 6faacf47721848be8eae706ff9f177b8b7c0b527 (diff) | |
download | bcm5719-llvm-66778098204e99b854bf4fcda59fae01a0eaf706.tar.gz bcm5719-llvm-66778098204e99b854bf4fcda59fae01a0eaf706.zip |
[x86] Clean up a couple of test cases with the new update script. Split
one test case that is only partially tested in 32-bits into two test
cases so that the script doesn't generate massive spews of tests for the
cases we don't care about.
llvm-svn: 229955
Diffstat (limited to 'llvm/test/CodeGen/X86/mmx-arg-passing.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/mmx-arg-passing.ll | 80 |
1 files changed, 28 insertions, 52 deletions
diff --git a/llvm/test/CodeGen/X86/mmx-arg-passing.ll b/llvm/test/CodeGen/X86/mmx-arg-passing.ll index 728c668edde..4e003107620 100644 --- a/llvm/test/CodeGen/X86/mmx-arg-passing.ll +++ b/llvm/test/CodeGen/X86/mmx-arg-passing.ll @@ -1,5 +1,5 @@ -; RUN: llc < %s -mtriple=i386-apple-darwin -mattr=+mmx | FileCheck %s -check-prefix=X86-32 -; RUN: llc < %s -mtriple=x86_64-apple-darwin -mattr=+mmx,+sse2 | FileCheck %s -check-prefix=X86-64 +; RUN: llc < %s -mtriple=i386-apple-darwin -mattr=+mmx | FileCheck %s --check-prefix=X86-32 +; RUN: llc < %s -mtriple=x86_64-apple-darwin -mattr=+mmx,+sse2 | FileCheck %s --check-prefix=X86-64 ; ; On Darwin x86-32, v8i8, v4i16, v2i32 values are passed in MM[0-2]. ; On Darwin x86-32, v1i64 values are passed in memory. In this example, they @@ -10,64 +10,40 @@ @u1 = external global x86_mmx define void @t1(x86_mmx %v1) nounwind { - store x86_mmx %v1, x86_mmx* @u1, align 8 - ret void - ; X86-32-LABEL: t1: -; X86-32: movq %mm0 - +; X86-32: ## BB#0: +; X86-32-NEXT: movl L_u1$non_lazy_ptr, %eax +; X86-32-NEXT: movq %mm0, (%eax) +; X86-32-NEXT: retl +; ; X86-64-LABEL: t1: -; X86-64: movdq2q %xmm0 -; X86-64: movq %mm0 +; X86-64: ## BB#0: +; X86-64-NEXT: movdq2q %xmm0, %mm0 +; X86-64-NEXT: movq _u1@{{.*}}(%rip), %rax +; X86-64-NEXT: movq %mm0, (%rax) +; X86-64-NEXT: retq + store x86_mmx %v1, x86_mmx* @u1, align 8 + ret void } @u2 = external global x86_mmx define void @t2(<1 x i64> %v1) nounwind { +; X86-32-LABEL: t2: +; X86-32: ## BB#0: +; X86-32-NEXT: movl {{[0-9]+}}(%esp), %eax +; X86-32-NEXT: movl {{[0-9]+}}(%esp), %ecx +; X86-32-NEXT: movl L_u2$non_lazy_ptr, %edx +; X86-32-NEXT: movl %ecx, 4(%edx) +; X86-32-NEXT: movl %eax, (%edx) +; X86-32-NEXT: retl +; +; X86-64-LABEL: t2: +; X86-64: ## BB#0: +; X86-64-NEXT: movq _u2@{{.*}}(%rip), %rax +; X86-64-NEXT: movq %rdi, (%rax) +; X86-64-NEXT: retq %tmp = bitcast <1 x i64> %v1 to x86_mmx store x86_mmx %tmp, x86_mmx* @u2, align 8 ret void - -; X86-32-LABEL: t2: -; X86-32: movl 4(%esp) -; X86-32: movl 8(%esp) - -; X86-64-LABEL: t2: -; X86-64: movq %rdi -} - -@g_v8qi = external global <8 x i8> - -define void @t3() nounwind { -; X86-64-LABEL: t3: -; X86-64-NOT: movdq2q -; X86-64: punpcklbw - %tmp3 = load <8 x i8>* @g_v8qi, align 8 - %tmp3a = bitcast <8 x i8> %tmp3 to x86_mmx - %tmp4 = tail call i32 (...)* @pass_v8qi( x86_mmx %tmp3a ) nounwind - ret void } - -define void @t4(x86_mmx %v1, x86_mmx %v2) nounwind { -; X86-64-LABEL: t4: -; X86-64: movdq2q -; X86-64: movdq2q -; X86-64-NOT: movdq2q - %v1a = bitcast x86_mmx %v1 to <8 x i8> - %v2b = bitcast x86_mmx %v2 to <8 x i8> - %tmp3 = add <8 x i8> %v1a, %v2b - %tmp3a = bitcast <8 x i8> %tmp3 to x86_mmx - %tmp4 = tail call i32 (...)* @pass_v8qi( x86_mmx %tmp3a ) nounwind - ret void -} - -define void @t5() nounwind { -; X86-64-LABEL: t5: -; X86-64-NOT: movdq2q -; X86-64: xorl %edi, %edi - call void @pass_v1di( <1 x i64> zeroinitializer ) - ret void -} - -declare i32 @pass_v8qi(...) -declare void @pass_v1di(<1 x i64>) |