debuginfo-preserved.ll 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. ; RUN: opt < %s -scalarrepl -S | FileCheck %s
  2. ; RUN: opt < %s -scalarrepl-ssa -S | FileCheck %s
  3. target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"
  4. target triple = "x86_64-apple-macosx10.6.0"
  5. ; CHECK: f
  6. ; CHECK-NOT: llvm.dbg.declare
  7. ; CHECK: llvm.dbg.value
  8. ; CHECK: llvm.dbg.value
  9. ; CHECK: llvm.dbg.value
  10. ; CHECK: llvm.dbg.value
  11. ; CHECK: llvm.dbg.value
  12. define i32 @f(i32 %a, i32 %b) nounwind ssp {
  13. entry:
  14. %a.addr = alloca i32, align 4
  15. %b.addr = alloca i32, align 4
  16. %c = alloca i32, align 4
  17. store i32 %a, i32* %a.addr, align 4
  18. call void @llvm.dbg.declare(metadata i32* %a.addr, metadata !6, metadata !DIExpression()), !dbg !7
  19. store i32 %b, i32* %b.addr, align 4
  20. call void @llvm.dbg.declare(metadata i32* %b.addr, metadata !8, metadata !DIExpression()), !dbg !9
  21. call void @llvm.dbg.declare(metadata i32* %c, metadata !10, metadata !DIExpression()), !dbg !12
  22. %tmp = load i32, i32* %a.addr, align 4, !dbg !13
  23. store i32 %tmp, i32* %c, align 4, !dbg !13
  24. %tmp1 = load i32, i32* %a.addr, align 4, !dbg !14
  25. %tmp2 = load i32, i32* %b.addr, align 4, !dbg !14
  26. %add = add nsw i32 %tmp1, %tmp2, !dbg !14
  27. store i32 %add, i32* %a.addr, align 4, !dbg !14
  28. %tmp3 = load i32, i32* %c, align 4, !dbg !15
  29. %tmp4 = load i32, i32* %b.addr, align 4, !dbg !15
  30. %sub = sub nsw i32 %tmp3, %tmp4, !dbg !15
  31. store i32 %sub, i32* %b.addr, align 4, !dbg !15
  32. %tmp5 = load i32, i32* %a.addr, align 4, !dbg !16
  33. %tmp6 = load i32, i32* %b.addr, align 4, !dbg !16
  34. %add7 = add nsw i32 %tmp5, %tmp6, !dbg !16
  35. ret i32 %add7, !dbg !16
  36. }
  37. declare void @llvm.dbg.declare(metadata, metadata, metadata) nounwind readnone
  38. !llvm.dbg.cu = !{!0}
  39. !llvm.module.flags = !{!20}
  40. !0 = !DICompileUnit(language: DW_LANG_C99, producer: "clang version 3.0 (trunk 131941)", isOptimized: false, emissionKind: 0, file: !18, enums: !19, retainedTypes: !19, subprograms: !17)
  41. !1 = !DISubprogram(name: "f", line: 1, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, scopeLine: 1, file: !18, scope: !2, type: !3, function: i32 (i32, i32)* @f)
  42. !2 = !DIFile(filename: "/d/j/debug-test.c", directory: "/Volumes/Data/b")
  43. !3 = !DISubroutineType(types: !4)
  44. !4 = !{!5}
  45. !5 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
  46. !6 = !DILocalVariable(tag: DW_TAG_arg_variable, name: "a", line: 1, arg: 1, scope: !1, file: !2, type: !5)
  47. !7 = !DILocation(line: 1, column: 11, scope: !1)
  48. !8 = !DILocalVariable(tag: DW_TAG_arg_variable, name: "b", line: 1, arg: 2, scope: !1, file: !2, type: !5)
  49. !9 = !DILocation(line: 1, column: 18, scope: !1)
  50. !10 = !DILocalVariable(tag: DW_TAG_auto_variable, name: "c", line: 2, scope: !11, file: !2, type: !5)
  51. !11 = distinct !DILexicalBlock(line: 1, column: 21, file: !18, scope: !1)
  52. !12 = !DILocation(line: 2, column: 9, scope: !11)
  53. !13 = !DILocation(line: 2, column: 14, scope: !11)
  54. !14 = !DILocation(line: 3, column: 5, scope: !11)
  55. !15 = !DILocation(line: 4, column: 5, scope: !11)
  56. !16 = !DILocation(line: 5, column: 5, scope: !11)
  57. !17 = !{!1}
  58. !18 = !DIFile(filename: "/d/j/debug-test.c", directory: "/Volumes/Data/b")
  59. !19 = !{}
  60. !20 = !{i32 1, !"Debug Info Version", i32 3}