[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / DebugInfo / ARM / lowerbdgdeclare_vla.ll
blob1b19e8e11fa414a980de3a17601c867965af0ab9
1 ; RUN: opt  -passes=instcombine %s -S | FileCheck %s
2 ; RUN: opt --try-experimental-debuginfo-iterators  -passes=instcombine %s -S | FileCheck %s
4 ; Generate me from:
5 ; clang -cc1 -triple thumbv7-apple-ios7.0.0 -S -target-abi apcs-gnu -gdwarf-2 -Os test.c -o test.ll -emit-llvm
6 ; void run(float r)
7 ; {
8 ;   int count = r;
9 ;   float vla[count];
10 ;   vla[0] = r;
11 ;   for (int i = 0; i < count; i++)
12 ;     vla[i] /= r;
13 ; }
14 ; rdar://problem/15464571
16 ; ModuleID = 'test.c'
17 target datalayout = "e-p:32:32:32-i1:8:32-i8:8:32-i16:16:32-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:32:64-v128:32:128-a0:0:32-n32-S32"
18 target triple = "thumbv7-apple-ios8.0.0"
20 ; Function Attrs: nounwind optsize readnone
21 define void @run(float %r) #0 !dbg !4 {
22 entry:
23   tail call void @llvm.dbg.declare(metadata float %r, metadata !11, metadata !DIExpression()), !dbg !22
24   %conv = fptosi float %r to i32, !dbg !23
25   tail call void @llvm.dbg.declare(metadata i32 %conv, metadata !12, metadata !DIExpression()), !dbg !23
26   %vla = alloca float, i32 %conv, align 4, !dbg !24
27   tail call void @llvm.dbg.declare(metadata ptr %vla, metadata !14, metadata !DIExpression(DW_OP_deref)), !dbg !24
28 ; The VLA alloca should be described by a dbg.declare:
29 ; CHECK: #dbg_declare(ptr %vla, ![[VLA:.*]], {{.*}})
30 ; The VLA alloca and following store into the array should not be lowered to like this:
31 ; CHECK-NOT:  #dbg_value(float %r, ![[VLA]])
32 ; the backend interprets this as "vla has the location of %r".
33   store float %r, ptr %vla, align 4, !dbg !25, !tbaa !26
34   tail call void @llvm.dbg.value(metadata i32 0, metadata !18, metadata !DIExpression()), !dbg !30
35   %cmp8 = icmp sgt i32 %conv, 0, !dbg !30
36   br i1 %cmp8, label %for.body, label %for.end, !dbg !30
38 for.body:                                         ; preds = %entry, %for.body.for.body_crit_edge
39   %0 = phi float [ %.pre, %for.body.for.body_crit_edge ], [ %r, %entry ]
40   %i.09 = phi i32 [ %inc, %for.body.for.body_crit_edge ], [ 0, %entry ]
41   %arrayidx2 = getelementptr inbounds float, ptr %vla, i32 %i.09, !dbg !31
42   %div = fdiv float %0, %r, !dbg !31
43   store float %div, ptr %arrayidx2, align 4, !dbg !31, !tbaa !26
44   %inc = add nsw i32 %i.09, 1, !dbg !30
45   tail call void @llvm.dbg.value(metadata i32 %inc, metadata !18, metadata !DIExpression()), !dbg !30
46   %exitcond = icmp eq i32 %inc, %conv, !dbg !30
47   br i1 %exitcond, label %for.end, label %for.body.for.body_crit_edge, !dbg !30
49 for.body.for.body_crit_edge:                      ; preds = %for.body
50   %arrayidx2.phi.trans.insert = getelementptr inbounds float, ptr %vla, i32 %inc
51   %.pre = load float, ptr %arrayidx2.phi.trans.insert, align 4, !dbg !31, !tbaa !26
52   br label %for.body, !dbg !30
54 for.end:                                          ; preds = %for.body, %entry
55   ret void, !dbg !32
58 ; Function Attrs: nounwind readnone
59 declare void @llvm.dbg.declare(metadata, metadata, metadata) #1
61 ; Function Attrs: nounwind readnone
62 declare void @llvm.dbg.value(metadata, metadata, metadata) #1
64 attributes #0 = { nounwind optsize readnone "less-precise-fpmad"="false" "frame-pointer"="none" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "no-realign-stack" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
65 attributes #1 = { nounwind readnone }
67 !llvm.dbg.cu = !{!0}
68 !llvm.module.flags = !{!20, !33}
69 !llvm.ident = !{!21}
71 !0 = distinct !DICompileUnit(language: DW_LANG_C99, producer: "clang version 3.4 ", isOptimized: true, emissionKind: FullDebug, file: !1, enums: !2, retainedTypes: !2, globals: !2, imports: !2)
72 !1 = !DIFile(filename: "<unknown>", directory: "/Volumes/Data/radar/15464571")
73 !2 = !{}
74 !4 = distinct !DISubprogram(name: "run", line: 1, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: true, unit: !0, scopeLine: 2, file: !5, scope: !6, type: !7, retainedNodes: !10)
75 !5 = !DIFile(filename: "test.c", directory: "/Volumes/Data/radar/15464571")
76 !6 = !DIFile(filename: "test.c", directory: "/Volumes/Data/radar/15464571")
77 !7 = !DISubroutineType(types: !8)
78 !8 = !{null, !9}
79 !9 = !DIBasicType(tag: DW_TAG_base_type, name: "float", size: 32, align: 32, encoding: DW_ATE_float)
80 !10 = !{!11, !12, !14, !18}
81 !11 = !DILocalVariable(name: "r", line: 1, arg: 1, scope: !4, file: !6, type: !9)
82 !12 = !DILocalVariable(name: "count", line: 3, scope: !4, file: !6, type: !13)
83 !13 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
84 !14 = !DILocalVariable(name: "vla", line: 4, scope: !4, file: !6, type: !15)
85 !15 = !DICompositeType(tag: DW_TAG_array_type, align: 32, baseType: !9, elements: !16)
86 !16 = !{!17}
87 !17 = !DISubrange(count: -1)
88 !18 = !DILocalVariable(name: "i", line: 6, scope: !19, file: !6, type: !13)
89 !19 = distinct !DILexicalBlock(line: 6, column: 0, file: !5, scope: !4)
90 !20 = !{i32 2, !"Dwarf Version", i32 2}
91 !21 = !{!"clang version 3.4 "}
92 !22 = !DILocation(line: 1, scope: !4)
93 !23 = !DILocation(line: 3, scope: !4)
94 !24 = !DILocation(line: 4, scope: !4)
95 !25 = !DILocation(line: 5, scope: !4)
96 !26 = !{!27, !27, i64 0}
97 !27 = !{!"float", !28, i64 0}
98 !28 = !{!"omnipotent char", !29, i64 0}
99 !29 = !{!"Simple C/C++ TBAA"}
100 !30 = !DILocation(line: 6, scope: !19)
101 !31 = !DILocation(line: 7, scope: !19)
102 !32 = !DILocation(line: 8, scope: !4)
103 !33 = !{i32 1, !"Debug Info Version", i32 3}