xref: /llvm-project/llvm/test/CodeGen/Hexagon/bug17276.ll (revision 2208c97c1bec2512d4e47b6223db6d95a7037956)
1; RUN: llc -mtriple=hexagon -function-sections < %s | FileCheck %s
2; CHECK: if (!p0)
3; CHECK-NOT: if (p0.new)
4; CHECK: {
5
6target triple = "hexagon-unknown--elf"
7
8%s.0 = type { ptr, ptr }
9%s.1 = type { i8, [2 x ptr] }
10%s.2 = type { i32, i32 }
11
12@g0 = internal constant %s.0 zeroinitializer, align 4
13
14; Function Attrs: minsize nounwind
15define i32 @f0(ptr %a0) #0 {
16b0:
17  %v0 = tail call i32 @f1(ptr %a0, i32 0)
18  ret i32 %v0
19}
20
21; Function Attrs: minsize nounwind
22define internal i32 @f1(ptr %a0, i32 %a1) #0 {
23b0:
24  %v0 = icmp eq ptr %a0, null
25  br i1 %v0, label %b4, label %b1
26
27b1:                                               ; preds = %b0
28  %v1 = icmp eq i32 %a1, 1
29  br i1 %v1, label %b3, label %b2
30
31b2:                                               ; preds = %b1
32  tail call void @f2(ptr null) #3
33  unreachable
34
35b3:                                               ; preds = %b1
36  tail call void @f2(ptr @g0) #3
37  unreachable
38
39b4:                                               ; preds = %b0
40  %v2 = load ptr, ptr inttoptr (i32 4 to ptr), align 4, !tbaa !0
41  %v3 = icmp eq ptr %v2, null
42  br i1 %v3, label %b5, label %b6
43
44b5:                                               ; preds = %b4
45  tail call void @f3(i32 0) #4
46  br label %b10
47
48b6:                                               ; preds = %b4
49  %v4 = tail call zeroext i8 @f4(ptr null) #4
50  %v5 = icmp eq i8 %v4, 0
51  br i1 %v5, label %b7, label %b8
52
53b7:                                               ; preds = %b6
54  tail call void @f3(i32 0) #4
55  br label %b9
56
57b8:                                               ; preds = %b6
58  %v6 = load ptr, ptr inttoptr (i32 4 to ptr), align 4, !tbaa !0
59  %v7 = icmp eq i32 %a1, 1
60  %v8 = getelementptr inbounds %s.2, ptr %v6, i32 0, i32 1
61  %v10 = select i1 %v7, ptr %v8, ptr %v6
62  %v11 = tail call i32 @f5(ptr %v10) #4
63  br label %b9
64
65b9:                                               ; preds = %b8, %b7
66  %v12 = phi i32 [ 0, %b7 ], [ %v11, %b8 ]
67  tail call void @f3(i32 %v12) #4
68  br label %b10
69
70b10:                                              ; preds = %b9, %b5
71  %v13 = phi i32 [ 0, %b5 ], [ %v12, %b9 ]
72  ret i32 %v13
73}
74
75; Function Attrs: noreturn optsize
76declare void @f2(ptr) #1
77
78; Function Attrs: optsize
79declare void @f3(i32) #2
80
81; Function Attrs: optsize
82declare zeroext i8 @f4(ptr) #2
83
84; Function Attrs: optsize
85declare i32 @f5(ptr) #2
86
87; Function Attrs: minsize nounwind
88define i32 @f6(ptr %a0) #0 {
89b0:
90  %v0 = tail call i32 @f1(ptr %a0, i32 1)
91  ret i32 %v0
92}
93
94attributes #0 = { minsize nounwind }
95attributes #1 = { noreturn optsize }
96attributes #2 = { optsize }
97attributes #3 = { noreturn nounwind optsize }
98attributes #4 = { nounwind optsize }
99
100!0 = !{!1, !1, i64 0}
101!1 = !{!"any pointer", !2, i64 0}
102!2 = !{!"omnipotent char", !3, i64 0}
103!3 = !{!"Simple C/C++ TBAA"}
104