Stackmap shadows should consider call returns a branch target.
[oota-llvm.git] / test / CodeGen / Mips / eh.ll
1 ; RUN: llc  < %s -march=mipsel | FileCheck %s -check-prefix=CHECK-EL
2 ; RUN: llc  < %s -march=mips   | FileCheck %s -check-prefix=CHECK-EB
3
4 @g1 = global double 0.000000e+00, align 8
5 @_ZTId = external constant i8*
6
7 define void @_Z1fd(double %i2) {
8 entry:
9 ; CHECK-EL:  addiu $sp, $sp
10 ; CHECK-EL:  .cfi_def_cfa_offset
11 ; CHECK-EL:  sdc1 $f20
12 ; CHECK-EL:  sw  $ra
13 ; CHECK-EL:  .cfi_offset 52, -8
14 ; CHECK-EL:  .cfi_offset 53, -4
15 ; CHECK-EB:  .cfi_offset 53, -8
16 ; CHECK-EB:  .cfi_offset 52, -4
17 ; CHECK-EL:  .cfi_offset 31, -12
18
19   %exception = tail call i8* @__cxa_allocate_exception(i32 8) nounwind
20   %0 = bitcast i8* %exception to double*
21   store double 3.200000e+00, double* %0, align 8
22   invoke void @__cxa_throw(i8* %exception, i8* bitcast (i8** @_ZTId to i8*), i8* null) noreturn
23           to label %unreachable unwind label %lpad
24
25 lpad:                                             ; preds = %entry
26 ; CHECK-EL:  # %lpad
27 ; CHECK-EL:  bne $5
28
29   %exn.val = landingpad { i8*, i32 } personality i32 (...)* @__gxx_personality_v0
30            catch i8* bitcast (i8** @_ZTId to i8*)
31   %exn = extractvalue { i8*, i32 } %exn.val, 0
32   %sel = extractvalue { i8*, i32 } %exn.val, 1
33   %1 = tail call i32 @llvm.eh.typeid.for(i8* bitcast (i8** @_ZTId to i8*)) nounwind
34   %2 = icmp eq i32 %sel, %1
35   br i1 %2, label %catch, label %eh.resume
36
37 catch:                                            ; preds = %lpad
38   %3 = tail call i8* @__cxa_begin_catch(i8* %exn) nounwind
39   %4 = bitcast i8* %3 to double*
40   %exn.scalar = load double* %4, align 8
41   %add = fadd double %exn.scalar, %i2
42   store double %add, double* @g1, align 8
43   tail call void @__cxa_end_catch() nounwind
44   ret void
45
46 eh.resume:                                        ; preds = %lpad
47   resume { i8*, i32 } %exn.val
48
49 unreachable:                                      ; preds = %entry
50   unreachable
51 }
52
53 declare i8* @__cxa_allocate_exception(i32)
54
55 declare i32 @__gxx_personality_v0(...)
56
57 declare i32 @llvm.eh.typeid.for(i8*) nounwind
58
59 declare void @__cxa_throw(i8*, i8*, i8*)
60
61 declare i8* @__cxa_begin_catch(i8*)
62
63 declare void @__cxa_end_catch()