[llvm-dlltool] Respect NONAME keyword
[llvm-complete.git] / test / Transforms / DeadStoreElimination / memset-missing-debugloc.ll
blobc0f490c0d6c25bd5a08e77dde79e85e2c84ecb53
1 ; Test that the getelementptr generated when the dse pass determines that
2 ; a memset can be shortened has the debugloc carried over from the memset.
4 ; RUN: opt -S -march=native -dse < %s| FileCheck %s
5 ; CHECK: bitcast [5 x i64]* %{{[a-zA-Z_][a-zA-Z0-9_]*}} to i8*, !dbg
6 ; CHECK-NEXT: %{{[0-9]+}} = getelementptr inbounds i8, i8* %0, i64 32, !dbg ![[DBG:[0-9]+]]
7 ; CHECK: ![[DBG]] = !DILocation(line: 2,
9 ; The test IR is generated by running:
11 ; clang Debugify_Dead_Store_Elimination.cpp -Wno-c++11-narrowing -S \
12 ;   -emit-llvm -O0 -w -Xclang -disable-O0-optnone -march=native -fdeclspec \
13 ;   --target=x86_64-gnu-linux-unknown -Werror=unreachable-code -o -
15 ; Where Debugify_Dead_Store_Elimination.cpp contains:
17 ; int a() {
18 ;   long b[]{2, 2, 2, 2, 0};
19 ;   if (a())
20 ;     ;
21 ; }
24 define dso_local i32 @_Z1av() !dbg !7 {
25 entry:
26   %retval = alloca i32, align 4
27   %b = alloca [5 x i64], align 16
28   call void @llvm.dbg.declare(metadata [5 x i64]* %b, metadata !11, metadata !DIExpression()), !dbg !16
29   %0 = bitcast [5 x i64]* %b to i8*, !dbg !16
30   call void @llvm.memset.p0i8.i64(i8* align 16 %0, i8 0, i64 40, i1 false), !dbg !16
31   %1 = bitcast i8* %0 to [5 x i64]*, !dbg !16
32   %2 = getelementptr inbounds [5 x i64], [5 x i64]* %1, i32 0, i32 0, !dbg !16
33   store i64 2, i64* %2, align 16, !dbg !16
34   %3 = getelementptr inbounds [5 x i64], [5 x i64]* %1, i32 0, i32 1, !dbg !16
35   store i64 2, i64* %3, align 8, !dbg !16
36   %4 = getelementptr inbounds [5 x i64], [5 x i64]* %1, i32 0, i32 2, !dbg !16
37   store i64 2, i64* %4, align 16, !dbg !16
38   %5 = getelementptr inbounds [5 x i64], [5 x i64]* %1, i32 0, i32 3, !dbg !16
39   store i64 2, i64* %5, align 8, !dbg !16
40   %call = call i32 @_Z1av(), !dbg !17
41   %tobool = icmp ne i32 %call, 0, !dbg !17
42   br i1 %tobool, label %if.then, label %if.end, !dbg !19
44 if.then:                                          ; preds = %entry
45   br label %if.end, !dbg !19
47 if.end:                                           ; preds = %if.then, %entry
48   call void @llvm.trap(), !dbg !20
49   unreachable, !dbg !20
51 return:                                           ; No predecessors!
52   %6 = load i32, i32* %retval, align 4, !dbg !21
53   ret i32 %6, !dbg !21
56 ; Function Attrs: nounwind readnone speculatable
57 declare void @llvm.dbg.declare(metadata, metadata, metadata)
59 ; Function Attrs: argmemonly nounwind
60 declare void @llvm.memset.p0i8.i64(i8* nocapture writeonly, i8, i64, i1 immarg)
62 ; Function Attrs: cold noreturn nounwind
63 declare void @llvm.trap()
65 !llvm.module.flags = !{!3, !4, !5}
66 !llvm.ident = !{!6}
68 !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "clang version 9.0.0 (https://github.com/llvm/llvm-project.git eb1a156d7f7ba56ea8f9a26da36e6a93d1e98bda)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, nameTableKind: None)
69 !1 = !DIFile(filename: "Debugify_Dead_Store_Elimination.cpp", directory: "")
70 !2 = !{}
71 !3 = !{i32 2, !"Dwarf Version", i32 4}
72 !4 = !{i32 2, !"Debug Info Version", i32 3}
73 !5 = !{i32 1, !"wchar_size", i32 4}
74 !6 = !{!"clang version 9.0.0 (https://github.com/llvm/llvm-project.git eb1a156d7f7ba56ea8f9a26da36e6a93d1e98bda)"}
75 !7 = distinct !DISubprogram(name: "a", linkageName: "_Z1av", scope: !1, file: !1, line: 1, type: !8, scopeLine: 1, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition, unit: !0, retainedNodes: !2)
76 !8 = !DISubroutineType(types: !9)
77 !9 = !{!10}
78 !10 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
79 !11 = !DILocalVariable(name: "b", scope: !7, file: !1, line: 2, type: !12)
80 !12 = !DICompositeType(tag: DW_TAG_array_type, baseType: !13, size: 320, elements: !14)
81 !13 = !DIBasicType(name: "long int", size: 64, encoding: DW_ATE_signed)
82 !14 = !{!15}
83 !15 = !DISubrange(count: 5)
84 !16 = !DILocation(line: 2, column: 8, scope: !7)
85 !17 = !DILocation(line: 3, column: 7, scope: !18)
86 !18 = distinct !DILexicalBlock(scope: !7, file: !1, line: 3, column: 7)
87 !19 = !DILocation(line: 3, column: 7, scope: !7)
88 !20 = !DILocation(line: 3, column: 9, scope: !18)
89 !21 = !DILocation(line: 5, column: 1, scope: !7)