namespace_inline_function_definition.ll 4.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. ; REQUIRES: object-emission
  2. ; RUN: %llc_dwarf -O0 -filetype=obj -dwarf-linkage-names=All < %s | llvm-dwarfdump -v -debug-info - | FileCheck %s
  3. ; Generate from clang with the following source. Note that the definition of
  4. ; the inline function follows its use to workaround another bug that should be
  5. ; fixed soon.
  6. ; namespace ns {
  7. ; int func(int i);
  8. ; }
  9. ; extern int x;
  10. ; int main() { return ns::func(x); }
  11. ; int __attribute__((always_inline)) ns::func(int i) { return i * 2; }
  12. ; CHECK: DW_TAG_namespace
  13. ; CHECK-NEXT: DW_AT_name {{.*}} "ns"
  14. ; CHECK-NOT: DW_TAG
  15. ; CHECK: DW_TAG_subprogram
  16. ; CHECK-NOT: DW_TAG
  17. ; CHECK: DW_AT_linkage_name {{.*}} "_ZN2ns4funcEi"
  18. ; CHECK-NOT: DW_TAG
  19. ; CHECK: DW_TAG_formal_parameter
  20. ; CHECK: NULL
  21. ; CHECK-NOT: NULL
  22. ; CHECK: DW_TAG_subprogram
  23. ; CHECK-NOT: DW_TAG
  24. ; CHECK: DW_AT_abstract_origin {{.*}} "_ZN2ns4funcEi"
  25. ; CHECK-NOT: DW_TAG
  26. ; CHECK: DW_TAG_formal_parameter
  27. ; CHECK: DW_AT_abstract_origin {{.*}} "i"
  28. ; CHECK: NULL
  29. ; CHECK: NULL
  30. ; CHECK: NULL
  31. @x = external global i32
  32. ; Function Attrs: uwtable
  33. define i32 @main() #0 !dbg !4 {
  34. entry:
  35. %i.addr.i = alloca i32, align 4
  36. %retval = alloca i32, align 4
  37. store i32 0, i32* %retval
  38. %0 = load i32, i32* @x, align 4, !dbg !16
  39. store i32 %0, i32* %i.addr.i, align 4
  40. call void @llvm.dbg.declare(metadata i32* %i.addr.i, metadata !117, metadata !DIExpression()), !dbg !18
  41. %1 = load i32, i32* %i.addr.i, align 4, !dbg !18
  42. %mul.i = mul nsw i32 %1, 2, !dbg !18
  43. ret i32 %mul.i, !dbg !16
  44. }
  45. ; Function Attrs: alwaysinline nounwind uwtable
  46. define i32 @_ZN2ns4funcEi(i32 %i) #1 !dbg !9 {
  47. entry:
  48. %i.addr = alloca i32, align 4
  49. store i32 %i, i32* %i.addr, align 4
  50. call void @llvm.dbg.declare(metadata i32* %i.addr, metadata !17, metadata !DIExpression()), !dbg !19
  51. %0 = load i32, i32* %i.addr, align 4, !dbg !19
  52. %mul = mul nsw i32 %0, 2, !dbg !19
  53. ret i32 %mul, !dbg !19
  54. }
  55. ; Function Attrs: nounwind readnone
  56. declare void @llvm.dbg.declare(metadata, metadata, metadata) #2
  57. attributes #0 = { 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" }
  58. attributes #1 = { alwaysinline nounwind 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" }
  59. attributes #2 = { nounwind readnone }
  60. !llvm.dbg.cu = !{!0}
  61. !llvm.module.flags = !{!13, !14}
  62. !llvm.ident = !{!15}
  63. !0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.5.0 ", isOptimized: false, emissionKind: FullDebug, file: !1, enums: !2, retainedTypes: !2, globals: !2, imports: !2)
  64. !1 = !DIFile(filename: "namespace_inline_function_definition.cpp", directory: "/tmp/dbginfo")
  65. !2 = !{}
  66. !4 = distinct !DISubprogram(name: "main", line: 5, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, unit: !0, scopeLine: 5, file: !1, scope: !5, type: !6, retainedNodes: !2)
  67. !5 = !DIFile(filename: "namespace_inline_function_definition.cpp", directory: "/tmp/dbginfo")
  68. !6 = !DISubroutineType(types: !7)
  69. !7 = !{!8}
  70. !8 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
  71. !9 = distinct !DISubprogram(name: "func", linkageName: "_ZN2ns4funcEi", line: 6, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, unit: !0, scopeLine: 6, file: !1, scope: !10, type: !11, retainedNodes: !2)
  72. !10 = !DINamespace(name: "ns", scope: null)
  73. !11 = !DISubroutineType(types: !12)
  74. !12 = !{!8, !8}
  75. !13 = !{i32 2, !"Dwarf Version", i32 4}
  76. !14 = !{i32 2, !"Debug Info Version", i32 3}
  77. !15 = !{!"clang version 3.5.0 "}
  78. !16 = !DILocation(line: 5, scope: !4)
  79. !17 = !DILocalVariable(name: "i", line: 6, arg: 1, scope: !9, file: !5, type: !8)
  80. !117 = !DILocalVariable(name: "i", line: 6, arg: 1, scope: !9, file: !5, type: !8)
  81. !18 = !DILocation(line: 6, scope: !9, inlinedAt: !16)
  82. !19 = !DILocation(line: 6, scope: !9)