[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / DebugInfo / X86 / sdag-transfer-dbgvalue.ll
blob772eb46941b3ef5d6c537ea946235c65b6039f23
1 ; RUN: llc -start-after=codegenprepare -stop-before finalize-isel -o - %s | FileCheck %s
3 ; This tests that transferDbgValues() changes order of SDDbgValue transferred
4 ; to another node and debug info for 'ADD32ri' appears *after* the instruction.
6 ; This test case was generated from the following program
7 ; using: clang -g -O3 -S -emit-llvm test.c
9 ; int foo(int a, int *b) {
10 ;   int c = a + 512;
11 ;   if (c != 0)
12 ;     *b = a;
13 ;   return c;
14 ; }
16 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
17 target triple = "x86_64-unknown-linux-gnu"
19 ; CHECK-LABEL: bb.0.entry:
20 ; CHECK:       %[[REG:[0-9]+]]:gr32 = ADD32ri %1, 512
21 ; CHECK-NEXT:  DBG_VALUE %[[REG]]
23 ; Function Attrs: nofree norecurse nounwind uwtable writeonly
24 define dso_local i32 @foo(i32 %a, i32* nocapture %b) local_unnamed_addr !dbg !7 {
25 entry:
26   %add = add nsw i32 %a, 512, !dbg !18
27   call void @llvm.dbg.value(metadata i32 %add, metadata !16, metadata !DIExpression()), !dbg !17
28   %cmp = icmp eq i32 %add, 0, !dbg !18
29   br i1 %cmp, label %if.end, label %if.then, !dbg !18
31 if.then:                                          ; preds = %entry
32   store i32 %a, i32* %b, align 4, !dbg !18
33   br label %if.end, !dbg !18
35 if.end:                                           ; preds = %entry, %if.then
36   ret i32 %add, !dbg !18
39 ; Function Attrs: nounwind readnone speculatable willreturn
40 declare void @llvm.dbg.value(metadata, metadata, metadata)
42 !llvm.dbg.cu = !{!0}
43 !llvm.module.flags = !{!3, !4, !5}
44 !llvm.ident = !{!6}
46 !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 10.0.0", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, nameTableKind: None)
47 !1 = !DIFile(filename: "test.c", directory: "/")
48 !2 = !{}
49 !3 = !{i32 2, !"Dwarf Version", i32 4}
50 !4 = !{i32 2, !"Debug Info Version", i32 3}
51 !5 = !{i32 1, !"wchar_size", i32 4}
52 !6 = !{!"clang version 10.0.0"}
53 !7 = distinct !DISubprogram(name: "foo", scope: !8, file: !8, line: 1, type: !9, scopeLine: 1, flags: DIFlagPrototyped | DIFlagAllCallsDescribed, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !13)
54 !8 = !DIFile(filename: "test.c", directory: "/")
55 !9 = !DISubroutineType(types: !10)
56 !10 = !{!11, !11, !12}
57 !11 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
58 !12 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !11, size: 64)
59 !13 = !{!14, !15, !16}
60 !14 = !DILocalVariable(name: "a", arg: 1, scope: !7, file: !8, line: 1, type: !11)
61 !15 = !DILocalVariable(name: "b", arg: 2, scope: !7, file: !8, line: 1, type: !12)
62 !16 = !DILocalVariable(name: "c", scope: !7, file: !8, line: 2, type: !11)
63 !17 = !DILocation(line: 0, scope: !7)
64 !18 = !DILocation(line: 2, column: 13, scope: !7)