[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / Coroutines / coro-split-sink-lifetime-02.ll
blob8d54cb6b017daadece01e933462a9678e06e6dd0
1 ; Tests that coro-split will optimize the lifetime.start maker of each local variable,
2 ; sink them to the places after the suspend block.
3 ; RUN: opt < %s -passes='cgscc(coro-split),simplifycfg,early-cse' -S | FileCheck %s
5 %"struct.std::coroutine_handle" = type { i8* }
6 %"struct.std::coroutine_handle.0" = type { %"struct.std::coroutine_handle" }
7 %"struct.lean_future<int>::Awaiter" = type { i32, %"struct.std::coroutine_handle.0" }
9 declare i1 @getcond()
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   %cast = bitcast i32* %testval to i8*
18   ; lifetime of %testval starts here, but not used until await.ready.
19   call void @llvm.lifetime.start.p0i8(i64 4, i8* %cast)
20   %id = call token @llvm.coro.id(i32 0, i8* null, i8* null, i8* null)
21   %alloc = call i8* @malloc(i64 16) #3
22   %vFrame = call noalias nonnull i8* @llvm.coro.begin(token %id, i8* %alloc)
23   %testcond = call i1 @getcond()
24   br i1 %testcond, label %if.suspend, label %else.direct
26 if.suspend:
27   %save = call token @llvm.coro.save(i8* null)
28   %Result.i19 = getelementptr inbounds %"struct.lean_future<int>::Awaiter", %"struct.lean_future<int>::Awaiter"* %ref.tmp7, i64 0, i32 0
29   %suspend = call i8 @llvm.coro.suspend(token %save, i1 false)
30   switch i8 %suspend, label %exit [
31     i8 0, label %await.ready
32     i8 1, label %exit
33   ]
35 else.direct:
36   br label %after.await
38 await.ready:
39   %StrayCoroSave = call token @llvm.coro.save(i8* null)
40   %val = load i32, i32* %Result.i19
41   %test = load i32, i32* %testval
42   call void @print(i32 %test)
43   call void @print(i32 %val)
44   br label %after.await
46 after.await:
47   %test1 = load i32, i32* %testval
48   call void @print(i32 %test1)
49   call void @llvm.lifetime.end.p0i8(i64 4, i8*  %cast)
50   br label %exit
52 exit:
53   call i1 @llvm.coro.end(i8* null, i1 false)
54   ret void
57 ; CHECK-LABEL: @a.resume(
58 ; CHECK:    %[[VAL:testval.+]] = getelementptr inbounds %a.Frame
59 ; CHECK-NOT:     call void @llvm.lifetime.start.p0i8(i64 4, i8* %{{.*}})
60 ; CHECK:         %test = load i32, i32* %[[VAL]]
62 declare token @llvm.coro.id(i32, i8* readnone, i8* nocapture readonly, i8*)
63 declare i1 @llvm.coro.alloc(token) #3
64 declare noalias nonnull i8* @"\01??2@YAPEAX_K@Z"(i64) local_unnamed_addr
65 declare i64 @llvm.coro.size.i64() #5
66 declare i8* @llvm.coro.begin(token, i8* writeonly) #3
67 declare void @"\01?puts@@YAXZZ"(...)
68 declare token @llvm.coro.save(i8*) #3
69 declare i8* @llvm.coro.frame() #5
70 declare i8 @llvm.coro.suspend(token, i1) #3
71 declare void @"\01??3@YAXPEAX@Z"(i8*) local_unnamed_addr #10
72 declare i8* @llvm.coro.free(token, i8* nocapture readonly) #2
73 declare i1 @llvm.coro.end(i8*, i1) #3
74 declare void @llvm.lifetime.start.p0i8(i64, i8* nocapture) #4
75 declare void @llvm.lifetime.end.p0i8(i64, i8* nocapture) #4