|
| 1 | +; REQUIRES: system-windows |
| 2 | +; RUN: %build --compiler=clang-cl --nodefaultlib -o %t.exe -- %s |
| 3 | +; RUN: lldb-test symbols %t.exe | FileCheck %s |
| 4 | + |
| 5 | +; Output from |
| 6 | +; rustc lib.rs -C debuginfo=2 --emit=llvm-ir --crate-type=rlib |
| 7 | +; (using rlib to avoid including panic handlers in IR) |
| 8 | +; |
| 9 | +; lib.rs: |
| 10 | +; |
| 11 | +; #![no_std] |
| 12 | +; mod my_module { |
| 13 | +; #[repr(C)] |
| 14 | +; pub struct MyStruct { |
| 15 | +; pub a: i32, |
| 16 | +; pub b: i32, |
| 17 | +; } |
| 18 | +; } |
| 19 | +; #[unsafe(no_mangle)] |
| 20 | +; extern "C" fn mainCRTStartup() -> my_module::MyStruct { |
| 21 | +; my_module::MyStruct { a: 3, b: 4 } |
| 22 | +; } |
| 23 | +; #[unsafe(no_mangle)] |
| 24 | +; extern "C" fn main() {} |
| 25 | + |
| 26 | +; ======================================================================= |
| 27 | +; ModuleID = 'lib.b43fc69277defcf4-cgu.0' |
| 28 | +source_filename = "lib.b43fc69277defcf4-cgu.0" |
| 29 | +target datalayout = "e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-i128:128-f80:128-n8:16:32:64-S128" |
| 30 | +target triple = "x86_64-pc-windows-msvc" |
| 31 | + |
| 32 | +; Function Attrs: nounwind uwtable |
| 33 | +define i64 @mainCRTStartup() unnamed_addr #0 !dbg !6 { |
| 34 | +start: |
| 35 | + %_0 = alloca [8 x i8], align 4 |
| 36 | + store i32 3, ptr %_0, align 4, !dbg !20 |
| 37 | + %0 = getelementptr inbounds i8, ptr %_0, i64 4, !dbg !20 |
| 38 | + store i32 4, ptr %0, align 4, !dbg !20 |
| 39 | + %1 = load i64, ptr %_0, align 4, !dbg !21 |
| 40 | + ret i64 %1, !dbg !21 |
| 41 | +} |
| 42 | + |
| 43 | +; Function Attrs: nounwind uwtable |
| 44 | +define void @main() unnamed_addr #0 !dbg !22 { |
| 45 | +start: |
| 46 | + ret void, !dbg !25 |
| 47 | +} |
| 48 | + |
| 49 | +attributes #0 = { nounwind uwtable "target-cpu"="x86-64" "target-features"="+cx16,+sse3,+sahf" } |
| 50 | + |
| 51 | +!llvm.module.flags = !{!0, !1, !2} |
| 52 | +!llvm.ident = !{!3} |
| 53 | +!llvm.dbg.cu = !{!4} |
| 54 | + |
| 55 | +!0 = !{i32 8, !"PIC Level", i32 2} |
| 56 | +!1 = !{i32 2, !"CodeView", i32 1} |
| 57 | +!2 = !{i32 2, !"Debug Info Version", i32 3} |
| 58 | +!3 = !{!"rustc version 1.88.0 (6b00bc388 2025-06-23)"} |
| 59 | +!4 = distinct !DICompileUnit(language: DW_LANG_Rust, file: !5, producer: "clang LLVM (rustc version 1.88.0 (6b00bc388 2025-06-23))", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, splitDebugInlining: false) |
| 60 | +!5 = !DIFile(filename: "src/lib.rs\\@\\lib.b43fc69277defcf4-cgu.0", directory: "F:\\Dev\\testing") |
| 61 | +!6 = distinct !DISubprogram(name: "mainCRTStartup", scope: !8, file: !7, line: 12, type: !9, scopeLine: 12, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition, unit: !4, templateParams: !19) |
| 62 | +!7 = !DIFile(filename: "src/lib.rs", directory: "F:\\Dev\\testing", checksumkind: CSK_SHA256, checksum: "586087c038922a8fa0183c4b20c075445761d545e02d06af80cd5a62dcadb3ec") |
| 63 | +!8 = !DINamespace(name: "lib", scope: null) |
| 64 | +!9 = !DISubroutineType(types: !10) |
| 65 | +!10 = !{!11} |
| 66 | +!11 = !DICompositeType(tag: DW_TAG_structure_type, name: "MyStruct", scope: !13, file: !12, size: 64, align: 32, flags: DIFlagPublic, elements: !14, templateParams: !19, identifier: "99a3f33b03974e4eaf7224f807a544bf") |
| 67 | +!12 = !DIFile(filename: "<unknown>", directory: "") |
| 68 | +!13 = !DINamespace(name: "my_module", scope: !8) |
| 69 | +!14 = !{!15, !18} |
| 70 | +!15 = !DIDerivedType(tag: DW_TAG_member, name: "a", scope: !11, file: !12, baseType: !16, size: 32, align: 32, flags: DIFlagPublic) |
| 71 | +!16 = !DIDerivedType(tag: DW_TAG_typedef, name: "i32", file: !12, baseType: !17) |
| 72 | +!17 = !DIBasicType(name: "__int32", size: 32, encoding: DW_ATE_signed) |
| 73 | +!18 = !DIDerivedType(tag: DW_TAG_member, name: "b", scope: !11, file: !12, baseType: !16, size: 32, align: 32, offset: 32, flags: DIFlagPublic) |
| 74 | +!19 = !{} |
| 75 | +!20 = !DILocation(line: 13, scope: !6) |
| 76 | +!21 = !DILocation(line: 14, scope: !6) |
| 77 | +!22 = distinct !DISubprogram(name: "main", scope: !8, file: !7, line: 17, type: !23, scopeLine: 17, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition, unit: !4, templateParams: !19) |
| 78 | +!23 = !DISubroutineType(types: !24) |
| 79 | +!24 = !{null} |
| 80 | +!25 = !DILocation(line: 17, scope: !22) |
| 81 | + |
| 82 | +; CHECK: Type{{.*}} , name = "MyStruct", size = 8, compiler_type = {{.*}} struct MyStruct { |
| 83 | +; CHECK-NEXT: int a; |
| 84 | +; CHECK-NEXT: int b; |
| 85 | +; CHECK-NEXT: } |
0 commit comments