[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / DebugInfo / MIR / X86 / live-debug-values-cutoffs.mir
blob17b6b9b3149c32cc4149436d652b228da411ebb4
1 # Test cutoffs for livedebugvalues debug range extension.
2 # Disable LDV if the input-bb-limit AND the input-dbg-value-limit are both exceeded.
4 # RUN: llc %s -o - -run-pass=livedebugvalues -mtriple=x86_64-unknown-unknown \
5 # RUN:   -livedebugvalues-input-bb-limit=1 \
6 # RUN:   -livedebugvalues-input-dbg-value-limit=1 \
7 # RUN:   | FileCheck %s -check-prefix=LDV-DISABLED
8 # RUN: llc %s -o - -run-pass=livedebugvalues -mtriple=x86_64-unknown-unknown \
9 # RUN:   -experimental-debug-variable-locations \
10 # RUN:   -livedebugvalues-input-bb-limit=1 \
11 # RUN:   -livedebugvalues-input-dbg-value-limit=1 \
12 # RUN:   | FileCheck %s -check-prefix=LDV-DISABLED
14 # RUN: llc %s -o - -run-pass=livedebugvalues -mtriple=x86_64-unknown-unknown \
15 # RUN:   -livedebugvalues-input-bb-limit=1 \
16 # RUN:   -livedebugvalues-input-dbg-value-limit=10 \
17 # RUN:   | FileCheck %s -check-prefix=LDV-ENABLED
18 # RUN: llc %s -o - -run-pass=livedebugvalues -mtriple=x86_64-unknown-unknown \
19 # RUN:   -experimental-debug-variable-locations \
20 # RUN:   -livedebugvalues-input-bb-limit=1 \
21 # RUN:   -livedebugvalues-input-dbg-value-limit=10 \
22 # RUN:   | FileCheck %s -check-prefix=LDV-ENABLED
24 # RUN: llc %s -o - -run-pass=livedebugvalues -mtriple=x86_64-unknown-unknown \
25 # RUN:   -livedebugvalues-input-bb-limit=10 \
26 # RUN:   -livedebugvalues-input-dbg-value-limit=1 \
27 # RUN:   | FileCheck %s -check-prefix=LDV-ENABLED
28 # RUN: llc %s -o - -run-pass=livedebugvalues -mtriple=x86_64-unknown-unknown \
29 # RUN:   -experimental-debug-variable-locations \
30 # RUN:   -livedebugvalues-input-bb-limit=10 \
31 # RUN:   -livedebugvalues-input-dbg-value-limit=1 \
32 # RUN:   | FileCheck %s -check-prefix=LDV-ENABLED
34 # RUN: llc %s -o - -run-pass=livedebugvalues -mtriple=x86_64-unknown-unknown \
35 # RUN:   -livedebugvalues-input-bb-limit=10 \
36 # RUN:   -livedebugvalues-input-dbg-value-limit=10 \
37 # RUN:   | FileCheck %s -check-prefix=LDV-ENABLED
38 # RUN: llc %s -o - -run-pass=livedebugvalues -mtriple=x86_64-unknown-unknown \
39 # RUN:   -experimental-debug-variable-locations \
40 # RUN:   -livedebugvalues-input-bb-limit=10 \
41 # RUN:   -livedebugvalues-input-dbg-value-limit=10 \
42 # RUN:   | FileCheck %s -check-prefix=LDV-ENABLED
44 # LDV-DISABLED-LABEL: bb.1.exit
45 # LDV-DISABLED-NEXT: $edi = MOV32rm
47 # LDV-ENABLED-LABEL: bb.1.exit
48 # LDV-ENABLED-NEXT: DBG_VALUE $rsp, 0, {{.*}}, !DIExpression(DW_OP_plus_uconst, 4)
49 # LDV-ENABLED-NEXT: $edi = MOV32rm
51 --- |
52   target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
54   declare i32 @use(i32)
56   define i32 @foo(i32 %x) !dbg !6 {
57   entry:
58     %y = add i32 %x, %x, !dbg !12
59     call void @llvm.dbg.value(metadata i32 %y, metadata !9, metadata !DIExpression()), !dbg !12
60     br label %exit, !dbg !13
62   exit:                                             ; preds = %entry
63     %z = call i32 @use(i32 %y), !dbg !14
64     call void @llvm.dbg.value(metadata i32 %z, metadata !11, metadata !DIExpression()), !dbg !14
65     ret i32 %z, !dbg !15
66   }
68   declare void @llvm.dbg.value(metadata, metadata, metadata)
70   !llvm.dbg.cu = !{!0}
71   !llvm.debugify = !{!3, !4}
72   !llvm.module.flags = !{!5}
74   !0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, producer: "debugify", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
75   !1 = !DIFile(filename: "/tmp/t.ll", directory: "/")
76   !2 = !{}
77   !3 = !{i32 4}
78   !4 = !{i32 2}
79   !5 = !{i32 2, !"Debug Info Version", i32 3}
80   !6 = distinct !DISubprogram(name: "foo", linkageName: "foo", scope: null, file: !1, line: 1, type: !7, scopeLine: 1, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !8)
81   !7 = !DISubroutineType(types: !2)
82   !8 = !{!9, !11}
83   !9 = !DILocalVariable(name: "1", scope: !6, file: !1, line: 1, type: !10)
84   !10 = !DIBasicType(name: "ty32", size: 32, encoding: DW_ATE_unsigned)
85   !11 = !DILocalVariable(name: "2", scope: !6, file: !1, line: 3, type: !10)
86   !12 = !DILocation(line: 1, column: 1, scope: !6)
87   !13 = !DILocation(line: 2, column: 1, scope: !6)
88   !14 = !DILocation(line: 3, column: 1, scope: !6)
89   !15 = !DILocation(line: 4, column: 1, scope: !6)
91 ...
92 ---
93 name:            foo
94 liveins:
95   - { reg: '$edi', virtual-reg: '' }
96 stack:
97   - { id: 0, name: '', type: spill-slot, offset: -12, size: 4, alignment: 4,
98       stack-id: default, callee-saved-register: '', callee-saved-restored: true,
99       debug-info-variable: '', debug-info-expression: '', debug-info-location: '' }
100 body:             |
101   bb.0.entry:
102     successors: %bb.1(0x80000000)
103     liveins: $edi
105     frame-setup PUSH64r undef $rax, implicit-def $rsp, implicit $rsp
106     CFI_INSTRUCTION def_cfa_offset 16
107     renamable $edi = ADD32rr renamable $edi, killed renamable $edi, implicit-def $eflags, debug-location !12
108     DBG_VALUE renamable $edi, $noreg, !9, !DIExpression(), debug-location !12
109     MOV32mr $rsp, 1, $noreg, 4, $noreg, killed $edi :: (store (s32) into %stack.0)
110     DBG_VALUE $rsp, 0, !9, !DIExpression(DW_OP_plus_uconst, 4), debug-location !12
112   bb.1.exit:
113     $edi = MOV32rm $rsp, 1, $noreg, 4, $noreg :: (load (s32) from %stack.0)
114     CALL64pcrel32 @use, csr_64, implicit $rsp, implicit $ssp, implicit killed $edi, implicit-def $eax, debug-location !14
115     DBG_VALUE renamable $eax, $noreg, !11, !DIExpression(), debug-location !14
116     $rcx = frame-destroy POP64r implicit-def $rsp, implicit $rsp, debug-location !15
117     RETQ implicit killed $eax, debug-location !15