debug-label-opt.ll 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. ; Test DBG_LABEL MachineInstr under optimization.
  2. ; The test case is generated by clang with -O2 is on.
  3. ; REQUIRES: asserts
  4. ; RUN: llc -debug-only=isel %s -o /dev/null 2> %t.debug
  5. ; RUN: cat %t.debug | FileCheck %s --check-prefix=CHECKMI
  6. ;
  7. ; CHECKMI: DBG_LABEL "end_sum", debug-location !17
  8. ; CHECKMI: DBG_LABEL "end", debug-location !19
  9. source_filename = "debug-label-opt.c"
  10. define i32 @foo(i32* nocapture readonly %a, i32 %n) local_unnamed_addr !dbg !7 {
  11. entry:
  12. call void @llvm.dbg.value(metadata i32* %a, metadata !13, metadata !DIExpression()), !dbg !6
  13. call void @llvm.dbg.value(metadata i32 %n, metadata !14, metadata !DIExpression()), !dbg !6
  14. switch i32 %n, label %end_sum [
  15. i32 2, label %end_sum.sink.split
  16. i32 3, label %if.then3
  17. ], !dbg !6
  18. if.then3: ; preds = %entry
  19. %arrayidx4 = getelementptr inbounds i32, i32* %a, i64 1, !dbg !6
  20. br label %end_sum.sink.split, !dbg !6
  21. end_sum.sink.split: ; preds = %entry, %if.then3
  22. %a.sink = phi i32* [ %arrayidx4, %if.then3 ], [ %a, %entry ]
  23. %.sink = phi i64 [ 2, %if.then3 ], [ 1, %entry ]
  24. %0 = load i32, i32* %a.sink, align 4
  25. %arrayidx1 = getelementptr inbounds i32, i32* %a, i64 %.sink
  26. %1 = load i32, i32* %arrayidx1, align 4
  27. %add = add nsw i32 %1, %0
  28. br label %end_sum, !dbg !6
  29. end_sum: ; preds = %end_sum.sink.split, %entry
  30. %sum.0 = phi i32 [ 0, %entry ], [ %add, %end_sum.sink.split ]
  31. call void @llvm.dbg.label(metadata !15), !dbg !17
  32. %2 = load i32, i32* %a, align 4, !dbg !6
  33. %mul = mul nsw i32 %2, %sum.0, !dbg !18
  34. call void @llvm.dbg.label(metadata !16), !dbg !19
  35. ret i32 %mul, !dbg !6
  36. }
  37. ; Function Attrs: nounwind readnone speculatable
  38. declare void @llvm.dbg.label(metadata)
  39. ; Function Attrs: nounwind readnone speculatable
  40. declare void @llvm.dbg.value(metadata, metadata, metadata)
  41. !llvm.dbg.cu = !{!0}
  42. !llvm.module.flags = !{!3, !4, !5}
  43. !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
  44. !1 = !DIFile(filename: "debug-label-opt.c", directory: "./")
  45. !2 = !{}
  46. !3 = !{i32 2, !"Dwarf Version", i32 4}
  47. !4 = !{i32 2, !"Debug Info Version", i32 3}
  48. !5 = !{i32 1, !"wchar_size", i32 4}
  49. !6 = !DILocation(line: 1, column: 14, scope: !7)
  50. !7 = distinct !DISubprogram(name: "foo", scope: !1, file: !1, line: 1, type: !8, isLocal: false, isDefinition: true, scopeLine: 2, flags: DIFlagPrototyped, isOptimized: true, unit: !0, retainedNodes: !12)
  51. !8 = !DISubroutineType(types: !9)
  52. !9 = !{!10, !11, !10}
  53. !10 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
  54. !11 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !10, size: 64)
  55. !12 = !{!13, !14, !15, !16}
  56. !13 = !DILocalVariable(name: "a", arg: 1, scope: !7, file: !1, line: 1, type: !11)
  57. !14 = !DILocalVariable(name: "n", arg: 2, scope: !7, file: !1, line: 1, type: !10)
  58. !15 = !DILabel(scope: !7, name: "end_sum", file: !1, line: 10)
  59. !16 = !DILabel(scope: !7, name: "end", file: !1, line: 13)
  60. !17 = !DILocation(line: 10, column: 1, scope: !7)
  61. !18 = !DILocation(line: 11, column: 7, scope: !7)
  62. !19 = !DILocation(line: 13, column: 1, scope: !7)