Make Win32 put the SRet address into EAX, fixes PR15556
[oota-llvm.git] / test / CodeGen / X86 / win32_sret.ll
1 ; RUN: llc < %s -mtriple=i686-pc-win32 | FileCheck %s -check-prefix=WIN32
2 ; RUN: llc < %s -mtriple=i686-pc-mingw32 | FileCheck %s -check-prefix=MINGW_X86
3 ; RUN: llc < %s -mtriple=i386-pc-linux | FileCheck %s -check-prefix=LINUX
4 ; RUN: llc < %s -O0 -mtriple=i686-pc-win32 | FileCheck %s -check-prefix=WIN32
5 ; RUN: llc < %s -O0 -mtriple=i686-pc-mingw32 | FileCheck %s -check-prefix=MINGW_X86
6 ; RUN: llc < %s -O0 -mtriple=i386-pc-linux | FileCheck %s -check-prefix=LINUX
7
8 ; The SysV ABI used by most Unixes and Mingw on x86 specifies that an sret pointer
9 ; is callee-cleanup. However, in MSVC's cdecl calling convention, sret pointer
10 ; arguments are caller-cleanup like normal arguments.
11
12 define void @sret1(i8* sret %x) nounwind {
13 entry:
14 ; WIN32:      sret1
15 ; WIN32:      movb $42, (%eax)
16 ; WIN32-NOT:  popl %eax
17 ; WIN32:    {{ret$}}
18
19 ; MINGW_X86:  sret1
20 ; MINGW_X86:  ret $4
21
22 ; LINUX:      sret1
23 ; LINUX:      ret $4
24
25   store i8 42, i8* %x, align 4
26   ret void
27 }
28
29 define void @sret2(i8* sret %x, i8 %y) nounwind {
30 entry:
31 ; WIN32:      sret2
32 ; WIN32:      movb {{.*}}, (%eax)
33 ; WIN32-NOT:  popl %eax
34 ; WIN32:    {{ret$}}
35
36 ; MINGW_X86:  sret2
37 ; MINGW_X86:  ret $4
38
39 ; LINUX:      sret2
40 ; LINUX:      ret $4
41
42   store i8 %y, i8* %x
43   ret void
44 }
45
46 define void @sret3(i8* sret %x, i8* %y) nounwind {
47 entry:
48 ; WIN32:      sret3
49 ; WIN32:      movb $42, (%eax)
50 ; WIN32-NOT:  movb $13, (%eax)
51 ; WIN32-NOT:  popl %eax
52 ; WIN32:    {{ret$}}
53
54 ; MINGW_X86:  sret3
55 ; MINGW_X86:  ret $4
56
57 ; LINUX:      sret3
58 ; LINUX:      ret $4
59
60   store i8 42, i8* %x
61   store i8 13, i8* %y
62   ret void
63 }
64
65 ; PR15556
66 %struct.S4 = type { i32, i32, i32 }
67
68 define void @sret4(%struct.S4* noalias sret %agg.result) {
69 entry:
70 ; WIN32:     sret4
71 ; WIN32:     movl $42, (%eax)
72 ; WIN32-NOT: popl %eax
73 ; WIN32:   {{ret$}}
74
75 ; MINGW_X86: sret4
76 ; MINGW_X86: ret $4
77
78 ; LINUX:     sret4
79 ; LINUX:     ret $4
80
81   %x = getelementptr inbounds %struct.S4* %agg.result, i32 0, i32 0
82   store i32 42, i32* %x, align 4
83   ret void
84 }