increment.carbon 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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/full.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/operators/increment.carbon
  10. // TIP: To dump output, run:
  11. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/operators/increment.carbon
  12. // --- increment.carbon
  13. library "[[@TEST_NAME]]";
  14. fn IncrSigned() {
  15. var from: i32 = 0;
  16. ++from;
  17. }
  18. // CHECK:STDOUT: ; ModuleID = 'increment.carbon'
  19. // CHECK:STDOUT: source_filename = "increment.carbon"
  20. // CHECK:STDOUT:
  21. // CHECK:STDOUT: define void @_CIncrSigned.Main() !dbg !4 {
  22. // CHECK:STDOUT: entry:
  23. // CHECK:STDOUT: %from.var = alloca i32, align 4, !dbg !7
  24. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %from.var), !dbg !7
  25. // CHECK:STDOUT: store i32 0, ptr %from.var, align 4, !dbg !7
  26. // CHECK:STDOUT: call void @"_COp.Int.Core:Inc.Core.be1e879c1ad406d8"(ptr %from.var), !dbg !8
  27. // CHECK:STDOUT: ret void, !dbg !9
  28. // CHECK:STDOUT: }
  29. // CHECK:STDOUT:
  30. // CHECK:STDOUT: ; Function Attrs: nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
  31. // CHECK:STDOUT: declare void @llvm.lifetime.start.p0(ptr captures(none)) #0
  32. // CHECK:STDOUT:
  33. // CHECK:STDOUT: define linkonce_odr void @"_COp.Int.Core:Inc.Core.be1e879c1ad406d8"(ptr %self) !dbg !10 {
  34. // CHECK:STDOUT: call void @"_COp:thunk.Int.Core:AddAssignWith.Core.2122e6c8c4f4206d"(ptr %self, i32 1), !dbg !12
  35. // CHECK:STDOUT: ret void, !dbg !13
  36. // CHECK:STDOUT: }
  37. // CHECK:STDOUT:
  38. // CHECK:STDOUT: define linkonce_odr void @"_COp:thunk.Int.Core:AddAssignWith.Core.2122e6c8c4f4206d"(ptr %self, i32 %other) !dbg !14 {
  39. // CHECK:STDOUT: %1 = call i32 @"_CConvert.2a0d145dae8e0e7f:ImplicitAs.Core.de631560529e9861"(i32 %other), !dbg !15
  40. // CHECK:STDOUT: %2 = load i32, ptr %self, align 4, !dbg !16
  41. // CHECK:STDOUT: %3 = add i32 %2, %1, !dbg !16
  42. // CHECK:STDOUT: store i32 %3, ptr %self, align 4, !dbg !16
  43. // CHECK:STDOUT: ret void, !dbg !16
  44. // CHECK:STDOUT: }
  45. // CHECK:STDOUT:
  46. // CHECK:STDOUT: define linkonce_odr i32 @"_CConvert.2a0d145dae8e0e7f:ImplicitAs.Core.de631560529e9861"(i32 %self) !dbg !17 {
  47. // CHECK:STDOUT: ret i32 %self, !dbg !19
  48. // CHECK:STDOUT: }
  49. // CHECK:STDOUT:
  50. // CHECK:STDOUT: attributes #0 = { nocallback nofree nosync nounwind willreturn memory(argmem: readwrite) }
  51. // CHECK:STDOUT:
  52. // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
  53. // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
  54. // CHECK:STDOUT:
  55. // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
  56. // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
  57. // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
  58. // CHECK:STDOUT: !3 = !DIFile(filename: "increment.carbon", directory: "")
  59. // CHECK:STDOUT: !4 = distinct !DISubprogram(name: "IncrSigned", linkageName: "_CIncrSigned.Main", scope: null, file: !3, line: 4, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  60. // CHECK:STDOUT: !5 = !DISubroutineType(types: !6)
  61. // CHECK:STDOUT: !6 = !{}
  62. // CHECK:STDOUT: !7 = !DILocation(line: 5, column: 3, scope: !4)
  63. // CHECK:STDOUT: !8 = !DILocation(line: 6, column: 3, scope: !4)
  64. // CHECK:STDOUT: !9 = !DILocation(line: 4, column: 1, scope: !4)
  65. // CHECK:STDOUT: !10 = distinct !DISubprogram(name: "Op", linkageName: "_COp.Int.Core:Inc.Core.be1e879c1ad406d8", scope: null, file: !11, line: 339, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  66. // CHECK:STDOUT: !11 = !DIFile(filename: "{{.*}}/prelude/types/int.carbon", directory: "")
  67. // CHECK:STDOUT: !12 = !DILocation(line: 341, column: 5, scope: !10)
  68. // CHECK:STDOUT: !13 = !DILocation(line: 339, column: 3, scope: !10)
  69. // CHECK:STDOUT: !14 = distinct !DISubprogram(name: "Op", linkageName: "_COp:thunk.Int.Core:AddAssignWith.Core.2122e6c8c4f4206d", scope: null, file: !11, line: 275, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  70. // CHECK:STDOUT: !15 = !DILocation(line: 4294967295, scope: !14)
  71. // CHECK:STDOUT: !16 = !DILocation(line: 275, column: 3, scope: !14)
  72. // CHECK:STDOUT: !17 = distinct !DISubprogram(name: "Convert", linkageName: "_CConvert.2a0d145dae8e0e7f:ImplicitAs.Core.de631560529e9861", scope: null, file: !18, line: 24, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  73. // CHECK:STDOUT: !18 = !DIFile(filename: "{{.*}}/prelude/operators/as.carbon", directory: "")
  74. // CHECK:STDOUT: !19 = !DILocation(line: 24, column: 38, scope: !17)