1 ; This test checks if debug loc is propagated to load/store created by GVN/Instcombine.
2 ; RUN: opt < %s -gvn -S | FileCheck %s --check-prefixes=ALL,GVN
3 ; RUN: opt < %s -gvn -instcombine -S | FileCheck %s --check-prefixes=ALL,INSTCOMBINE
14 ; extern int bar(void *v, void* n);
16 ; int test(struct desc *desc)
19 ; v = !desc ? ((void *)0) : desc->node->v; // Line 15
20 ; n = &desc->node->descs[0]; // Line 16
25 ; n = &desc->node->descs[0];
28 target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
29 target triple = "aarch64--linux-gnu"
31 %struct.desc = type { %struct.node* }
32 %struct.node = type { i32*, %struct.desc* }
34 define i32 @test(%struct.desc* readonly %desc) local_unnamed_addr #0 !dbg !4 {
36 %tobool = icmp eq %struct.desc* %desc, null
37 br i1 %tobool, label %cond.end, label %cond.false, !dbg !9
38 ; ALL: br i1 %tobool, label %entry.cond.end_crit_edge, label %cond.false, !dbg [[LOC_15_6:![0-9]+]]
39 ; ALL: entry.cond.end_crit_edge:
40 ; GVN: %.pre = load %struct.node*, %struct.node** null, align 8, !dbg [[LOC_16_13:![0-9]+]]
41 ; INSTCOMBINE:store %struct.node* undef, %struct.node** null, align 536870912, !dbg [[LOC_16_13:![0-9]+]]
44 %0 = bitcast %struct.desc* %desc to i8***, !dbg !11
45 %1 = load i8**, i8*** %0, align 8, !dbg !11
46 %2 = load i8*, i8** %1, align 8
47 br label %cond.end, !dbg !9
50 %3 = phi i8* [ %2, %cond.false ], [ null, %entry ], !dbg !9
51 %node2 = getelementptr inbounds %struct.desc, %struct.desc* %desc, i64 0, i32 0
52 %4 = load %struct.node*, %struct.node** %node2, align 8, !dbg !10
53 %descs = getelementptr inbounds %struct.node, %struct.node* %4, i64 0, i32 1
54 %5 = bitcast %struct.desc** %descs to i8**
55 %6 = load i8*, i8** %5, align 8
56 %call = tail call i32 @bar(i8* %3, i8* %6)
60 declare i32 @bar(i8*, i8*) local_unnamed_addr #1
62 !llvm.module.flags = !{!2, !3}
64 !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, emissionKind: FullDebug)
65 !1 = !DIFile(filename: "test.c", directory: ".")
66 !2 = !{i32 2, !"Dwarf Version", i32 4}
67 !3 = !{i32 2, !"Debug Info Version", i32 3}
68 !4 = distinct !DISubprogram(name: "test", scope: !1, file: !1, line: 12, type: !5, isLocal: false, isDefinition: true, scopeLine: 13, flags: DIFlagPrototyped, isOptimized: true, unit: !0, retainedNodes: !8)
69 !5 = !DISubroutineType(types: !6)
71 !7 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
73 !9 = !DILocation(line: 15, column: 6, scope: !4)
74 !10 = !DILocation(line: 16, column: 13, scope: !4)
75 !11 = !DILocation(line: 15, column: 34, scope: !4)
77 ;ALL: [[SCOPE:![0-9]+]] = distinct !DISubprogram(name: "test",{{.*}}
78 ;ALL: [[LOC_15_6]] = !DILocation(line: 15, column: 6, scope: [[SCOPE]])
79 ;ALL: [[LOC_16_13]] = !DILocation(line: 16, column: 13, scope: [[SCOPE]])