local.carbon 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. //
  5. // INCLUDE-FILE: toolchain/testing/testdata/min_prelude/int.carbon
  6. //
  7. // AUTOUPDATE
  8. // TIP: To test this file alone, run:
  9. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/lower/testdata/let/local.carbon
  10. // TIP: To dump output, run:
  11. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/let/local.carbon
  12. // --- local.carbon
  13. library "[[@TEST_NAME]]";
  14. fn Run() -> i32 {
  15. let n: i32 = 1;
  16. let m: i32 = n;
  17. return m;
  18. }
  19. // --- symbolic.carbon
  20. library "[[@TEST_NAME]]";
  21. class C {}
  22. fn F(c: C) {}
  23. fn CallF() {
  24. // TODO: Uncomment this once symbolic locals work in check. It's disabled so
  25. // that we still test lowering of non-symbolic locals.
  26. // let c:! C = {};
  27. // F(c);
  28. }
  29. // CHECK:STDOUT: ; ModuleID = 'local.carbon'
  30. // CHECK:STDOUT: source_filename = "local.carbon"
  31. // CHECK:STDOUT:
  32. // CHECK:STDOUT: ; Function Attrs: nounwind
  33. // CHECK:STDOUT: define i32 @main() #0 !dbg !4 {
  34. // CHECK:STDOUT: entry:
  35. // CHECK:STDOUT: ret i32 1, !dbg !8
  36. // CHECK:STDOUT: }
  37. // CHECK:STDOUT:
  38. // CHECK:STDOUT: attributes #0 = { nounwind }
  39. // CHECK:STDOUT:
  40. // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
  41. // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
  42. // CHECK:STDOUT:
  43. // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
  44. // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
  45. // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
  46. // CHECK:STDOUT: !3 = !DIFile(filename: "local.carbon", directory: "")
  47. // CHECK:STDOUT: !4 = distinct !DISubprogram(name: "Run", linkageName: "main", scope: null, file: !3, line: 3, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  48. // CHECK:STDOUT: !5 = !DISubroutineType(types: !6)
  49. // CHECK:STDOUT: !6 = !{!7}
  50. // CHECK:STDOUT: !7 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
  51. // CHECK:STDOUT: !8 = !DILocation(line: 6, column: 3, scope: !4)
  52. // CHECK:STDOUT: ; ModuleID = 'symbolic.carbon'
  53. // CHECK:STDOUT: source_filename = "symbolic.carbon"
  54. // CHECK:STDOUT:
  55. // CHECK:STDOUT: ; Function Attrs: nounwind
  56. // CHECK:STDOUT: define void @_CF.Main(ptr %c) #0 !dbg !4 {
  57. // CHECK:STDOUT: entry:
  58. // CHECK:STDOUT: ret void, !dbg !10
  59. // CHECK:STDOUT: }
  60. // CHECK:STDOUT:
  61. // CHECK:STDOUT: ; Function Attrs: nounwind
  62. // CHECK:STDOUT: define void @_CCallF.Main() #0 !dbg !11 {
  63. // CHECK:STDOUT: entry:
  64. // CHECK:STDOUT: ret void, !dbg !14
  65. // CHECK:STDOUT: }
  66. // CHECK:STDOUT:
  67. // CHECK:STDOUT: attributes #0 = { nounwind }
  68. // CHECK:STDOUT:
  69. // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
  70. // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
  71. // CHECK:STDOUT:
  72. // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
  73. // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
  74. // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
  75. // CHECK:STDOUT: !3 = !DIFile(filename: "symbolic.carbon", directory: "")
  76. // CHECK:STDOUT: !4 = distinct !DISubprogram(name: "F", linkageName: "_CF.Main", scope: null, file: !3, line: 5, type: !5, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !8)
  77. // CHECK:STDOUT: !5 = !DISubroutineType(types: !6)
  78. // CHECK:STDOUT: !6 = !{null, !7}
  79. // CHECK:STDOUT: !7 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: null, size: 8)
  80. // CHECK:STDOUT: !8 = !{!9}
  81. // CHECK:STDOUT: !9 = !DILocalVariable(arg: 1, scope: !4, type: !7)
  82. // CHECK:STDOUT: !10 = !DILocation(line: 5, column: 1, scope: !4)
  83. // CHECK:STDOUT: !11 = distinct !DISubprogram(name: "CallF", linkageName: "_CCallF.Main", scope: null, file: !3, line: 7, type: !12, spFlags: DISPFlagDefinition, unit: !2)
  84. // CHECK:STDOUT: !12 = !DISubroutineType(types: !13)
  85. // CHECK:STDOUT: !13 = !{null}
  86. // CHECK:STDOUT: !14 = !DILocation(line: 7, column: 1, scope: !11)