1 ; RUN: llc -start-before=codegenprepare -stop-after=codegenprepare -mtriple=x86_64-unknown-unknown %s -o - | FileCheck %s
3 ; CGP duplicates address calculation into each basic block that contains loads
4 ; or stores, so that they can be folded into instruction memory operands for
5 ; example. dbg.value's should be redirected to identify such local address
6 ; computations, to give the best opportunity for variable locations to be
8 ; This test has two dbg.values in it, one before and one after the relevant
9 ; memory instruction. Test that the one before does _not_ get updated (as that
10 ; would either make it use-before-def or shift when the variable appears), and
11 ; that the dbg.value after the memory instruction does get updated.
13 define dso_local i8 @foo(ptr %p, i32 %cond) !dbg !7 {
15 ; There should be no dbg.values in this block.
17 ; CHECK-NOT: dbg.value
18 %arith = getelementptr i8, ptr %p, i32 3
19 %load1 = load i8, ptr %arith
20 %cmpresult = icmp eq i32 %cond, 0
21 br i1 %cmpresult, label %next, label %ret
24 ; Address calcs should be duplicated into this block. One dbg.value should be
25 ; updated, and the other should not.
27 ; CHECK: dbg.value(metadata ptr %arith, metadata ![[DIVAR:[0-9]+]],
28 ; CHECK-SAME: metadata !DIExpression()
29 ; CHECK-NEXT: %[[GEPVAR:[0-9a-zA-Z]+]] = getelementptr i8, ptr %p,
31 ; CHECK-NEXT: %loaded = load i8, ptr %[[GEPVAR]]
32 ; CHECK-NEXT: call void @llvm.dbg.value(metadata ptr %[[GEPVAR]],
33 ; CHECK-SAME: metadata ![[DIVAR]],
34 ; CHECK-NEXT: call void @llvm.dbg.value(metadata !DIArgList(ptr %[[GEPVAR]],
35 ; CHECK-SAME: ptr %[[GEPVAR]]), metadata ![[DIVAR]],
36 call void @llvm.dbg.value(metadata ptr %arith, metadata !12, metadata !DIExpression()), !dbg !14
37 %loaded = load i8, ptr %arith
38 call void @llvm.dbg.value(metadata ptr %arith, metadata !12, metadata !DIExpression()), !dbg !14
39 call void @llvm.dbg.value(metadata !DIArgList(ptr %arith, ptr %arith), metadata !12, metadata !DIExpression()), !dbg !14
46 ; CHECK: ![[DIVAR]] = !DILocalVariable(name: "p",
48 declare void @llvm.dbg.value(metadata, metadata, metadata)
51 !llvm.module.flags = !{!3, !4, !5}
54 !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "clang", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, nameTableKind: None)
55 !1 = !DIFile(filename: "test.cpp", directory: ".")
57 !3 = !{i32 2, !"Dwarf Version", i32 4}
58 !4 = !{i32 2, !"Debug Info Version", i32 3}
59 !5 = !{i32 1, !"wchar_size", i32 4}
60 !6 = !{!"clang version 8.0.0 (trunk 348209)"}
61 !7 = distinct !DISubprogram(name: "foo", linkageName: "foo", scope: !1, file: !1, line: 4, type: !8, scopeLine: 5, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !11)
62 !8 = !DISubroutineType(types: !9)
64 !10 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
66 !12 = !DILocalVariable(name: "p", arg: 1, scope: !7, file: !1, line: 4, type: !10)
67 !14 = !DILocation(line: 4, column: 15, scope: !7)
68 !20 = distinct !DILexicalBlock(scope: !7, file: !1, line: 8, column: 7)