inline-debug-loc.ll 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ; RUN: opt -inline -S < %s | FileCheck %s
  2. target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
  3. ; Function @bar contains instruction %cmp which is not associated to any debug
  4. ; location. This test verifies that the inliner doesn't incorrectly attribute
  5. ; the callsite debug location to %cmp.
  6. define i32 @bar(i32 %a, i32 %b) #0 !dbg !6 {
  7. entry:
  8. %inc = add i32 %a, 1, !dbg !8
  9. %cmp = icmp slt i32 %inc, %b
  10. %select = select i1 %cmp, i32 %a, i32 %b, !dbg !8
  11. ret i32 %select, !dbg !8
  12. }
  13. ; CHECK-LABEL: define i32 @baz(
  14. ; CHECK: entry:
  15. ; CHECK: %[[INC:[a-z0-9.]+]] = add i32 %a, 1, !dbg ![[DL:[0-9]+]]
  16. ; CHECK: %[[CMP:[a-z0-9.]+]] = icmp slt i32 %[[INC]], %b
  17. ; CHECK-NOT: !dbg
  18. ; CHECK: %[[SELECT:[a-z0-9.]+]] = select i1 %[[CMP]], i32 %a, i32 %b, !dbg ![[DL]]
  19. ;
  20. ; ![[DL]] = !DILocation(line: 3, scope: !{{.*}}, inlinedAt: {{.*}})
  21. define i32 @baz(i32 %a, i32 %b) !dbg !9 {
  22. entry:
  23. %call = tail call i32 @bar(i32 %a, i32 %b), !dbg !10
  24. ret i32 %call, !dbg !10
  25. }
  26. attributes #0 = { alwaysinline }
  27. !llvm.dbg.cu = !{!0}
  28. !llvm.module.flags = !{!3, !4}
  29. !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, isOptimized: true, runtimeVersion: 0, emissionKind: LineTablesOnly, enums: !2)
  30. !1 = !DIFile(filename: "test.c", directory: "")
  31. !2 = !{}
  32. !3 = !{i32 2, !"Dwarf Version", i32 4}
  33. !4 = !{i32 2, !"Debug Info Version", i32 3}
  34. !6 = distinct !DISubprogram(name: "bar", scope: !1, file: !1, line: 2, type: !7, isLocal: false, isDefinition: true, scopeLine: 2, flags: DIFlagPrototyped, isOptimized: true, unit: !0, retainedNodes: !2)
  35. !7 = !DISubroutineType(types: !2)
  36. !8 = !DILocation(line: 3, scope: !6)
  37. !9 = distinct !DISubprogram(name: "baz", scope: !1, file: !1, line: 11, type: !7, isLocal: false, isDefinition: true, scopeLine: 11, flags: DIFlagPrototyped, isOptimized: true, unit: !0, retainedNodes: !2)
  38. !10 = !DILocation(line: 12, scope: !9)