template-recursive-void.ll 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. ; REQUIRES: object-emission
  2. ; RUN: %llc_dwarf -O0 -filetype=obj < %s > %t
  3. ; RUN: llvm-dwarfdump -v %t | FileCheck %s
  4. ; This was pulled from clang's debug-info-template-recursive.cpp test.
  5. ; class base { };
  6. ; template <class T> class foo : public base {
  7. ; void operator=(const foo r) { }
  8. ; };
  9. ; class bar : public foo<void> { };
  10. ; bar filters;
  11. ; CHECK: DW_TAG_template_type_parameter [{{.*}}]
  12. ; CHECK-NEXT: DW_AT_name{{.*}}"T"
  13. ; CHECK-NOT: DW_AT_type
  14. ; CHECK: NULL
  15. source_filename = "test/DebugInfo/Generic/template-recursive-void.ll"
  16. %class.bar = type { i8 }
  17. @filters = global %class.bar zeroinitializer, align 1, !dbg !0
  18. !llvm.dbg.cu = !{!29}
  19. !llvm.module.flags = !{!32, !33}
  20. !0 = !DIGlobalVariableExpression(var: !1, expr: !DIExpression())
  21. !1 = !DIGlobalVariable(name: "filters", scope: null, file: !2, line: 10, type: !3, isLocal: false, isDefinition: true)
  22. !2 = !DIFile(filename: "debug-info-template-recursive.cpp", directory: "/usr/local/google/home/echristo/tmp")
  23. !3 = !DICompositeType(tag: DW_TAG_class_type, name: "bar", file: !2, line: 9, size: 8, align: 8, elements: !4)
  24. !4 = !{!5, !25}
  25. !5 = !DIDerivedType(tag: DW_TAG_inheritance, scope: !3, baseType: !6)
  26. !6 = !DICompositeType(tag: DW_TAG_class_type, name: "foo<void>", file: !2, line: 5, size: 8, align: 8, elements: !7, templateParams: !23)
  27. !7 = !{!8, !15, !20}
  28. !8 = !DIDerivedType(tag: DW_TAG_inheritance, scope: !6, baseType: !9)
  29. !9 = !DICompositeType(tag: DW_TAG_class_type, name: "base", file: !2, line: 3, size: 8, align: 8, elements: !10)
  30. !10 = !{!11}
  31. !11 = !DISubprogram(name: "base", scope: !9, file: !2, line: 3, type: !12, isLocal: false, isDefinition: false, scopeLine: 3, virtualIndex: 6, flags: DIFlagArtificial | DIFlagPrototyped, isOptimized: false)
  32. !12 = !DISubroutineType(types: !13)
  33. !13 = !{null, !14}
  34. !14 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !9, size: 64, align: 64, flags: DIFlagArtificial | DIFlagObjectPointer)
  35. !15 = !DISubprogram(name: "operator=", linkageName: "_ZN3fooIvEaSES0_", scope: !6, file: !2, line: 6, type: !16, isLocal: false, isDefinition: false, scopeLine: 6, virtualIndex: 6, flags: DIFlagPrivate | DIFlagPrototyped, isOptimized: false)
  36. !16 = !DISubroutineType(types: !17)
  37. !17 = !{null, !18, !19}
  38. !18 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !6, size: 64, align: 64, flags: DIFlagArtificial | DIFlagObjectPointer)
  39. !19 = !DIDerivedType(tag: DW_TAG_const_type, baseType: !6)
  40. !20 = !DISubprogram(name: "foo", scope: !6, file: !2, line: 5, type: !21, isLocal: false, isDefinition: false, scopeLine: 5, virtualIndex: 6, flags: DIFlagArtificial | DIFlagPrototyped, isOptimized: false)
  41. !21 = !DISubroutineType(types: !22)
  42. !22 = !{null, !18}
  43. !23 = !{!24}
  44. !24 = !DITemplateTypeParameter(name: "T", type: null)
  45. !25 = !DISubprogram(name: "bar", scope: !3, file: !2, line: 9, type: !26, isLocal: false, isDefinition: false, scopeLine: 9, virtualIndex: 6, flags: DIFlagArtificial | DIFlagPrototyped, isOptimized: false)
  46. !26 = !DISubroutineType(types: !27)
  47. !27 = !{null, !28}
  48. !28 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !3, size: 64, align: 64, flags: DIFlagArtificial | DIFlagObjectPointer)
  49. !29 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !2, producer: "clang version 3.4 (trunk 187958) (llvm/trunk 187964)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !30, retainedTypes: !30, globals: !31, imports: !30)
  50. !30 = !{}
  51. !31 = !{!0}
  52. !32 = !{i32 2, !"Dwarf Version", i32 3}
  53. !33 = !{i32 1, !"Debug Info Version", i32 3}