[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / Coroutines / coro-alloc-with-param-O0.ll
blob71f2905cc904b97874a7df452ee7158c73f1af44
1 ; Check that we can handle the case when both alloc function and
2 ; the user body consume the same argument.
3 ; RUN: opt < %s -passes='cgscc(coro-split),simplifycfg,early-cse' -S | FileCheck %s
5 ; using copy of this (as it would happen under -O0)
6 define i8* @f_copy(i64 %this_arg) "coroutine.presplit"="1" {
7 entry:
8   %this.addr = alloca i64
9   store i64 %this_arg, i64* %this.addr
10   %this = load i64, i64* %this.addr
11   %id = call token @llvm.coro.id(i32 0, i8* null, i8* null, i8* null)
12   %size = call i32 @llvm.coro.size.i32()
13   %alloc = call i8* @myAlloc(i64 %this, i32 %size)
14   %hdl = call i8* @llvm.coro.begin(token %id, i8* %alloc)
15   %0 = call i8 @llvm.coro.suspend(token none, i1 false)
16   switch i8 %0, label %suspend [i8 0, label %resume
17                                 i8 1, label %cleanup]
18 resume:
19   call void @print2(i64 %this)
20   br label %cleanup
22 cleanup:
23   %mem = call i8* @llvm.coro.free(token %id, i8* %hdl)
24   call void @free(i8* %mem)
25   br label %suspend
26 suspend:
27   call i1 @llvm.coro.end(i8* %hdl, i1 0)
28   ret i8* %hdl
31 ; See if %this was added to the frame
32 ; CHECK: %f_copy.Frame = type { void (%f_copy.Frame*)*, void (%f_copy.Frame*)*, i64, i1 }
34 ; See that %this is spilled into the frame
35 ; CHECK-LABEL: define i8* @f_copy(i64 %this_arg)
36 ; CHECK:  %this.addr = alloca i64, align 8
37 ; CHECK:  store i64 %this_arg, i64* %this.addr, align 4
38 ; CHECK:  %this.spill.addr = getelementptr inbounds %f_copy.Frame, %f_copy.Frame* %FramePtr, i32 0, i32 2
39 ; CHECK:  store i64 %this_arg, i64* %this.spill.addr
40 ; CHECK:  ret i8* %hdl
42 ; See that %this was loaded from the frame
43 ; CHECK-LABEL: @f_copy.resume(
44 ; CHECK:  %this.reload = load i64, i64* %this.reload.addr
45 ; CHECK:  call void @print2(i64 %this.reload)
46 ; CHECK:  ret void
48 declare i8* @llvm.coro.free(token, i8*)
49 declare i32 @llvm.coro.size.i32()
50 declare i8  @llvm.coro.suspend(token, i1)
51 declare void @llvm.coro.resume(i8*)
52 declare void @llvm.coro.destroy(i8*)
54 declare token @llvm.coro.id(i32, i8*, i8*, i8*)
55 declare i1 @llvm.coro.alloc(token)
56 declare i8* @llvm.coro.begin(token, i8*)
57 declare i1 @llvm.coro.end(i8*, i1)
59 declare noalias i8* @myAlloc(i64, i32)
60 declare double @print(double)
61 declare void @print2(i64)
62 declare void @free(i8*)