[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / Coroutines / coro-alloca-08.ll
blob59da1f5824b398853e1f0719ab166261a94d3f72
1 ; RUN: opt < %s -passes='cgscc(coro-split),simplifycfg,early-cse' -S | FileCheck %s
3 %"struct.std::coroutine_handle" = type { i8* }
4 %"struct.std::coroutine_handle.0" = type { %"struct.std::coroutine_handle" }
5 %"struct.lean_future<int>::Awaiter" = type { i32, %"struct.std::coroutine_handle.0" }
7 declare i8* @malloc(i64)
9 %i8.array = type { [100 x i8] }
10 declare void @consume.i8.array(%i8.array*)
12 ; The lifetime of testval starts and ends before coro.suspend. Even though consume.i8.array
13 ; might capture it, we can safely say it won't live across suspension.
14 define void @foo() "coroutine.presplit"="1" {
15 entry:
16   %testval = alloca %i8.array
17   %cast = getelementptr inbounds %i8.array, %i8.array* %testval, i64 0, i32 0, i64 0
18   %id = call token @llvm.coro.id(i32 0, i8* null, i8* null, i8* null)
19   %alloc = call i8* @malloc(i64 16) #3
20   %vFrame = call noalias nonnull i8* @llvm.coro.begin(token %id, i8* %alloc)
22   call void @llvm.lifetime.start.p0i8(i64 100, i8* %cast)
23   call void @consume.i8.array(%i8.array* %testval)
24   call void @llvm.lifetime.end.p0i8(i64 100, i8*  %cast)
26   %save = call token @llvm.coro.save(i8* null)
27   %suspend = call i8 @llvm.coro.suspend(token %save, i1 false)
28   switch i8 %suspend, label %exit [
29     i8 0, label %await.ready
30     i8 1, label %exit
31   ]
32 await.ready:
33   %StrayCoroSave = call token @llvm.coro.save(i8* null)
34   br label %exit
35 exit:
36   call i1 @llvm.coro.end(i8* null, i1 false)
37   ret void
40 ; The lifetime of testval starts after coro.suspend. So it will never live across suspension
41 ; points.
42 define void @bar() "coroutine.presplit"="1" {
43 entry:
44   %testval = alloca %i8.array
45   %cast = getelementptr inbounds %i8.array, %i8.array* %testval, i64 0, i32 0, i64 0
46   %id = call token @llvm.coro.id(i32 0, i8* null, i8* null, i8* null)
47   %alloc = call i8* @malloc(i64 16) #3
48   %vFrame = call noalias nonnull i8* @llvm.coro.begin(token %id, i8* %alloc)
49   %save = call token @llvm.coro.save(i8* null)
50   %suspend = call i8 @llvm.coro.suspend(token %save, i1 false)
51   switch i8 %suspend, label %exit [
52     i8 0, label %await.ready
53     i8 1, label %exit
54   ]
55 await.ready:
56   %StrayCoroSave = call token @llvm.coro.save(i8* null)
58   call void @llvm.lifetime.start.p0i8(i64 100, i8* %cast)
59   call void @consume.i8.array(%i8.array* %testval)
60   call void @llvm.lifetime.end.p0i8(i64 100, i8*  %cast)
62   br label %exit
63 exit:
64   call i1 @llvm.coro.end(i8* null, i1 false)
65   ret void
68 ; Verify that for both foo and bar, testval isn't put on the frame.
69 ; CHECK: %foo.Frame = type { void (%foo.Frame*)*, void (%foo.Frame*)*, i1 }
70 ; CHECK: %bar.Frame = type { void (%bar.Frame*)*, void (%bar.Frame*)*, i1 }
72 declare token @llvm.coro.id(i32, i8* readnone, i8* nocapture readonly, i8*)
73 declare i1 @llvm.coro.alloc(token) #3
74 declare i64 @llvm.coro.size.i64() #5
75 declare i8* @llvm.coro.begin(token, i8* writeonly) #3
76 declare token @llvm.coro.save(i8*) #3
77 declare i8* @llvm.coro.frame() #5
78 declare i8 @llvm.coro.suspend(token, i1) #3
79 declare i8* @llvm.coro.free(token, i8* nocapture readonly) #2
80 declare i1 @llvm.coro.end(i8*, i1) #3
81 declare void @llvm.lifetime.start.p0i8(i64, i8* nocapture) #4
82 declare void @llvm.lifetime.end.p0i8(i64, i8* nocapture) #4