[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / DebugInfo / ARM / salvage-debug-info.ll
blob43d3412762c09ba5e4f4d5a863145f93a1baddc3
1 ; RUN: opt -passes='require<profile-summary>,function(codegenprepare)' -S %s -o - | FileCheck %s
2 ; typedef struct info {
3 ;   unsigned long long size;
4 ; } info_t;
5 ; extern unsigned p;
6 ; extern unsigned n;
7 ; void f() {
8 ;   unsigned int i;
9 ;   if (p) {
10 ;     info_t *info = (info_t *)p;
11 ;     for (i = 0; i < n; i++)
12 ;       use(info[i].size);
13 ;   }
14 ; }
15 source_filename = "debug.i"
16 target datalayout = "e-m:o-p:32:32-i64:64-a:0:32-n32-S128"
17 target triple = "thumbv7k-apple-ios10.0.0"
19 %struct.info = type { i64 }
21 @p = external local_unnamed_addr global i32, align 4
22 @n = external local_unnamed_addr global i32, align 4
24 ; Function Attrs: nounwind ssp uwtable
25 define void @f() local_unnamed_addr #0 !dbg !16 {
26 entry:
27   %0 = load i32, ptr @p, align 4, !dbg !25
28   %tobool = icmp eq i32 %0, 0, !dbg !25
29   br i1 %tobool, label %if.end, label %if.then, !dbg !26
31 if.then:                                          ; preds = %entry
32   %1 = inttoptr i32 %0 to ptr, !dbg !27
33   tail call void @llvm.dbg.value(metadata ptr %1, metadata !22, metadata !DIExpression()), !dbg !28
34   ; CHECK: #dbg_value(i32 %0, !22, !DIExpression(),
35   tail call void @llvm.dbg.value(metadata i32 0, metadata !20, metadata !DIExpression()), !dbg !29
36   %2 = load i32, ptr @n, align 4, !dbg !30
37   %cmp5 = icmp eq i32 %2, 0, !dbg !33
38   br i1 %cmp5, label %if.end, label %for.body.preheader, !dbg !34
40 for.body.preheader:                               ; preds = %if.then
41   ; CHECK: for.body.preheader:
42   ; CHECK:   %2 = inttoptr i32 %0 to ptr
43   br label %for.body, !dbg !35
45 for.body:                                         ; preds = %for.body.preheader, %for.body
46   %lsr.iv = phi ptr [ %1, %for.body.preheader ], [ %scevgep, %for.body ]
47   %i.06 = phi i32 [ %inc, %for.body ], [ 0, %for.body.preheader ]
48   tail call void @llvm.dbg.value(metadata i32 %i.06, metadata !20, metadata !DIExpression()), !dbg !29
49   %3 = load i64, ptr %lsr.iv, align 8, !dbg !35
50   %call = tail call i32 @use(i64 %3) #3, !dbg !36
51   %inc = add nuw i32 %i.06, 1, !dbg !37
52   tail call void @llvm.dbg.value(metadata i32 %inc, metadata !20, metadata !DIExpression()), !dbg !29
53   %4 = load i32, ptr @n, align 4, !dbg !30
54   %scevgep = getelementptr %struct.info, ptr %lsr.iv, i32 1, !dbg !33
55   %cmp = icmp ult i32 %inc, %4, !dbg !33
56   br i1 %cmp, label %for.body, label %if.end.loopexit, !dbg !34, !llvm.loop !38
58 if.end.loopexit:                                  ; preds = %for.body
59   br label %if.end, !dbg !40
61 if.end:                                           ; preds = %if.end.loopexit, %if.then, %entry
62   ret void, !dbg !40
64 declare i32 @use(...) local_unnamed_addr #1
66 ; Function Attrs: nounwind readnone speculatable
67 declare void @llvm.dbg.value(metadata, metadata, metadata) #2
69 attributes #0 = { nounwind ssp uwtable }
70 attributes #2 = { nounwind readnone speculatable }
71 attributes #3 = { nobuiltin nounwind }
73 !llvm.dbg.cu = !{!0}
74 !llvm.module.flags = !{!10, !11, !12, !13, !14}
75 !llvm.ident = !{!15}
77 !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 6.0.0 (trunk 317231) (llvm/trunk 317262)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, retainedTypes: !3)
78 !1 = !DIFile(filename: "debug.i", directory: "/Data/radar/35321562")
79 !2 = !{}
80 !3 = !{!4}
81 !4 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !5, size: 32)
82 !5 = !DIDerivedType(tag: DW_TAG_typedef, name: "info_t", file: !1, line: 3, baseType: !6)
83 !6 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "info", file: !1, line: 1, size: 64, elements: !7)
84 !7 = !{!8}
85 !8 = !DIDerivedType(tag: DW_TAG_member, name: "size", scope: !6, file: !1, line: 2, baseType: !9, size: 64)
86 !9 = !DIBasicType(name: "long long unsigned int", size: 64, encoding: DW_ATE_unsigned)
87 !10 = !{i32 2, !"Dwarf Version", i32 4}
88 !11 = !{i32 2, !"Debug Info Version", i32 3}
89 !12 = !{i32 1, !"wchar_size", i32 4}
90 !13 = !{i32 1, !"min_enum_size", i32 4}
91 !14 = !{i32 7, !"PIC Level", i32 2}
92 !15 = !{!"clang version 6.0.0 (trunk 317231) (llvm/trunk 317262)"}
93 !16 = distinct !DISubprogram(name: "f", scope: !1, file: !1, line: 6, type: !17, isLocal: false, isDefinition: true, scopeLine: 6, isOptimized: true, unit: !0, retainedNodes: !19)
94 !17 = !DISubroutineType(types: !18)
95 !18 = !{null}
96 !19 = !{!20, !22}
97 !20 = !DILocalVariable(name: "i", scope: !16, file: !1, line: 7, type: !21)
98 !21 = !DIBasicType(name: "unsigned int", size: 32, encoding: DW_ATE_unsigned)
99 !22 = !DILocalVariable(name: "info", scope: !23, file: !1, line: 9, type: !4)
100 !23 = distinct !DILexicalBlock(scope: !24, file: !1, line: 8, column: 10)
101 !24 = distinct !DILexicalBlock(scope: !16, file: !1, line: 8, column: 7)
102 !25 = !DILocation(line: 8, column: 7, scope: !24)
103 !26 = !DILocation(line: 8, column: 7, scope: !16)
104 !27 = !DILocation(line: 9, column: 20, scope: !23)
105 !28 = !DILocation(line: 9, column: 13, scope: !23)
106 !29 = !DILocation(line: 7, column: 16, scope: !16)
107 !30 = !DILocation(line: 10, column: 21, scope: !31)
108 !31 = distinct !DILexicalBlock(scope: !32, file: !1, line: 10, column: 5)
109 !32 = distinct !DILexicalBlock(scope: !23, file: !1, line: 10, column: 5)
110 !33 = !DILocation(line: 10, column: 19, scope: !31)
111 !34 = !DILocation(line: 10, column: 5, scope: !32)
112 !35 = !DILocation(line: 11, column: 19, scope: !31)
113 !36 = !DILocation(line: 11, column: 7, scope: !31)
114 !37 = !DILocation(line: 10, column: 25, scope: !31)
115 !38 = distinct !{!38, !34, !39}
116 !39 = !DILocation(line: 11, column: 23, scope: !32)
117 !40 = !DILocation(line: 13, column: 1, scope: !16)