xref: /llvm-project/llvm/test/CodeGen/SystemZ/cc-liveness.ll (revision a1710eb3cd5823c5d14899112ca3086acbdbe9cb)
1; Check that the MVCLoop (memcpy) is marked as clobbering CC, so that it will
2; not be placed betwen two compare and load-on-condition instructions.
3;
4; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z13 -pre-RA-sched=list-ilp \
5; RUN:   -print-after=finalize-isel 2>&1 | FileCheck %s
6;
7; CHECK-LABEL: bb.0.bb:
8; CHECK: CLI
9; CHECK: LOCGHI
10; CHECK-LABEL: bb.2.bb:
11; CHECK: MVC
12
13@.str.35 = external dso_local unnamed_addr constant [9 x i8], align 2
14@func_38.l_1854 = external dso_local unnamed_addr constant [7 x [10 x [3 x ptr]]], align 8
15
16; Function Attrs: nounwind
17define dso_local signext i32 @main(i32 signext %arg, ptr nocapture readonly %arg1) local_unnamed_addr #0 {
18bb:
19  %tmp = load i8, ptr undef, align 1
20  %tmp2 = zext i8 %tmp to i32
21  %tmp3 = sub nsw i32 0, %tmp2
22  %tmp4 = icmp eq i32 %tmp3, 0
23  %tmp5 = zext i1 %tmp4 to i32
24  call void @llvm.memcpy.p0.p0.i64(ptr nonnull align 8 undef, ptr align 8 @func_38.l_1854, i64 1680, i1 false) #2
25  call fastcc void @transparent_crc(i64 undef, ptr @.str.35, i32 signext %tmp5)
26  unreachable
27}
28
29; Function Attrs: nounwind
30declare dso_local fastcc void @transparent_crc(i64, ptr, i32 signext) unnamed_addr #0
31
32; Function Attrs: argmemonly nounwind
33declare void @llvm.memcpy.p0.p0.i64(ptr nocapture writeonly, ptr nocapture readonly, i64, i1) #1
34
35