[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / Coroutines / coro-split-02.ll
blobb0242731c7b36acd1f1a019c4a159207e61fab7e
1 ; Tests that coro-split can handle the case when a code after coro.suspend uses
2 ; a value produces between coro.save and coro.suspend (%Result.i19)
3 ; and checks whether stray coro.saves are properly removed
4 ; RUN: opt < %s -passes='cgscc(coro-split),simplifycfg,early-cse,simplifycfg' -S | FileCheck %s
6 %"struct.std::coroutine_handle" = type { i8* }
7 %"struct.std::coroutine_handle.0" = type { %"struct.std::coroutine_handle" }
8 %"struct.lean_future<int>::Awaiter" = type { i32, %"struct.std::coroutine_handle.0" }
10 declare i8* @malloc(i64)
11 declare void @print(i32)
13 define void @a() "coroutine.presplit"="1" {
14 entry:
15   %ref.tmp7 = alloca %"struct.lean_future<int>::Awaiter", align 8
16   %testval = alloca i32
17   %id = call token @llvm.coro.id(i32 0, i8* null, i8* null, i8* null)
18   %alloc = call i8* @malloc(i64 16) #3
19   %vFrame = call noalias nonnull i8* @llvm.coro.begin(token %id, i8* %alloc)
21   %save = call token @llvm.coro.save(i8* null)
22   %Result.i19 = getelementptr inbounds %"struct.lean_future<int>::Awaiter", %"struct.lean_future<int>::Awaiter"* %ref.tmp7, i64 0, i32 0
23   %suspend = call i8 @llvm.coro.suspend(token %save, i1 false)
24   switch i8 %suspend, label %exit [
25     i8 0, label %await.ready
26     i8 1, label %exit
27   ]
28 await.ready:
29   %StrayCoroSave = call token @llvm.coro.save(i8* null)
30   %val = load i32, i32* %Result.i19
31   %cast = bitcast i32* %testval to i8*
32   call void @llvm.lifetime.start.p0i8(i64 4, i8* %cast)
33   %test = load i32, i32* %testval
34   call void @print(i32 %test)
35   call void @llvm.lifetime.end.p0i8(i64 4, i8*  %cast)
36   call void @print(i32 %val)
37   br label %exit
38 exit:
39   call i1 @llvm.coro.end(i8* null, i1 false)
40   ret void
43 ; CHECK-LABEL: @a.resume(
44 ; CHECK:         %testval = alloca i32
45 ; CHECK:         getelementptr inbounds %a.Frame
46 ; CHECK-NEXT:    getelementptr inbounds %"struct.lean_future<int>::Awaiter"
47 ; CHECK-NOT:     call token @llvm.coro.save(i8* null)
48 ; CHECK-NEXT:    %val = load i32, i32* %Result
49 ; CHECK-NEXT:    %cast = bitcast i32* %testval to i8*
50 ; CHECK-NEXT:    call void @llvm.lifetime.start.p0i8(i64 4, i8* %cast)
51 ; CHECK-NEXT:    %test = load i32, i32* %testval
52 ; CHECK-NEXT:    call void @print(i32 %test)
53 ; CHECK-NEXT:    call void @llvm.lifetime.end.p0i8(i64 4, i8* %cast)
54 ; CHECK-NEXT:    call void @print(i32 %val)
55 ; CHECK-NEXT:    ret void
57 declare token @llvm.coro.id(i32, i8* readnone, i8* nocapture readonly, i8*)
58 declare i1 @llvm.coro.alloc(token) #3
59 declare noalias nonnull i8* @"\01??2@YAPEAX_K@Z"(i64) local_unnamed_addr
60 declare i64 @llvm.coro.size.i64() #5
61 declare i8* @llvm.coro.begin(token, i8* writeonly) #3
62 declare void @"\01?puts@@YAXZZ"(...)
63 declare token @llvm.coro.save(i8*) #3
64 declare i8* @llvm.coro.frame() #5
65 declare i8 @llvm.coro.suspend(token, i1) #3
66 declare void @"\01??3@YAXPEAX@Z"(i8*) local_unnamed_addr #10
67 declare i8* @llvm.coro.free(token, i8* nocapture readonly) #2
68 declare i1 @llvm.coro.end(i8*, i1) #3
69 declare void @llvm.lifetime.start.p0i8(i64, i8* nocapture) #4
70 declare void @llvm.lifetime.end.p0i8(i64, i8* nocapture) #4