[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / DebugInfo / MIR / InstrRef / livedebugvalues_subreg_substitutions.mir
blobdf160699402ec788d2821306a551fffee53eead4
1 # RUN: llc %s -march=x86-64 -run-pass=livedebugvalues -experimental-debug-variable-locations -o - 2>&1 | FileCheck %s
3 # Test that when we have a subregister qualifiers in substitutions, that
4 # InstrRefBasedLDV correctly applies them to the variable location. Below, a
5 # call defines all of $rax, but the variable locations should only apply to
6 # the low order 8 bits.
7 --- |
8   define i8 @test(i32 %bar) local_unnamed_addr !dbg !7 {
9   entry:
10     ret i8 0, !dbg !12
11   }
13   declare dso_local void @ext(i64)
15   !llvm.dbg.cu = !{!0}
16   !llvm.module.flags = !{!3, !4, !5, !6}
17   !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug)
18   !1 = !DIFile(filename: "foo.cpp", directory: ".")
19   !2 = !DIBasicType(name: "int", size: 8, encoding: DW_ATE_signed)
20   !3 = !{i32 2, !"Dwarf Version", i32 4}
21   !4 = !{i32 2, !"Debug Info Version", i32 3}
22   !5 = !{i32 1, !"wchar_size", i32 2}
23   !6 = !{i32 7, !"PIC Level", i32 2}
24   !7 = distinct !DISubprogram(name: "foo", linkageName: "foo", scope: !1, file: !1, line: 6, type: !8, scopeLine: 6, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !10)
25   !8 = !DISubroutineType(types: !9)
26   !9 = !{!2, !2}
27   !10 = !{!11}
28   !11 = !DILocalVariable(name: "baz", scope: !7, file: !1, line: 7, type: !2)
29   !12 = !DILocation(line: 10, scope: !7)
30 ...
31 ---
32 name: test
33 tracksRegLiveness: true
34 liveins:
35   - { reg: '$rdi', virtual-reg: '' }
36 debugValueSubstitutions:
37   - { srcinst: 1, srcop: 0, dstinst: 2, dstop: 0, subreg: 1 } # sub_8bit
38   - { srcinst: 2, srcop: 0, dstinst: 3, dstop: 0, subreg: 4 } # sub_16bit
39   - { srcinst: 3, srcop: 0, dstinst: 4, dstop: 5, subreg: 6 } # sub_32bit
40   # Substitution involving sub_8bit_hi, should land in $ah
41   - { srcinst: 5, srcop: 0, dstinst: 6, dstop: 0, subreg: 2 } # sub_8bit_hi
42   - { srcinst: 6, srcop: 0, dstinst: 7, dstop: 0, subreg: 4 } # sub_16bit
43   - { srcinst: 7, srcop: 0, dstinst: 4, dstop: 5, subreg: 6 } # sub_32bit
44   # Several redundant substitutions, representing extractions from a small
45   # register, followed by larger spurious ones, for example:
46   # %0:gr64 = COPY $rax
47   # %1:gr32 = COPY %0.sub_32bit
48   # %2:gr16 = COPY %1.sub_16bit
49   # %3:gr64 = SUBREG_TO_REG %2, sub_8bit_hi
50   # %4:gr32 = COPY %3.sub_32bit
51   # %5:gr16 = COPY %2.sub_16bit
52   # Should still come out as ah.
53   - { srcinst: 8, srcop: 0, dstinst: 9, dstop: 0, subreg: 4 } # sub_16bit
54   - { srcinst: 9, srcop: 0, dstinst: 10,dstop: 0, subreg: 6 } # sub_32bit
55   - { srcinst: 10,srcop: 0, dstinst: 11,dstop: 0, subreg: 2 } # sub_8bit_hi
56   - { srcinst: 11,srcop: 0, dstinst: 12,dstop: 0, subreg: 4 } # sub_16bit
57   - { srcinst: 12,srcop: 0, dstinst: 4, dstop: 5, subreg: 6 } # sub_32bit
58   # If some kind of really mal-formed code appears that extracts the high bits
59   # out of a too-small location, we should drop it. It's not clear whether this
60   # scenario could ever happen; but if it did, best to not emit a known bad
61   # variable location. Should generate a DBG_VALUE $noreg.
62   - { srcinst: 13, srcop: 0, dstinst: 14,dstop: 0, subreg: 5 } # sub_16bit_hi
63   - { srcinst: 14, srcop: 0, dstinst: 15,dstop: 0, subreg: 6 } # sub_32bit
64   - { srcinst: 15, srcop: 0, dstinst: 4, dstop: 5, subreg: 1 } # sub_8bit
65 stack:
66   - { id: 0, name: '', type: spill-slot, offset: -16, size: 8, alignment: 8,
67       stack-id: default, callee-saved-register: '', callee-saved-restored: true,
68       debug-info-variable: '', debug-info-expression: '', debug-info-location: '' }
69 body:  |
70   bb.0:
71   liveins: $rdi, $rax
72     CALL64pcrel32 @ext, csr_64, implicit $rsp, implicit $ssp, implicit $edi, implicit-def $rax, debug-instr-number 4, debug-location !12
73     ; CHECK:      CALL64pcrel32
74     DBG_INSTR_REF 1, 0, !11, !DIExpression(), debug-location !12
75     ; CHECK-NEXT: DBG_INSTR_REF 1, 0
76     ; CHECK-NEXT: DBG_VALUE $al
77     DBG_INSTR_REF 5, 0, !11, !DIExpression(), debug-location !12
78     ; CHECK-NEXT: DBG_INSTR_REF 5, 0
79     ; CHECK-NEXT: DBG_VALUE $ah
80     DBG_INSTR_REF 8, 0, !11, !DIExpression(), debug-location !12
81     ; CHECK-NEXT: DBG_INSTR_REF 8, 0
82     ; CHECK-NEXT: DBG_VALUE $ah
83     DBG_INSTR_REF 13, 0, !11, !DIExpression(), debug-location !12
84     ; CHECK-NEXT: DBG_INSTR_REF 13, 0
85     ; CHECK-NEXT: DBG_VALUE $noreg
86     MOV64mr $rsp, 1, $noreg, 16, $noreg, $rax :: (store 8 into %stack.0)
87     $rax = MOV64ri 0, debug-location !12
88     ; CHECK:      $rax = MOV64ri 0
89     ; The value is now located in a spill slot; currently InstrRefBasedLDV
90     ; can't express subregister locations inside spills. These should all
91     ; end up being $noreg, but could be improved in the future.
92     DBG_INSTR_REF 1, 0, !11, !DIExpression(), debug-location !12
93     ; CHECK-NEXT: DBG_INSTR_REF 1, 0
94     ; CHECK-NEXT: DBG_VALUE $noreg
95     DBG_INSTR_REF 5, 0, !11, !DIExpression(), debug-location !12
96     ; CHECK-NEXT: DBG_INSTR_REF 5, 0
97     ; CHECK-NEXT: DBG_VALUE $noreg
98     DBG_INSTR_REF 8, 0, !11, !DIExpression(), debug-location !12
99     ; CHECK-NEXT: DBG_INSTR_REF 8, 0
100     ; CHECK-NEXT: DBG_VALUE $noreg
101     DBG_INSTR_REF 13, 0, !11, !DIExpression(), debug-location !12
102     ; CHECK-NEXT: DBG_INSTR_REF 13, 0
103     ; CHECK-NEXT: DBG_VALUE $noreg
104     $rax = MOV64rm $rsp, 1, $noreg, 8, $noreg :: (load 8 from %stack.0)
105     RETQ $rax, debug-location !12