blob: 1e68632f32e56dac3f972df69aef7c9d1a5f7bea [file] [log] [blame]
Jonas Devliegheree101b072017-08-18 18:07:00 +00001; RUN: llc %s -stop-after=livedebugvars -o %t
2; RUN: cat %t | FileCheck %s
3;
4; Test that we can emit debug info for large values that are split
5; up across multiple registers by the SelectionDAG type legalizer.
6;
7; // Compile with -O1 -m32.
8; long long foo (long long a, long long b)
9; {
10; long long res = b+1;
11; if ( a == b )
12; return res;
13; return 0;
14; }
15;
16; CHECK: ![[MDN1:[0-9]+]] = !DIExpression(DW_OP_LLVM_fragment, 0, 32)
17; CHECK: ![[MDN2:[0-9]+]] = !DIExpression(DW_OP_LLVM_fragment, 32, 32)
18; CHECK-DAG: DBG_VALUE debug-use %{{[a-z]+}}, debug-use _, !{{[0-9]+}}, ![[MDN1]], debug-location !{{[0-9]+}}
19; CHECK-DAG: DBG_VALUE debug-use %{{[a-z]+}}, debug-use _, !{{[0-9]+}}, ![[MDN2]], debug-location !{{[0-9]+}}
20
21; ModuleID = 'sdagsplit-1.c'
22target datalayout = "e-m:e-p:32:32-f64:32:64-f80:32-n8:16:32-S128"
23target triple = "i386"
24
25; Function Attrs: nounwind readnone
26define i64 @foo(i64 %a, i64 %b) local_unnamed_addr #0 !dbg !8 {
27entry:
28 tail call void @llvm.dbg.value(metadata i64 %a, metadata !13, metadata !16), !dbg !17
29 tail call void @llvm.dbg.value(metadata i64 %b, metadata !14, metadata !16), !dbg !18
30 tail call void @llvm.dbg.value(metadata i64 %add, metadata !15, metadata !16), !dbg !19
31 %cmp = icmp eq i64 %a, %b, !dbg !20
32 %add = add nsw i64 %b, 1, !dbg !22
33 %retval.0 = select i1 %cmp, i64 %add, i64 0, !dbg !23
34 ret i64 %retval.0, !dbg !24
35}
36
37; Function Attrs: nounwind readnone speculatable
38declare void @llvm.dbg.value(metadata, metadata, metadata) #1
39
40attributes #0 = { nounwind readnone }
41attributes #1 = { nounwind readnone speculatable }
42
43!llvm.dbg.cu = !{!0}
44!llvm.module.flags = !{!3, !4, !5, !6}
45!llvm.ident = !{!7}
46
47!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 6.0.0 ", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
48!1 = !DIFile(filename: "sdagsplit-1.c", directory: "/X86")
49!2 = !{}
50!3 = !{i32 1, !"NumRegisterParameters", i32 0}
51!4 = !{i32 2, !"Dwarf Version", i32 2}
52!5 = !{i32 2, !"Debug Info Version", i32 3}
53!6 = !{i32 1, !"wchar_size", i32 4}
54!7 = !{!"clang version 6.0.0 "}
55!8 = distinct !DISubprogram(name: "foo", scope: !1, file: !1, line: 2, type: !9, isLocal: false, isDefinition: true, scopeLine: 3, flags: DIFlagPrototyped, isOptimized: true, unit: !0, variables: !12)
56!9 = !DISubroutineType(types: !10)
57!10 = !{!11, !11, !11}
58!11 = !DIBasicType(name: "long long int", size: 64, encoding: DW_ATE_signed)
59!12 = !{!13, !14, !15}
60!13 = !DILocalVariable(name: "a", arg: 1, scope: !8, file: !1, line: 2, type: !11)
61!14 = !DILocalVariable(name: "b", arg: 2, scope: !8, file: !1, line: 2, type: !11)
62!15 = !DILocalVariable(name: "res", scope: !8, file: !1, line: 4, type: !11)
63!16 = !DIExpression()
64!17 = !DILocation(line: 2, column: 26, scope: !8)
65!18 = !DILocation(line: 2, column: 39, scope: !8)
66!19 = !DILocation(line: 4, column: 12, scope: !8)
67!20 = !DILocation(line: 5, column: 9, scope: !21)
68!21 = distinct !DILexicalBlock(scope: !8, file: !1, line: 5, column: 7)
69!22 = !DILocation(line: 4, column: 19, scope: !8)
70!23 = !DILocation(line: 5, column: 7, scope: !8)
71!24 = !DILocation(line: 8, column: 1, scope: !8)