1; RUN: lli --jit-kind=orc-lazy --per-module-lazy \
2; RUN:     --generate=__dump_jit_debug_objects %s | llvm-dwarfdump --diff - | FileCheck %s
3;
4; RUN: lli --jit-kind=orc-lazy --per-module-lazy --jit-linker=jitlink \
5; RUN:     --generate=__dump_jit_debug_objects %s | llvm-dwarfdump --diff - | FileCheck %s
6;
7; CHECK: -:	file format elf64-x86-64
8; CHECK: .debug_info contents:
9; CHECK: 0x00000000: Compile Unit: length = 0x00000047, format = DWARF32, version = 0x0004, abbr_offset = 0x0000, addr_size = 0x08 (next unit at 0x0000004b)
10; CHECK: DW_TAG_compile_unit
11; CHECK:               DW_AT_producer	("compiler version")
12; CHECK:               DW_AT_language	(DW_LANG_C99)
13; CHECK:               DW_AT_name	("source-file.c")
14; CHECK:               DW_AT_stmt_list	()
15; CHECK:               DW_AT_comp_dir	("/workspace")
16; CHECK:               DW_AT_low_pc	()
17; CHECK:               DW_AT_high_pc	()
18; CHECK:   DW_TAG_subprogram
19; CHECK:                 DW_AT_low_pc	()
20; CHECK:                 DW_AT_high_pc	()
21; CHECK:                 DW_AT_frame_base	(DW_OP_reg7 RSP)
22; CHECK:                 DW_AT_name	("main")
23; CHECK:                 DW_AT_decl_file	("/workspace/source-file.c")
24; CHECK:                 DW_AT_decl_line	(4)
25; CHECK:                 DW_AT_type	("int")
26; CHECK:                 DW_AT_external	(true)
27; CHECK:   DW_TAG_base_type
28; CHECK:                 DW_AT_name	("int")
29; CHECK:                 DW_AT_encoding	(DW_ATE_signed)
30; CHECK:                 DW_AT_byte_size	(0x04)
31; CHECK:   NULL
32
33target triple = "x86_64-unknown-unknown-elf"
34
35; Built-in symbol provided by the JIT
36declare void @__dump_jit_debug_objects(i8*)
37
38; Host-process symbol from the GDB JIT interface
39@__jit_debug_descriptor = external global i8, align 1
40
41define i32 @main() !dbg !9 {
42  %1 = alloca i32, align 4
43  store i32 0, i32* %1, align 4
44  call void @__dump_jit_debug_objects(i8* @__jit_debug_descriptor), !dbg !13
45  ret i32 0, !dbg !14
46}
47
48!llvm.module.flags = !{!0, !1, !2, !3, !4}
49!llvm.dbg.cu = !{!5}
50!llvm.ident = !{!8}
51
52!0 = !{i32 2, !"SDK Version", [3 x i32] [i32 10, i32 15, i32 6]}
53!1 = !{i32 7, !"Dwarf Version", i32 4}
54!2 = !{i32 2, !"Debug Info Version", i32 3}
55!3 = !{i32 1, !"wchar_size", i32 4}
56!4 = !{i32 7, !"PIC Level", i32 2}
57!5 = distinct !DICompileUnit(language: DW_LANG_C99, file: !6, producer: "compiler version", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !7, nameTableKind: None)
58!6 = !DIFile(filename: "source-file.c", directory: "/workspace")
59!7 = !{}
60!8 = !{!"compiler version"}
61!9 = distinct !DISubprogram(name: "main", scope: !6, file: !6, line: 4, type: !10, scopeLine: 4, spFlags: DISPFlagDefinition, unit: !5, retainedNodes: !7)
62!10 = !DISubroutineType(types: !11)
63!11 = !{!12}
64!12 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
65!13 = !DILocation(line: 5, column: 3, scope: !9)
66!14 = !DILocation(line: 6, column: 3, scope: !9)
67