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