DbgDeclare2.ll 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. ; This file is used by 2011-08-04-DebugLoc.ll, so it doesn't actually do anything itself
  2. ;
  3. ; RUN: true
  4. 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-S128"
  5. target triple = "x86_64-apple-macosx10.9.0"
  6. define void @test(i32 %argc, i8** %argv) uwtable ssp {
  7. entry:
  8. %argc.addr = alloca i32, align 4
  9. %argv.addr = alloca i8**, align 8
  10. %i = alloca i32, align 4
  11. store i32 %argc, i32* %argc.addr, align 4
  12. call void @llvm.dbg.declare(metadata i32* %argc.addr, metadata !14, metadata !DIExpression()), !dbg !15
  13. store i8** %argv, i8*** %argv.addr, align 8
  14. call void @llvm.dbg.declare(metadata i8*** %argv.addr, metadata !16, metadata !DIExpression()), !dbg !15
  15. call void @llvm.dbg.declare(metadata i32* %i, metadata !17, metadata !DIExpression()), !dbg !20
  16. store i32 0, i32* %i, align 4, !dbg !20
  17. br label %for.cond, !dbg !20
  18. for.cond: ; preds = %for.inc, %entry
  19. %0 = load i32, i32* %i, align 4, !dbg !20
  20. %1 = load i32, i32* %argc.addr, align 4, !dbg !20
  21. %cmp = icmp slt i32 %0, %1, !dbg !20
  22. br i1 %cmp, label %for.body, label %for.end, !dbg !20
  23. for.body: ; preds = %for.cond
  24. %2 = load i32, i32* %i, align 4, !dbg !21
  25. %idxprom = sext i32 %2 to i64, !dbg !21
  26. %3 = load i8**, i8*** %argv.addr, align 8, !dbg !21
  27. %arrayidx = getelementptr inbounds i8*, i8** %3, i64 %idxprom, !dbg !21
  28. %4 = load i8*, i8** %arrayidx, align 8, !dbg !21
  29. %call = call i32 @puts(i8* %4), !dbg !21
  30. br label %for.inc, !dbg !23
  31. for.inc: ; preds = %for.body
  32. %5 = load i32, i32* %i, align 4, !dbg !20
  33. %inc = add nsw i32 %5, 1, !dbg !20
  34. store i32 %inc, i32* %i, align 4, !dbg !20
  35. br label %for.cond, !dbg !20
  36. for.end: ; preds = %for.cond
  37. ret void, !dbg !24
  38. }
  39. declare void @llvm.dbg.declare(metadata, metadata, metadata) nounwind readnone
  40. declare i32 @puts(i8*)
  41. !llvm.dbg.cu = !{!0}
  42. !llvm.module.flags = !{!27}
  43. !0 = !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.3 (trunk 173515)", isOptimized: true, emissionKind: 0, file: !25, enums: !2, retainedTypes: !2, subprograms: !3, globals: !2)
  44. !2 = !{}
  45. !3 = !{!5}
  46. !5 = !DISubprogram(name: "print_args", linkageName: "test", line: 4, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, scopeLine: 5, file: !26, scope: null, type: !7, function: void (i32, i8**)* @test, variables: !2)
  47. !6 = !DIFile(filename: "test.cpp", directory: "/private/tmp")
  48. !7 = !DISubroutineType(types: !8)
  49. !8 = !{null, !9, !10}
  50. !9 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
  51. !10 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 64, align: 64, baseType: !11)
  52. !11 = !DIDerivedType(tag: DW_TAG_pointer_type, size: 64, align: 64, baseType: !12)
  53. !12 = !DIDerivedType(tag: DW_TAG_const_type, baseType: !13)
  54. !13 = !DIBasicType(tag: DW_TAG_base_type, name: "char", size: 8, align: 8, encoding: DW_ATE_signed_char)
  55. !14 = !DILocalVariable(tag: DW_TAG_arg_variable, name: "argc", line: 4, arg: 1, scope: !5, file: !6, type: !9)
  56. !15 = !DILocation(line: 4, scope: !5)
  57. !16 = !DILocalVariable(tag: DW_TAG_arg_variable, name: "argv", line: 4, arg: 2, scope: !5, file: !6, type: !10)
  58. !17 = !DILocalVariable(tag: DW_TAG_auto_variable, name: "i", line: 6, scope: !18, file: !6, type: !9)
  59. !18 = distinct !DILexicalBlock(line: 6, column: 0, file: !26, scope: !19)
  60. !19 = distinct !DILexicalBlock(line: 5, column: 0, file: !26, scope: !5)
  61. !20 = !DILocation(line: 6, scope: !18)
  62. !21 = !DILocation(line: 8, scope: !22)
  63. !22 = distinct !DILexicalBlock(line: 7, column: 0, file: !26, scope: !18)
  64. !23 = !DILocation(line: 9, scope: !22)
  65. !24 = !DILocation(line: 10, scope: !19)
  66. !25 = !DIFile(filename: "main.cpp", directory: "/private/tmp")
  67. !26 = !DIFile(filename: "test.cpp", directory: "/private/tmp")
  68. !27 = !{i32 1, !"Debug Info Version", i32 3}