[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / Coroutines / coro-padding.ll
blob87b5bf732d9df91285167c9ff76f6c643afe8166
1 ; Check that we will insert the correct padding if natural alignment of the
2 ; spilled data does not match the alignment specified in alloca instruction.
3 ; RUN: opt < %s -coro-split -S | FileCheck %s
5 %PackedStruct = type <{ i64 }>
7 declare void @consume(%PackedStruct*)
9 define i8* @f() "coroutine.presplit"="1" {
10 entry:
11   %data = alloca %PackedStruct, align 8
12   %id = call token @llvm.coro.id(i32 0, i8* null, i8* null, i8* null)
13   %size = call i32 @llvm.coro.size.i32()
14   %alloc = call i8* @malloc(i32 %size)
15   %hdl = call i8* @llvm.coro.begin(token %id, i8* %alloc)
16   call void @consume(%PackedStruct* %data)
17   %0 = call i8 @llvm.coro.suspend(token none, i1 false)
18   switch i8 %0, label %suspend [i8 0, label %resume
19                                 i8 1, label %cleanup]
20 resume:
21   call void @consume(%PackedStruct* %data)
22   br label %cleanup
24 cleanup:
25   %mem = call i8* @llvm.coro.free(token %id, i8* %hdl)
26   call void @free(i8* %mem)
27   br label %suspend
28 suspend:
29   call i1 @llvm.coro.end(i8* %hdl, i1 0)
30   ret i8* %hdl
33 ; See if the padding was inserted before PackedStruct
34 ; CHECK-LABEL: %f.Frame = type { void (%f.Frame*)*, void (%f.Frame*)*, i1, i1, [6 x i8], %PackedStruct }
36 ; See if we used correct index to access packed struct (padding is field 4)
37 ; CHECK-LABEL: @f(
38 ; CHECK:       %[[DATA:.+]] = getelementptr inbounds %f.Frame, %f.Frame* %FramePtr, i32 0, i32 5
39 ; CHECK-NEXT:  call void @consume(%PackedStruct* %[[DATA]])
40 ; CHECK: ret i8*
42 ; See if we used correct index to access packed struct (padding is field 4)
43 ; CHECK-LABEL: @f.resume(
44 ; CHECK:       %[[DATA:.+]] = getelementptr inbounds %f.Frame, %f.Frame* %FramePtr, i32 0, i32 5
45 ; CHECK-NEXT:  call void @consume(%PackedStruct* %[[DATA]])
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* @malloc(i32)
60 declare double @print(double)
61 declare void @free(i8*)