2013-01-31 20:23:43 +00:00
|
|
|
; RUN: llc < %s -mattr=+sse2 -mtriple=i686-apple-darwin -mcpu=core2 | FileCheck %s -check-prefix=SSE2-Darwin
|
|
|
|
; RUN: llc < %s -mattr=+sse2 -mtriple=i686-pc-mingw32 -mcpu=core2 | FileCheck %s -check-prefix=SSE2-Mingw32
|
2011-01-07 19:35:30 +00:00
|
|
|
; RUN: llc < %s -mattr=+sse,-sse2 -mtriple=i686-apple-darwin -mcpu=core2 | FileCheck %s -check-prefix=SSE1
|
2010-04-01 08:25:26 +00:00
|
|
|
; RUN: llc < %s -mattr=-sse -mtriple=i686-apple-darwin -mcpu=core2 | FileCheck %s -check-prefix=NOSSE
|
2010-04-01 20:27:45 +00:00
|
|
|
; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=core2 | FileCheck %s -check-prefix=X86-64
|
2008-05-22 21:19:19 +00:00
|
|
|
|
2010-04-08 07:37:57 +00:00
|
|
|
@.str = internal constant [25 x i8] c"image\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00\00"
|
|
|
|
@.str2 = internal constant [30 x i8] c"xxxxxxxxxxxxxxxxxxxxxxxxxxxxx\00", align 4
|
2008-05-22 21:19:19 +00:00
|
|
|
|
2010-04-01 06:04:33 +00:00
|
|
|
define void @t1(i32 %argc, i8** %argv) nounwind {
|
2008-05-22 21:19:19 +00:00
|
|
|
entry:
|
2013-07-14 06:24:09 +00:00
|
|
|
; SSE2-Darwin-LABEL: t1:
|
2013-01-31 20:23:43 +00:00
|
|
|
; SSE2-Darwin: movsd _.str+16, %xmm0
|
|
|
|
; SSE2-Darwin: movsd %xmm0, 16(%esp)
|
|
|
|
; SSE2-Darwin: movaps _.str, %xmm0
|
|
|
|
; SSE2-Darwin: movaps %xmm0
|
|
|
|
; SSE2-Darwin: movb $0, 24(%esp)
|
|
|
|
|
2013-07-14 06:24:09 +00:00
|
|
|
; SSE2-Mingw32-LABEL: t1:
|
2013-01-31 20:23:43 +00:00
|
|
|
; SSE2-Mingw32: movsd _.str+16, %xmm0
|
|
|
|
; SSE2-Mingw32: movsd %xmm0, 16(%esp)
|
|
|
|
; SSE2-Mingw32: movaps _.str, %xmm0
|
|
|
|
; SSE2-Mingw32: movups %xmm0
|
|
|
|
; SSE2-Mingw32: movb $0, 24(%esp)
|
2010-04-01 06:04:33 +00:00
|
|
|
|
2013-07-14 06:24:09 +00:00
|
|
|
; SSE1-LABEL: t1:
|
2011-01-07 19:35:30 +00:00
|
|
|
; SSE1: movaps _.str, %xmm0
|
|
|
|
; SSE1: movaps %xmm0
|
2012-12-10 23:21:26 +00:00
|
|
|
; SSE1: movb $0, 24(%esp)
|
2012-12-12 00:42:09 +00:00
|
|
|
; SSE1: movl $0, 20(%esp)
|
|
|
|
; SSE1: movl $0, 16(%esp)
|
2011-01-07 19:35:30 +00:00
|
|
|
|
2013-07-14 06:24:09 +00:00
|
|
|
; NOSSE-LABEL: t1:
|
2010-04-01 06:04:33 +00:00
|
|
|
; NOSSE: movb $0
|
|
|
|
; NOSSE: movl $0
|
|
|
|
; NOSSE: movl $0
|
|
|
|
; NOSSE: movl $0
|
|
|
|
; NOSSE: movl $0
|
|
|
|
; NOSSE: movl $101
|
|
|
|
; NOSSE: movl $1734438249
|
2010-04-01 20:27:45 +00:00
|
|
|
|
2013-07-14 06:24:09 +00:00
|
|
|
; X86-64-LABEL: t1:
|
2010-04-08 07:37:57 +00:00
|
|
|
; X86-64: movaps _.str(%rip), %xmm0
|
2010-04-01 20:27:45 +00:00
|
|
|
; X86-64: movaps %xmm0
|
|
|
|
; X86-64: movb $0
|
|
|
|
; X86-64: movq $0
|
2010-04-08 07:37:57 +00:00
|
|
|
%tmp1 = alloca [25 x i8]
|
|
|
|
%tmp2 = bitcast [25 x i8]* %tmp1 to i8*
|
2011-06-18 06:05:24 +00:00
|
|
|
call void @llvm.memcpy.p0i8.p0i8.i32(i8* %tmp2, i8* getelementptr inbounds ([25 x i8]* @.str, i32 0, i32 0), i32 25, i32 1, i1 false)
|
2010-04-08 07:37:57 +00:00
|
|
|
unreachable
|
2008-05-22 21:19:19 +00:00
|
|
|
}
|
2010-04-01 06:04:33 +00:00
|
|
|
|
|
|
|
;rdar://7774704
|
|
|
|
%struct.s0 = type { [2 x double] }
|
|
|
|
|
|
|
|
define void @t2(%struct.s0* nocapture %a, %struct.s0* nocapture %b) nounwind ssp {
|
|
|
|
entry:
|
2013-07-14 06:24:09 +00:00
|
|
|
; SSE2-Darwin-LABEL: t2:
|
2013-10-15 23:33:07 +00:00
|
|
|
; SSE2-Darwin: movaps (%ecx), %xmm0
|
2013-01-31 20:23:43 +00:00
|
|
|
; SSE2-Darwin: movaps %xmm0, (%eax)
|
|
|
|
|
2013-07-14 06:24:09 +00:00
|
|
|
; SSE2-Mingw32-LABEL: t2:
|
2013-10-15 23:33:07 +00:00
|
|
|
; SSE2-Mingw32: movaps (%ecx), %xmm0
|
2013-01-31 20:23:43 +00:00
|
|
|
; SSE2-Mingw32: movaps %xmm0, (%eax)
|
2010-04-01 06:04:33 +00:00
|
|
|
|
2013-07-14 06:24:09 +00:00
|
|
|
; SSE1-LABEL: t2:
|
2013-10-15 23:33:07 +00:00
|
|
|
; SSE1: movaps (%ecx), %xmm0
|
2011-01-07 19:35:30 +00:00
|
|
|
; SSE1: movaps %xmm0, (%eax)
|
|
|
|
|
2013-07-14 06:24:09 +00:00
|
|
|
; NOSSE-LABEL: t2:
|
2010-04-01 06:04:33 +00:00
|
|
|
; NOSSE: movl
|
|
|
|
; NOSSE: movl
|
|
|
|
; NOSSE: movl
|
|
|
|
; NOSSE: movl
|
|
|
|
; NOSSE: movl
|
|
|
|
; NOSSE: movl
|
|
|
|
; NOSSE: movl
|
|
|
|
; NOSSE: movl
|
|
|
|
; NOSSE: movl
|
|
|
|
; NOSSE: movl
|
2010-04-01 20:27:45 +00:00
|
|
|
|
2013-07-14 06:24:09 +00:00
|
|
|
; X86-64-LABEL: t2:
|
2010-04-01 20:27:45 +00:00
|
|
|
; X86-64: movaps (%rsi), %xmm0
|
|
|
|
; X86-64: movaps %xmm0, (%rdi)
|
2010-04-01 06:04:33 +00:00
|
|
|
%tmp2 = bitcast %struct.s0* %a to i8* ; <i8*> [#uses=1]
|
|
|
|
%tmp3 = bitcast %struct.s0* %b to i8* ; <i8*> [#uses=1]
|
2011-06-18 06:05:24 +00:00
|
|
|
tail call void @llvm.memcpy.p0i8.p0i8.i32(i8* %tmp2, i8* %tmp3, i32 16, i32 16, i1 false)
|
2010-04-01 06:04:33 +00:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define void @t3(%struct.s0* nocapture %a, %struct.s0* nocapture %b) nounwind ssp {
|
|
|
|
entry:
|
2013-07-14 06:24:09 +00:00
|
|
|
; SSE2-Darwin-LABEL: t3:
|
2013-10-15 23:33:07 +00:00
|
|
|
; SSE2-Darwin: movsd (%ecx), %xmm0
|
|
|
|
; SSE2-Darwin: movsd 8(%ecx), %xmm1
|
2013-01-31 20:23:43 +00:00
|
|
|
; SSE2-Darwin: movsd %xmm1, 8(%eax)
|
|
|
|
; SSE2-Darwin: movsd %xmm0, (%eax)
|
|
|
|
|
2013-07-14 06:24:09 +00:00
|
|
|
; SSE2-Mingw32-LABEL: t3:
|
2013-10-15 23:33:07 +00:00
|
|
|
; SSE2-Mingw32: movsd (%ecx), %xmm0
|
|
|
|
; SSE2-Mingw32: movsd 8(%ecx), %xmm1
|
2013-01-31 20:23:43 +00:00
|
|
|
; SSE2-Mingw32: movsd %xmm1, 8(%eax)
|
|
|
|
; SSE2-Mingw32: movsd %xmm0, (%eax)
|
2011-01-07 19:35:30 +00:00
|
|
|
|
2013-07-14 06:24:09 +00:00
|
|
|
; SSE1-LABEL: t3:
|
2011-01-07 19:35:30 +00:00
|
|
|
; SSE1: movl
|
|
|
|
; SSE1: movl
|
|
|
|
; SSE1: movl
|
|
|
|
; SSE1: movl
|
|
|
|
; SSE1: movl
|
|
|
|
; SSE1: movl
|
|
|
|
; SSE1: movl
|
|
|
|
; SSE1: movl
|
|
|
|
; SSE1: movl
|
|
|
|
; SSE1: movl
|
2010-04-01 06:04:33 +00:00
|
|
|
|
2013-07-14 06:24:09 +00:00
|
|
|
; NOSSE-LABEL: t3:
|
2010-04-01 06:04:33 +00:00
|
|
|
; NOSSE: movl
|
|
|
|
; NOSSE: movl
|
|
|
|
; NOSSE: movl
|
|
|
|
; NOSSE: movl
|
|
|
|
; NOSSE: movl
|
|
|
|
; NOSSE: movl
|
|
|
|
; NOSSE: movl
|
|
|
|
; NOSSE: movl
|
|
|
|
; NOSSE: movl
|
|
|
|
; NOSSE: movl
|
2010-04-01 20:27:45 +00:00
|
|
|
|
2013-07-14 06:24:09 +00:00
|
|
|
; X86-64-LABEL: t3:
|
2011-01-07 19:35:30 +00:00
|
|
|
; X86-64: movq (%rsi), %rax
|
|
|
|
; X86-64: movq 8(%rsi), %rcx
|
|
|
|
; X86-64: movq %rcx, 8(%rdi)
|
|
|
|
; X86-64: movq %rax, (%rdi)
|
2010-04-01 06:04:33 +00:00
|
|
|
%tmp2 = bitcast %struct.s0* %a to i8* ; <i8*> [#uses=1]
|
|
|
|
%tmp3 = bitcast %struct.s0* %b to i8* ; <i8*> [#uses=1]
|
2011-06-18 06:05:24 +00:00
|
|
|
tail call void @llvm.memcpy.p0i8.p0i8.i32(i8* %tmp2, i8* %tmp3, i32 16, i32 8, i1 false)
|
2010-04-01 06:04:33 +00:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2010-04-08 07:37:57 +00:00
|
|
|
define void @t4() nounwind {
|
|
|
|
entry:
|
2013-07-14 06:24:09 +00:00
|
|
|
; SSE2-Darwin-LABEL: t4:
|
2013-01-31 20:23:43 +00:00
|
|
|
; SSE2-Darwin: movw $120
|
|
|
|
; SSE2-Darwin: movl $2021161080
|
|
|
|
; SSE2-Darwin: movl $2021161080
|
|
|
|
; SSE2-Darwin: movl $2021161080
|
|
|
|
; SSE2-Darwin: movl $2021161080
|
|
|
|
; SSE2-Darwin: movl $2021161080
|
|
|
|
; SSE2-Darwin: movl $2021161080
|
|
|
|
; SSE2-Darwin: movl $2021161080
|
|
|
|
|
2013-07-14 06:24:09 +00:00
|
|
|
; SSE2-Mingw32-LABEL: t4:
|
2013-01-31 20:23:43 +00:00
|
|
|
; SSE2-Mingw32: movw $120
|
|
|
|
; SSE2-Mingw32: movl $2021161080
|
|
|
|
; SSE2-Mingw32: movl $2021161080
|
|
|
|
; SSE2-Mingw32: movl $2021161080
|
|
|
|
; SSE2-Mingw32: movl $2021161080
|
|
|
|
; SSE2-Mingw32: movl $2021161080
|
|
|
|
; SSE2-Mingw32: movl $2021161080
|
|
|
|
; SSE2-Mingw32: movl $2021161080
|
2011-01-07 19:35:30 +00:00
|
|
|
|
2013-07-14 06:24:09 +00:00
|
|
|
; SSE1-LABEL: t4:
|
2011-01-07 19:35:30 +00:00
|
|
|
; SSE1: movw $120
|
|
|
|
; SSE1: movl $2021161080
|
|
|
|
; SSE1: movl $2021161080
|
|
|
|
; SSE1: movl $2021161080
|
|
|
|
; SSE1: movl $2021161080
|
|
|
|
; SSE1: movl $2021161080
|
|
|
|
; SSE1: movl $2021161080
|
|
|
|
; SSE1: movl $2021161080
|
2010-04-08 07:37:57 +00:00
|
|
|
|
2013-07-14 06:24:09 +00:00
|
|
|
; NOSSE-LABEL: t4:
|
2010-04-08 07:37:57 +00:00
|
|
|
; NOSSE: movw $120
|
|
|
|
; NOSSE: movl $2021161080
|
|
|
|
; NOSSE: movl $2021161080
|
|
|
|
; NOSSE: movl $2021161080
|
|
|
|
; NOSSE: movl $2021161080
|
|
|
|
; NOSSE: movl $2021161080
|
|
|
|
; NOSSE: movl $2021161080
|
|
|
|
; NOSSE: movl $2021161080
|
|
|
|
|
2013-07-14 06:24:09 +00:00
|
|
|
; X86-64-LABEL: t4:
|
2010-04-08 07:37:57 +00:00
|
|
|
; X86-64: movabsq $8680820740569200760, %rax
|
|
|
|
; X86-64: movq %rax
|
2011-01-07 19:35:30 +00:00
|
|
|
; X86-64: movq %rax
|
|
|
|
; X86-64: movq %rax
|
2010-04-08 07:37:57 +00:00
|
|
|
; X86-64: movw $120
|
|
|
|
; X86-64: movl $2021161080
|
|
|
|
%tmp1 = alloca [30 x i8]
|
|
|
|
%tmp2 = bitcast [30 x i8]* %tmp1 to i8*
|
2011-06-18 06:05:24 +00:00
|
|
|
call void @llvm.memcpy.p0i8.p0i8.i32(i8* %tmp2, i8* getelementptr inbounds ([30 x i8]* @.str2, i32 0, i32 0), i32 30, i32 1, i1 false)
|
2010-04-08 07:37:57 +00:00
|
|
|
unreachable
|
|
|
|
}
|
|
|
|
|
2011-06-18 06:05:24 +00:00
|
|
|
declare void @llvm.memcpy.p0i8.p0i8.i32(i8* nocapture, i8* nocapture, i32, i32, i1) nounwind
|