[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / ExecutionEngine / OrcLazy / global-ctors-and-dtors.ll
blob67d392e71456addcd2ad484622bd5bdb3694f91c
1 ; Test that global constructors and destructors are run:
3 ; RUN: lli -jit-kind=orc-lazy -orc-lazy-debug=funcs-to-stdout -extra-module %s \
4 ; RUN:   %S/Inputs/noop-main.ll | FileCheck %s
6 ; Test that this is true for global constructors and destructors in other
7 ; JITDylibs.
8 ; RUN: lli -jit-kind=orc-lazy -orc-lazy-debug=funcs-to-stdout \
9 ; RUN:   -jd extra -extra-module %s -jd main %S/Inputs/noop-main.ll | FileCheck %s
11 ; CHECK: Hello
12 ; CHECK: [ {{.*}}main{{.*}} ]
13 ; CHECK: Goodbye
15 %class.Foo = type { i8 }
17 @f = global %class.Foo zeroinitializer, align 1
18 @__dso_handle = external global i8
19 @llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_hello.cpp, i8* null }]
20 @str = private unnamed_addr constant [6 x i8] c"Hello\00"
21 @str2 = private unnamed_addr constant [8 x i8] c"Goodbye\00"
23 define linkonce_odr void @_ZN3FooD1Ev(%class.Foo* nocapture readnone %this) unnamed_addr align 2 {
24 entry:
25   %puts.i = tail call i32 @puts(i8* getelementptr inbounds ([8 x i8], [8 x i8]* @str2, i64 0, i64 0))
26   ret void
29 declare i32 @__cxa_atexit(void (i8*)*, i8*, i8*)
31 define internal void @_GLOBAL__sub_I_hello.cpp() {
32 entry:
33   %puts.i.i.i = tail call i32 @puts(i8* getelementptr inbounds ([6 x i8], [6 x i8]* @str, i64 0, i64 0))
34   %0 = tail call i32 @__cxa_atexit(void (i8*)* bitcast (void (%class.Foo*)* @_ZN3FooD1Ev to void (i8*)*), i8* getelementptr inbounds (%class.Foo, %class.Foo* @f, i64 0, i32 0), i8* @__dso_handle)
35   ret void
38 declare i32 @puts(i8* nocapture readonly)