[InstCombine] Signed saturation patterns
[llvm-core.git] / test / DebugInfo / AArch64 / inlined-argument.ll
blob747d6d787aef58ffb7608060c17c88a423409479
1 ; RUN: llc -filetype=obj -o - %s | llvm-dwarfdump --name resource - | FileCheck %s
2 ; CHECK: DW_TAG_formal_parameter
3 ; CHECK: DW_TAG_formal_parameter
4 ; CHECK-NEXT:  DW_AT_location   (DW_OP_reg1 W1)
5 ; CHECK-NEXT:  DW_AT_abstract_origin {{.*}}"resource"
7 ; XFAIL: *
8 ; This test now fails as it requires the single-location variable recognizer
9 ; to spot that the inlined function goes out of scope before the 'find.exit'
10 ; exit block. Previously, unchanging variable locations could be extended to
11 ; the end of the function, often erronously, and that's why this test used to
12 ; pass.
13 ; A future algorithm _should_ be able to recognize that "resource"/!37 covers
14 ; all blocks in its lexical scope.
16 ; Generated from:
17 ; typedef struct t *t_t;
18 ; extern unsigned int enable;
19 ; struct t {
20 ;   struct q {
21 ;     struct q *next;
22 ;     unsigned long long resource;
23 ;   } * s;
24 ; } * tt;
25 ; static unsigned long find(t_t t, unsigned long long resource) {
26 ;   struct q *q;
27 ;   q = t->s;
28 ;   while (q) {
29 ;     if (q->resource == resource)
30 ;       return q;
31 ;     q = q->next;
32 ;   }
33 ; }
34 ; int g(t_t t, unsigned long long r) {
35 ;   struct q *q;
36 ;   q = find(t, r);
37 ;   if (!q)
38 ;     if (__builtin_expect(enable, 0)) {  }
39 ; }
41 ; ModuleID = 'inlined-arg.c'
42 source_filename = "inlined-arg.c"
43 target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
44 target triple = "arm64-apple-ios5.0.0"
46 %struct.t = type { %struct.q* }
47 %struct.q = type { %struct.q*, i64 }
49 @tt = common local_unnamed_addr global %struct.t* null, align 8, !dbg !0
51 ; Function Attrs: norecurse nounwind readonly ssp uwtable
52 define i32 @g(%struct.t* nocapture readonly %t, i64 %r) local_unnamed_addr !dbg !21 {
53 entry:
54   call void @llvm.dbg.value(metadata %struct.t* %t, metadata !27, metadata !DIExpression()), !dbg !30
55   call void @llvm.dbg.value(metadata i64 %r, metadata !28, metadata !DIExpression()), !dbg !31
56   call void @llvm.dbg.value(metadata %struct.t* %t, metadata !32, metadata !DIExpression()), !dbg !39
57   call void @llvm.dbg.value(metadata i64 %r, metadata !37, metadata !DIExpression()), !dbg !41
58   %s.i = getelementptr inbounds %struct.t, %struct.t* %t, i64 0, i32 0, !dbg !42
59   %q.05.i = load %struct.q*, %struct.q** %s.i, align 8, !dbg !43, !tbaa !44
60   call void @llvm.dbg.value(metadata %struct.q* %q.05.i, metadata !38, metadata !DIExpression()), !dbg !48
61   %tobool6.i = icmp eq %struct.q* %q.05.i, null, !dbg !49
62   br i1 %tobool6.i, label %find.exit, label %while.body.i, !dbg !49
64 while.body.i:                                     ; preds = %entry, %if.end.i
65   %q.07.i = phi %struct.q* [ %q.0.i, %if.end.i ], [ %q.05.i, %entry ]
66   %resource1.i = getelementptr inbounds %struct.q, %struct.q* %q.07.i, i64 0, i32 1, !dbg !50
67   %0 = load i64, i64* %resource1.i, align 8, !dbg !50, !tbaa !53
68   %cmp.i = icmp eq i64 %0, %r, !dbg !56
69   br i1 %cmp.i, label %find.exit, label %if.end.i, !dbg !57
71 if.end.i:                                         ; preds = %while.body.i
72   %next.i = getelementptr inbounds %struct.q, %struct.q* %q.07.i, i64 0, i32 0, !dbg !58
73   %q.0.i = load %struct.q*, %struct.q** %next.i, align 8, !dbg !43, !tbaa !44
74   call void @llvm.dbg.value(metadata %struct.q* %q.0.i, metadata !38, metadata !DIExpression()), !dbg !48
75   %tobool.i = icmp eq %struct.q* %q.0.i, null, !dbg !49
76   br i1 %tobool.i, label %find.exit, label %while.body.i, !dbg !49, !llvm.loop !59
78 find.exit:                                        ; preds = %while.body.i, %if.end.i, %entry
79   call void @llvm.dbg.value(metadata %struct.q* undef, metadata !29, metadata !DIExpression()), !dbg !61
80   ret i32 undef, !dbg !62
83 ; Function Attrs: nounwind readnone speculatable
84 declare void @llvm.dbg.value(metadata, metadata, metadata)
86 !llvm.dbg.cu = !{!2}
87 !llvm.module.flags = !{!16, !17, !18, !19}
88 !llvm.ident = !{!20}
90 !0 = !DIGlobalVariableExpression(var: !1, expr: !DIExpression())
91 !1 = distinct !DIGlobalVariable(name: "tt", scope: !2, file: !3, line: 8, type: !6, isLocal: false, isDefinition: true)
92 !2 = distinct !DICompileUnit(language: DW_LANG_C99, file: !3, producer: "clang version 9.0.0 (https://github.com/llvm/llvm-project.git cd3671d5dabc8848619d872f994770167a44ac5a)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !5, nameTableKind: GNU)
93 !3 = !DIFile(filename: "inlined-arg.c", directory: "")
94 !4 = !{}
95 !5 = !{!0}
96 !6 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !7, size: 64)
97 !7 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "t", file: !3, line: 3, size: 64, elements: !8)
98 !8 = !{!9}
99 !9 = !DIDerivedType(tag: DW_TAG_member, name: "s", scope: !7, file: !3, line: 7, baseType: !10, size: 64)
100 !10 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !11, size: 64)
101 !11 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "q", file: !3, line: 4, size: 128, elements: !12)
102 !12 = !{!13, !14}
103 !13 = !DIDerivedType(tag: DW_TAG_member, name: "next", scope: !11, file: !3, line: 5, baseType: !10, size: 64)
104 !14 = !DIDerivedType(tag: DW_TAG_member, name: "resource", scope: !11, file: !3, line: 6, baseType: !15, size: 64, offset: 64)
105 !15 = !DIBasicType(name: "long long unsigned int", size: 64, encoding: DW_ATE_unsigned)
106 !16 = !{i32 2, !"Dwarf Version", i32 2}
107 !17 = !{i32 2, !"Debug Info Version", i32 3}
108 !18 = !{i32 1, !"wchar_size", i32 4}
109 !19 = !{i32 7, !"PIC Level", i32 2}
110 !20 = !{!"clang version 9.0.0 (https://github.com/llvm/llvm-project.git cd3671d5dabc8848619d872f994770167a44ac5a)"}
111 !21 = distinct !DISubprogram(name: "g", scope: !3, file: !3, line: 19, type: !22, scopeLine: 19, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !2, retainedNodes: !26)
112 !22 = !DISubroutineType(types: !23)
113 !23 = !{!24, !25, !15}
114 !24 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
115 !25 = !DIDerivedType(tag: DW_TAG_typedef, name: "t_t", file: !3, line: 1, baseType: !6)
116 !26 = !{!27, !28, !29}
117 !27 = !DILocalVariable(name: "t", arg: 1, scope: !21, file: !3, line: 19, type: !25)
118 !28 = !DILocalVariable(name: "r", arg: 2, scope: !21, file: !3, line: 19, type: !15)
119 !29 = !DILocalVariable(name: "q", scope: !21, file: !3, line: 20, type: !10)
120 !30 = !DILocation(line: 19, column: 11, scope: !21)
121 !31 = !DILocation(line: 19, column: 33, scope: !21)
122 !32 = !DILocalVariable(name: "t", arg: 1, scope: !33, file: !3, line: 10, type: !25)
123 !33 = distinct !DISubprogram(name: "find", scope: !3, file: !3, line: 10, type: !34, scopeLine: 10, flags: DIFlagPrototyped, spFlags: DISPFlagLocalToUnit | DISPFlagDefinition | DISPFlagOptimized, unit: !2, retainedNodes: !36)
124 !34 = !DISubroutineType(types: !35)
125 !35 = !{!10, !25, !15}
126 !36 = !{!32, !37, !38}
127 !37 = !DILocalVariable(name: "resource", arg: 2, scope: !33, file: !3, line: 10, type: !15)
128 !38 = !DILocalVariable(name: "q", scope: !33, file: !3, line: 11, type: !10)
129 !39 = !DILocation(line: 10, column: 27, scope: !33, inlinedAt: !40)
130 !40 = distinct !DILocation(line: 21, column: 7, scope: !21)
131 !41 = !DILocation(line: 10, column: 49, scope: !33, inlinedAt: !40)
132 !42 = !DILocation(line: 12, column: 10, scope: !33, inlinedAt: !40)
133 !43 = !DILocation(line: 0, scope: !33, inlinedAt: !40)
134 !44 = !{!45, !45, i64 0}
135 !45 = !{!"any pointer", !46, i64 0}
136 !46 = !{!"omnipotent char", !47, i64 0}
137 !47 = !{!"Simple C/C++ TBAA"}
138 !48 = !DILocation(line: 11, column: 13, scope: !33, inlinedAt: !40)
139 !49 = !DILocation(line: 13, column: 3, scope: !33, inlinedAt: !40)
140 !50 = !DILocation(line: 14, column: 12, scope: !51, inlinedAt: !40)
141 !51 = distinct !DILexicalBlock(scope: !52, file: !3, line: 14, column: 9)
142 !52 = distinct !DILexicalBlock(scope: !33, file: !3, line: 13, column: 13)
143 !53 = !{!54, !55, i64 8}
144 !54 = !{!"q", !45, i64 0, !55, i64 8}
145 !55 = !{!"long long", !46, i64 0}
146 !56 = !DILocation(line: 14, column: 21, scope: !51, inlinedAt: !40)
147 !57 = !DILocation(line: 14, column: 9, scope: !52, inlinedAt: !40)
148 !58 = !DILocation(line: 16, column: 12, scope: !52, inlinedAt: !40)
149 !59 = distinct !{!59, !49, !60}
150 !60 = !DILocation(line: 17, column: 3, scope: !33, inlinedAt: !40)
151 !61 = !DILocation(line: 20, column: 13, scope: !21)
152 !62 = !DILocation(line: 24, column: 1, scope: !21)