[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / DebugInfo / MIR / X86 / livedebugvalues_loop_clobbered.mir
blob47f114f7fe1b810f88994ce899f60c3bf2f5c8f7
1 --- |
2   ; RUN: llc %s -march=x86-64 -run-pass=livedebugvalues -o - | FileCheck %s -implicit-check-not=DBG_VALUE
4   ; Check that DBG_VALUE instructions are not propagated into a loop that
5   ; clobbers it's location.
7   ; CHECK-LABEL: bb.0.entry:
8   ; CHECK:       DBG_VALUE $ebx, $noreg, !16, !DIExpression(), debug-location !17
10   define i32 @_Z8bb_to_bb() local_unnamed_addr !dbg !12 {
11   entry:
12     br label %bb1, !dbg !17
13   bb1:
14     br label %bb2, !dbg !17
15   bb2:
16     br label %bb3, !dbg !17
17   bb3:
18     ret i32 0, !dbg !17
19   }
21   !llvm.dbg.cu = !{!0}
22   !llvm.module.flags = !{!7, !8, !9, !10}
23   !llvm.ident = !{!11}
24   !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !1, producer: "clang version 10.0.0)", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, globals: !3, debugInfoForProfiling: true, nameTableKind: None)
25   !1 = !DIFile(filename: "main.cpp", directory: "F:\test")
26   !2 = !{}
27   !3 = !{!4}
28   !4 = !DIGlobalVariableExpression(var: !5, expr: !DIExpression())
29   !5 = distinct !DIGlobalVariable(name: "start", scope: !0, file: !1, line: 4, type: !6, isLocal: false, isDefinition: true)
30   !6 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
31   !7 = !{i32 2, !"Dwarf Version", i32 4}
32   !8 = !{i32 2, !"Debug Info Version", i32 3}
33   !9 = !{i32 1, !"wchar_size", i32 2}
34   !10 = !{i32 7, !"PIC Level", i32 2}
35   !11 = !{!"clang version 10.0.0"}
36   !12 = distinct !DISubprogram(name: "bb_to_bb", linkageName: "bb_to_bb", scope: !1, file: !1, line: 6, type: !13, scopeLine: 6, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !15)
37   !13 = !DISubroutineType(types: !14)
38   !14 = !{!6, !6}
39   !15 = !{!16}
40   !16 = !DILocalVariable(name: "myVar", scope: !12, file: !1, line: 7, type: !6)
41   !17 = !DILocation(line: 10, scope: !12)
43 ...
44 ---
45 name: _Z8bb_to_bb
46 body:  |
47   bb.0.entry:
48     successors: %bb.1
49     $ebx = MOV32ri 0, debug-location !17
50     DBG_VALUE $ebx, $noreg, !16, !DIExpression(), debug-location !17
52   bb.1.bb1:
53     successors: %bb.2
54     $eax = MOV32ri 0, debug-location !17
56   bb.2.bb2:
57     successors: %bb.1, %bb.3
58     $ebx = MOV32ri 0, debug-location !17
59     JCC_1 %bb.1, 4, implicit killed $eflags
61   bb.3.bb3:
62     RETQ $eax, debug-location !17
63 ...