1 # RUN: llc -O1 -start-after register-coalescer -o - %s -experimental-debug-variable-locations=false | FileCheck %s
4 target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
5 target triple = "x86_64-pc-linux-gnu"
7 define i16 @foo(i8 %zzz) !dbg !4 {
12 ; Function Attrs: nounwind readnone speculatable
13 declare void @llvm.dbg.value(metadata, metadata, metadata)
16 !llvm.module.flags = !{!3}
18 !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, retainedTypes: !2)
19 !1 = !DIFile(filename: "test.c", directory: "")
21 !3 = !{i32 1, !"Debug Info Version", i32 3}
22 !4 = distinct !DISubprogram(name: "foo", scope: !1, file: !1, line: 3, type: !5, isLocal: false, isDefinition: true, scopeLine: 3, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, unit: !0)
23 !5 = !DISubroutineType(types: !6)
25 !7 = !DILocalVariable(name: "zzz", arg: 1, scope: !4, file: !1, line: 3, type: !8)
26 !8 = !DIBasicType(name: "char", size: 8, align: 8, encoding: DW_ATE_signed)
27 !9 = !DILocation(line: 0, scope: !4)
28 !10 = !DILocation(line: 4, column: 22, scope: !11)
29 !11 = distinct !DILexicalBlock(scope: !4, file: !1, line: 3, column: 19)
34 tracksRegLiveness: true
37 %0:gr16_abcd = MOV16ri 1
40 DBG_VALUE %0.sub_8bit_hi, $noreg, !7, !DIExpression(), debug-location !9
47 RET64 killed $ax, killed $dx
50 # This test case was created as a reproducer for a bug when we got incorrect
51 # DBG_VALUE instructions after regalloc like this:
54 # #DEBUG_VALUE: foo:zzz <- $ch
56 # #DEBUG_VALUE: foo:zzz <- $ax
58 # The above is incorrect since the DBG_VALUE in the input is refering to the
59 # hi subreg, so after the COPY/movl the value is in $ah and not $ax (nor $al).
61 # We currently only get one DEBUG_VALUE here. In the future we could allow a
62 # second DEBUG_VALUE, as long as it is mapped to the hi subreg of the movl
65 # CHECK-NOT: #DEBUG_VALUE:
66 # CHECK: #DEBUG_VALUE: foo:zzz <- ${{[abcd]+}}h
67 # CHECK-NOT: #DEBUG_VALUE: