export-symbol-anonymous-class.ll 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ; RUN: %llc_dwarf -O0 -filetype=obj < %s | llvm-dwarfdump -debug-info - | FileCheck %s
  2. ;
  3. ; struct A {
  4. ; // Anonymous class exports its symbols into A
  5. ; struct {
  6. ; int y;
  7. ; };
  8. ; } a;
  9. ;
  10. ; CHECK: DW_TAG_structure_type
  11. ; CHECK-NEXT: DW_AT_calling_convention (DW_CC_pass_by_value)
  12. ; CHECK-NEXT: DW_AT_name ("A")
  13. ;
  14. ; CHECK-NOT: NULL
  15. ;
  16. ; CHECK: DW_TAG_structure_type
  17. ; CHECK-NEXT: DW_AT_export_symbols (true)
  18. %struct.A = type { %struct.anon }
  19. %struct.anon = type { i32 }
  20. @a = global %struct.A zeroinitializer, align 4, !dbg !0
  21. !llvm.module.flags = !{!14, !15}
  22. !llvm.dbg.cu = !{!2}
  23. !llvm.ident = !{!16}
  24. !0 = !DIGlobalVariableExpression(var: !1, expr: !DIExpression())
  25. !1 = distinct !DIGlobalVariable(name: "a", scope: !2, file: !3, line: 5, type: !6, isLocal: false, isDefinition: true)
  26. !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "clang version 10.0.0", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !4, globals: !5, nameTableKind: GNU)
  27. !3 = !DIFile(filename: "simple_anon_class.cpp", directory: "/dir")
  28. !4 = !{}
  29. !5 = !{!0}
  30. !6 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "A", file: !3, line: 1, size: 32, flags: DIFlagTypePassByValue, elements: !7, identifier: "_ZTS1A")
  31. !7 = !{!8}
  32. !8 = !DIDerivedType(tag: DW_TAG_member, scope: !6, file: !3, line: 2, baseType: !9, size: 32)
  33. !9 = distinct !DICompositeType(tag: DW_TAG_structure_type, scope: !6, file: !3, line: 2, size: 32, flags: DIFlagExportSymbols | DIFlagTypePassByValue, elements: !10, identifier: "_ZTSN1AUt_E")
  34. !10 = !{!11}
  35. !11 = !DIDerivedType(tag: DW_TAG_member, name: "y", scope: !9, file: !3, line: 3, baseType: !12, size: 32)
  36. !12 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
  37. !14 = !{i32 2, !"Dwarf Version", i32 4}
  38. !15 = !{i32 2, !"Debug Info Version", i32 3}
  39. !16 = !{!"clang version 10.0.0"}