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