[WinEH] Push and pop EBP for 32-bit funclets
[oota-llvm.git] / test / CodeGen / X86 / win-catchpad.ll
1 ; RUN: llc -mtriple=i686-pc-windows-msvc < %s | FileCheck --check-prefix=X86 %s
2 ; RUN: llc -mtriple=x86_64-pc-windows-msvc < %s | FileCheck --check-prefix=X64 %s
3
4 ; Loosely based on IR for this C++ source code:
5 ;   void f(int p);
6 ;   int main() {
7 ;     try {
8 ;       f(1);
9 ;     } catch (int) {
10 ;       f(2);
11 ;     } catch (...) {
12 ;       f(3);
13 ;     }
14 ;   }
15
16 %rtti.TypeDescriptor2 = type { i8**, i8*, [3 x i8] }
17 %eh.CatchableType = type { i32, i8*, i32, i32, i32, i32, i8* }
18 %eh.CatchableTypeArray.1 = type { i32, [1 x %eh.CatchableType*] }
19 %eh.ThrowInfo = type { i32, i8*, i8*, i8* }
20 %eh.CatchHandlerType = type { i32, i8* }
21
22 $"\01??_R0H@8" = comdat any
23
24 @"\01??_7type_info@@6B@" = external constant i8*
25 @"\01??_R0H@8" = linkonce_odr global %rtti.TypeDescriptor2 { i8** @"\01??_7type_info@@6B@", i8* null, [3 x i8] c".H\00" }, comdat
26
27 @llvm.eh.handlertype.H.0 = private unnamed_addr constant %eh.CatchHandlerType { i32 0, i8* bitcast (%rtti.TypeDescriptor2* @"\01??_R0H@8" to i8*) }, section "llvm.metadata"
28 @llvm.eh.handlertype.H.1 = private unnamed_addr constant %eh.CatchHandlerType { i32 1, i8* bitcast (%rtti.TypeDescriptor2* @"\01??_R0H@8" to i8*) }, section "llvm.metadata"
29
30 declare void @f(i32 %p, i32* %l)
31 declare i32 @__CxxFrameHandler3(...)
32
33 define i32 @try_catch_catch() personality i8* bitcast (i32 (...)* @__CxxFrameHandler3 to i8*) {
34 entry:
35   %local = alloca i32
36   invoke void @f(i32 1, i32* %local)
37           to label %try.cont unwind label %catch.dispatch
38
39 catch.dispatch:                                   ; preds = %entry
40   %0 = catchpad [%eh.CatchHandlerType* @llvm.eh.handlertype.H.0, i8* null]
41           to label %catch unwind label %catch.dispatch.2
42
43 catch:                                            ; preds = %catch.dispatch
44   invoke void @f(i32 2, i32* %local)
45           to label %invoke.cont.2 unwind label %catchendblock
46
47 invoke.cont.2:                                    ; preds = %catch
48   catchret %0 to label %try.cont
49
50 catch.dispatch.2:                                   ; preds = %catch.dispatch
51   %1 = catchpad [%eh.CatchHandlerType* @llvm.eh.handlertype.H.0, i8* null]
52           to label %catch.2 unwind label %catchendblock
53
54 catch.2:                                            ; preds = %catch.dispatch.2
55   invoke void @f(i32 3, i32* %local)
56           to label %invoke.cont.3 unwind label %catchendblock
57
58 invoke.cont.3:                                    ; preds = %catch.2
59   catchret %1 to label %try.cont
60
61 try.cont:                                         ; preds = %entry, %invoke.cont.2, %invoke.cont.3
62   ret i32 0
63
64 catchendblock:                                    ; preds = %catch, %catch.2, %catch.dispatch.2
65   catchendpad unwind to caller
66 }
67
68 ; X86-LABEL: _try_catch_catch:
69 ; X86: movl $0, -{{[0-9]+}}(%ebp)
70 ; X86: leal -[[local_offs:[0-9]+]](%ebp), %[[addr_reg:[a-z]+]]
71 ; X86-DAG: movl %[[addr_reg]], 4(%esp)
72 ; X86-DAG: movl $1, (%esp)
73 ; X86: calll _f
74 ; X86: [[contbb:Ltmp[0-9]+]]: # Block address taken
75 ; X86: movl -{{[0-9]+}}(%ebp), %esp
76 ; X86: retl
77
78 ; X86: [[catch1bb:LBB0_[0-9]+]]: # %catch{{$}}
79 ; X86: pushl %ebp
80 ; X86: addl $12, %ebp
81 ; X86: subl $8, %esp
82 ; X86: movl $1, -{{[0-9]+}}(%ebp)
83 ; X86: leal -[[local_offs]](%ebp), %[[addr_reg:[a-z]+]]
84 ; X86-DAG: movl %[[addr_reg]], 4(%esp)
85 ; X86-DAG: movl $2, (%esp)
86 ; X86: calll _f
87 ; X86: movl $[[contbb]], %eax
88 ; X86-NEXT: addl $8, %esp
89 ; X86-NEXT: popl %ebp
90 ; X86-NEXT: retl
91
92 ; X86: [[catch2bb:LBB0_[0-9]+]]: # %catch.2{{$}}
93 ; X86: pushl %ebp
94 ; X86: addl $12, %ebp
95 ; X86: subl $8, %esp
96 ; X86: movl $1, -{{[0-9]+}}(%ebp)
97 ; X86: leal -[[local_offs]](%ebp), %[[addr_reg:[a-z]+]]
98 ; X86-DAG: movl %[[addr_reg]], 4(%esp)
99 ; X86-DAG: movl $3, (%esp)
100 ; X86: calll _f
101 ; X86: movl $[[contbb]], %eax
102 ; X86-NEXT: addl $8, %esp
103 ; X86-NEXT: popl %ebp
104 ; X86-NEXT: retl
105
106 ; X86: L__ehtable$try_catch_catch:
107 ; X86: $handlerMap$0$try_catch_catch:
108 ; X86:   .long   0
109 ; X86:   .long   "??_R0H@8"
110 ; X86:   .long   0
111 ; X86:   .long   [[catch1bb]]
112 ; X86:   .long   0
113 ; X86:   .long   "??_R0H@8"
114 ; X86:   .long   0
115 ; X86:   .long   [[catch2bb]]
116
117 ; X64-LABEL: try_catch_catch:
118 ; X64: pushq %rbp
119 ; X64: .seh_pushreg 5
120 ; X64: subq $48, %rsp
121 ; X64: .seh_stackalloc 48
122 ; X64: leaq 48(%rsp), %rbp
123 ; X64: .seh_setframe 5, 48
124 ; X64-DAG: leaq -[[local_offs:[0-9]+]](%rbp), %rdx
125 ; X64-DAG: movl $1, %ecx
126 ; X64: callq f
127 ; X64: [[contbb:.Ltmp[0-9]+]]: # Block address taken
128 ; X64: addq $48, %rsp
129 ; X64: popq %rbp
130 ; X64: retq
131
132 ; X64: [[catch1bb:\.LBB0_[0-9]+]]: # %catch{{$}}
133 ; X64: movq %rdx, 16(%rsp)
134 ; X64: pushq %rbp
135 ; X64: movq %rdx, %rbp
136 ; X64: subq $32, %rsp
137 ; X64-DAG: leaq -[[local_offs]](%rbp), %rdx
138 ; X64-DAG: movl $2, %ecx
139 ; X64: callq f
140 ; X64: leaq [[contbb]](%rip), %rax
141 ; X64: addq $32, %rsp
142 ; X64: popq %rbp
143 ; X64: retq
144
145 ; X64: [[catch2bb:\.LBB0_[0-9]+]]: # %catch.2{{$}}
146 ; X64: movq %rdx, 16(%rsp)
147 ; X64: pushq %rbp
148 ; X64: movq %rdx, %rbp
149 ; X64: subq $32, %rsp
150 ; X64-DAG: leaq -[[local_offs]](%rbp), %rdx
151 ; X64-DAG: movl $3, %ecx
152 ; X64: callq f
153 ; X64: leaq [[contbb]](%rip), %rax
154 ; X64: addq $32, %rsp
155 ; X64: popq %rbp
156 ; X64: retq
157
158 ; X64: $handlerMap$0$try_catch_catch:
159 ; X64:   .long   0
160 ; X64:   .long   "??_R0H@8"@IMGREL
161 ; X64:   .long   0
162 ; X64:   .long   [[catch1bb]]@IMGREL
163 ; X64:   .long   56
164 ; X64:   .long   0
165 ; X64:   .long   "??_R0H@8"@IMGREL
166 ; X64:   .long   0
167 ; X64:   .long   [[catch2bb]]@IMGREL
168 ; X64:   .long   56