blob: 574f9a64e576250d7a475e731cb488577f27ad15 [file] [log] [blame]
Changpeng Fang26fb9d22016-07-28 23:01:45 +00001; RUN: opt -mtriple=amdgcn-- -S -structurizecfg -si-annotate-control-flow %s | FileCheck -check-prefix=OPT %s
2; RUN: llc -march=amdgcn -verify-machineinstrs < %s | FileCheck -check-prefix=GCN %s
3
4
5; OPT-LABEL: @annotate_unreachable_noloop(
6; OPT-NOT: call i1 @llvm.amdgcn.loop
7
8; GCN-LABEL: {{^}}annotate_unreachable_noloop:
9; GCN: s_cbranch_vccnz
10; GCN-NOT: s_endpgm
11; GCN: .Lfunc_end0
12define void @annotate_unreachable_noloop(<4 x float> addrspace(1)* noalias nocapture readonly %arg) #0 {
13bb:
14 %tmp = tail call i32 @llvm.amdgcn.workitem.id.x()
15 br label %bb1
16
17bb1: ; preds = %bb
18 %tmp2 = sext i32 %tmp to i64
19 %tmp3 = getelementptr inbounds <4 x float>, <4 x float> addrspace(1)* %arg, i64 %tmp2
20 %tmp4 = load <4 x float>, <4 x float> addrspace(1)* %tmp3, align 16
21 br i1 undef, label %bb5, label %bb3
22
23bb3: ; preds = %bb1
24 %tmp6 = extractelement <4 x float> %tmp4, i32 2
25 %tmp7 = fcmp olt float %tmp6, 0.000000e+00
26 br i1 %tmp7, label %bb4, label %bb5 ; crash goes away if these are swapped
27
28bb4: ; preds = %bb3
29 unreachable
30
31bb5: ; preds = %bb3, %bb1
32 unreachable
33}
34
35
36; OPT-LABEL: @annotate_ret_noloop(
37; OPT-NOT: call i1 @llvm.amdgcn.loop
38
39; GCN-LABEL: {{^}}annotate_ret_noloop:
Kyle Buttdf27aa82017-01-10 23:04:30 +000040; GCN: s_cbranch_scc0 [[BODY:BB[0-9]+_[0-9]+]]
41; GCN: s_endpgm
42
43; GCN: {{^}}[[BODY]]:
Changpeng Fang26fb9d22016-07-28 23:01:45 +000044; GCN: s_endpgm
45; GCN: .Lfunc_end1
46define void @annotate_ret_noloop(<4 x float> addrspace(1)* noalias nocapture readonly %arg) #0 {
47bb:
48 %tmp = tail call i32 @llvm.amdgcn.workitem.id.x()
49 br label %bb1
50
51bb1: ; preds = %bb
52 %tmp2 = sext i32 %tmp to i64
53 %tmp3 = getelementptr inbounds <4 x float>, <4 x float> addrspace(1)* %arg, i64 %tmp2
54 %tmp4 = load <4 x float>, <4 x float> addrspace(1)* %tmp3, align 16
55 br i1 undef, label %bb5, label %bb3
56
57bb3: ; preds = %bb1
58 %tmp6 = extractelement <4 x float> %tmp4, i32 2
59 %tmp7 = fcmp olt float %tmp6, 0.000000e+00
60 br i1 %tmp7, label %bb4, label %bb5 ; crash goes away if these are swapped
61
62bb4: ; preds = %bb3
63 ret void
64
65bb5: ; preds = %bb3, %bb1
66 ret void
67}
68
69
70declare i32 @llvm.amdgcn.workitem.id.x() #1
71
72attributes #0 = { nounwind }
73attributes #1 = { nounwind readnone }