|
| 1 | +; Tests that some target (e.g. ppc) can support tail call under condition. |
| 2 | +; RUN: opt < %s -passes='cgscc(coro-split),simplifycfg,early-cse' -S \ |
| 3 | +; RUN: -mtriple=powerpc64le-unknown-linux-gnu -mcpu=pwr9 | FileCheck %s |
| 4 | +; RUN: opt < %s -passes='cgscc(coro-split),simplifycfg,early-cse' -S \ |
| 5 | +; RUN: -mtriple=powerpc64le-unknown-linux-gnu -mcpu=pwr10 --code-model=medium \ |
| 6 | +; RUN: | FileCheck %s --check-prefix=CHECK-PCREL |
| 7 | + |
| 8 | +define void @f() #0 { |
| 9 | +entry: |
| 10 | + %id = call token @llvm.coro.id(i32 0, i8* null, i8* null, i8* null) |
| 11 | + %alloc = call i8* @malloc(i64 16) #3 |
| 12 | + %vFrame = call noalias nonnull i8* @llvm.coro.begin(token %id, i8* %alloc) |
| 13 | + |
| 14 | + %save = call token @llvm.coro.save(i8* null) |
| 15 | + %addr1 = call i8* @llvm.coro.subfn.addr(i8* null, i8 0) |
| 16 | + %pv1 = bitcast i8* %addr1 to void (i8*)* |
| 17 | + call fastcc void %pv1(i8* null) |
| 18 | + |
| 19 | + %suspend = call i8 @llvm.coro.suspend(token %save, i1 false) |
| 20 | + switch i8 %suspend, label %exit [ |
| 21 | + i8 0, label %await.ready |
| 22 | + i8 1, label %exit |
| 23 | + ] |
| 24 | +await.ready: |
| 25 | + %save2 = call token @llvm.coro.save(i8* null) |
| 26 | + %addr2 = call i8* @llvm.coro.subfn.addr(i8* null, i8 0) |
| 27 | + %pv2 = bitcast i8* %addr2 to void (i8*)* |
| 28 | + call fastcc void %pv2(i8* null) |
| 29 | + |
| 30 | + %suspend2 = call i8 @llvm.coro.suspend(token %save2, i1 false) |
| 31 | + switch i8 %suspend2, label %exit [ |
| 32 | + i8 0, label %exit |
| 33 | + i8 1, label %exit |
| 34 | + ] |
| 35 | +exit: |
| 36 | + call i1 @llvm.coro.end(i8* null, i1 false) |
| 37 | + ret void |
| 38 | +} |
| 39 | + |
| 40 | +; Verify that in the initial function resume is not marked with musttail. |
| 41 | +; CHECK-LABEL: @f( |
| 42 | +; CHECK: %[[addr1:.+]] = call i8* @llvm.coro.subfn.addr(i8* null, i8 0) |
| 43 | +; CHECK-NEXT: %[[pv1:.+]] = bitcast i8* %[[addr1]] to void (i8*)* |
| 44 | +; CHECK-NOT: musttail call fastcc void %[[pv1]](i8* null) |
| 45 | + |
| 46 | +; Verify that ppc target not using PC-Relative addressing in the resume part resume call is not marked with musttail. |
| 47 | +; CHECK-LABEL: @f.resume( |
| 48 | +; CHECK: %[[addr2:.+]] = call i8* @llvm.coro.subfn.addr(i8* null, i8 0) |
| 49 | +; CHECK-NEXT: %[[pv2:.+]] = bitcast i8* %[[addr2]] to void (i8*)* |
| 50 | +; CHECK-NEXT: call fastcc void %[[pv2]](i8* null) |
| 51 | + |
| 52 | +; Verify that ppc target using PC-Relative addressing in the resume part resume call is marked with musttail. |
| 53 | +; CHECK-PCREL-LABEL: @f.resume( |
| 54 | +; CHECK-PCREL: %[[addr2:.+]] = call i8* @llvm.coro.subfn.addr(i8* null, i8 0) |
| 55 | +; CHECK-PCREL-NEXT: %[[pv2:.+]] = bitcast i8* %[[addr2]] to void (i8*)* |
| 56 | +; CHECK-PCREL-NEXT: musttail call fastcc void %[[pv2]](i8* null) |
| 57 | +; CHECK-PCREL-NEXT: ret void |
| 58 | + |
| 59 | +declare token @llvm.coro.id(i32, i8* readnone, i8* nocapture readonly, i8*) #1 |
| 60 | +declare i1 @llvm.coro.alloc(token) #2 |
| 61 | +declare i64 @llvm.coro.size.i64() #3 |
| 62 | +declare i8* @llvm.coro.begin(token, i8* writeonly) #2 |
| 63 | +declare token @llvm.coro.save(i8*) #2 |
| 64 | +declare i8* @llvm.coro.frame() #3 |
| 65 | +declare i8 @llvm.coro.suspend(token, i1) #2 |
| 66 | +declare i8* @llvm.coro.free(token, i8* nocapture readonly) #1 |
| 67 | +declare i1 @llvm.coro.end(i8*, i1) #2 |
| 68 | +declare i8* @llvm.coro.subfn.addr(i8* nocapture readonly, i8) #1 |
| 69 | +declare i8* @malloc(i64) |
| 70 | + |
| 71 | +attributes #0 = { presplitcoroutine } |
| 72 | +attributes #1 = { argmemonly nounwind readonly } |
| 73 | +attributes #2 = { nounwind } |
| 74 | +attributes #3 = { nounwind readnone } |
0 commit comments