type-unique-inheritance-a.ll 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. ; CHECK: !DICompositeType(tag: DW_TAG_class_type, name: "A"
  2. ; CHECK: !DICompositeType(tag: DW_TAG_class_type, name: "Base"
  3. ; CHECK: !DICompositeType(tag: DW_TAG_class_type, name: "B"
  4. ; CHECK-NOT: !DICompositeType(tag: DW_TAG_class_type
  5. ; Content of header files:
  6. ;
  7. ; class Base;
  8. ; class A : Base {
  9. ; int x;
  10. ; };
  11. ;
  12. ; class A;
  13. ; class Base {
  14. ; int b;
  15. ; };
  16. ;
  17. ; class B {
  18. ; int bb;
  19. ; A *a;
  20. ; };
  21. ; Content of foo.cpp:
  22. ;
  23. ; #include "b.hpp"
  24. ; #include "a.hpp"
  25. ;
  26. ; void f(int a) {
  27. ; A t;
  28. ; }
  29. ; Content of bar.cpp:
  30. ;
  31. ; #include "b.hpp"
  32. ; #include "a.hpp"
  33. ; void g(int a) {
  34. ; B t;
  35. ; }
  36. ;
  37. ; void f(int);
  38. ; int main() {
  39. ; A a;
  40. ; f(0);
  41. ; g(1);
  42. ; return 0;
  43. ; }
  44. ; ModuleID = 'foo.cpp'
  45. %class.A = type { %class.Base, i32 }
  46. %class.Base = type { i32 }
  47. ; Function Attrs: nounwind ssp uwtable
  48. define void @_Z1fi(i32 %a) #0 {
  49. entry:
  50. %a.addr = alloca i32, align 4
  51. %t = alloca %class.A, align 4
  52. store i32 %a, i32* %a.addr, align 4
  53. call void @llvm.dbg.declare(metadata i32* %a.addr, metadata !20, metadata !DIExpression()), !dbg !21
  54. call void @llvm.dbg.declare(metadata %class.A* %t, metadata !22, metadata !DIExpression()), !dbg !23
  55. ret void, !dbg !24
  56. }
  57. ; Function Attrs: nounwind readnone
  58. declare void @llvm.dbg.declare(metadata, metadata, metadata) #1
  59. attributes #0 = { nounwind ssp uwtable "less-precise-fpmad"="false" "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="false" }
  60. attributes #1 = { nounwind readnone }
  61. !llvm.dbg.cu = !{!0}
  62. !llvm.module.flags = !{!19, !25}
  63. !0 = !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.4 (http://llvm.org/git/clang.git f54e02f969d02d640103db73efc30c45439fceab) (http://llvm.org/git/llvm.git 284353b55896cb1babfaa7add7c0a363245342d2)", isOptimized: false, emissionKind: 0, file: !1, enums: !2, retainedTypes: !3, subprograms: !14, globals: !2, imports: !2)
  64. !1 = !DIFile(filename: "foo.cpp", directory: "/Users/mren/c_testing/type_unique_air/inher")
  65. !2 = !{}
  66. !3 = !{!4, !8}
  67. !4 = !DICompositeType(tag: DW_TAG_class_type, name: "A", line: 3, size: 64, align: 32, file: !5, elements: !6, identifier: "_ZTS1A")
  68. !5 = !DIFile(filename: "./a.hpp", directory: "/Users/mren/c_testing/type_unique_air/inher")
  69. !6 = !{!7, !13}
  70. !7 = !DIDerivedType(tag: DW_TAG_inheritance, flags: DIFlagPrivate, scope: !"_ZTS1A", baseType: !8)
  71. !8 = !DICompositeType(tag: DW_TAG_class_type, name: "Base", line: 3, size: 32, align: 32, file: !9, elements: !10, identifier: "_ZTS4Base")
  72. !9 = !DIFile(filename: "./b.hpp", directory: "/Users/mren/c_testing/type_unique_air/inher")
  73. !10 = !{!11}
  74. !11 = !DIDerivedType(tag: DW_TAG_member, name: "b", line: 4, size: 32, align: 32, flags: DIFlagPrivate, file: !9, scope: !"_ZTS4Base", baseType: !12)
  75. !12 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
  76. !13 = !DIDerivedType(tag: DW_TAG_member, name: "x", line: 4, size: 32, align: 32, offset: 32, flags: DIFlagPrivate, file: !5, scope: !"_ZTS1A", baseType: !12)
  77. !14 = !{!15}
  78. !15 = !DISubprogram(name: "f", linkageName: "_Z1fi", line: 5, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, scopeLine: 5, file: !1, scope: !16, type: !17, function: void (i32)* @_Z1fi, variables: !2)
  79. !16 = !DIFile(filename: "foo.cpp", directory: "/Users/mren/c_testing/type_unique_air/inher")
  80. !17 = !DISubroutineType(types: !18)
  81. !18 = !{null, !12}
  82. !19 = !{i32 2, !"Dwarf Version", i32 2}
  83. !20 = !DILocalVariable(tag: DW_TAG_arg_variable, name: "a", line: 5, arg: 1, scope: !15, file: !16, type: !12)
  84. !21 = !DILocation(line: 5, scope: !15)
  85. !22 = !DILocalVariable(tag: DW_TAG_auto_variable, name: "t", line: 6, scope: !15, file: !16, type: !4)
  86. !23 = !DILocation(line: 6, scope: !15)
  87. !24 = !DILocation(line: 7, scope: !15)
  88. !25 = !{i32 1, !"Debug Info Version", i32 3}