]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/ExecutionEngine/MCJIT/eh-lg-pic.ll
Vendor import of llvm trunk r338150:
[FreeBSD/FreeBSD.git] / test / ExecutionEngine / MCJIT / eh-lg-pic.ll
1 ; REQUIRES: cxx-shared-library
2 ; RUN: %lli -relocation-model=pic -code-model=large %s
3 ; XFAIL: cygwin, win32, mingw, mips-, mipsel-, i686, i386, aarch64, arm
4 declare i8* @__cxa_allocate_exception(i64)
5 declare void @__cxa_throw(i8*, i8*, i8*)
6 declare i32 @__gxx_personality_v0(...)
7 declare void @__cxa_end_catch()
8 declare i8* @__cxa_begin_catch(i8*)
9
10 @_ZTIi = external constant i8*
11
12 define void @throwException() {
13   %exception = tail call i8* @__cxa_allocate_exception(i64 4)
14   call void @__cxa_throw(i8* %exception, i8* bitcast (i8** @_ZTIi to i8*), i8* null)
15   unreachable
16 }
17
18 ; Make an internal function so we exercise R_X86_64_GOTOFF64 relocations.
19 define internal dso_local void @use_gotoff() {
20   ret void
21 }
22
23 define i32 @main() personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) {
24 entry:
25   call void @use_gotoff()
26   invoke void @throwException()
27           to label %try.cont unwind label %lpad
28
29 lpad:
30   %p = landingpad { i8*, i32 }
31           catch i8* bitcast (i8** @_ZTIi to i8*)
32   %e = extractvalue { i8*, i32 } %p, 0
33   call i8* @__cxa_begin_catch(i8* %e)
34   call void @__cxa_end_catch()
35   br label %try.cont
36
37 try.cont:
38   ret i32 0
39 }