increment.carbon 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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: ; Function Attrs: nounwind
  22. // CHECK:STDOUT: define void @_CIncrSigned.Main() #0 !dbg !4 {
  23. // CHECK:STDOUT: entry:
  24. // CHECK:STDOUT: %from.var = alloca i32, align 4, !dbg !7
  25. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %from.var), !dbg !7
  26. // CHECK:STDOUT: store i32 0, ptr %from.var, align 4, !dbg !7
  27. // CHECK:STDOUT: call void @"_COp.Int.9452f4c51951679b.Core:Inc.Core.be1e879c1ad406d8"(ptr %from.var), !dbg !8
  28. // CHECK:STDOUT: ret void, !dbg !9
  29. // CHECK:STDOUT: }
  30. // CHECK:STDOUT:
  31. // CHECK:STDOUT: ; Function Attrs: nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
  32. // CHECK:STDOUT: declare void @llvm.lifetime.start.p0(ptr captures(none)) #1
  33. // CHECK:STDOUT:
  34. // CHECK:STDOUT: ; Function Attrs: nounwind
  35. // CHECK:STDOUT: define linkonce_odr void @"_COp.Int.9452f4c51951679b.Core:Inc.Core.be1e879c1ad406d8"(ptr %self) #0 !dbg !10 {
  36. // CHECK:STDOUT: call void @"_COp:thunk.Int.9452f4c51951679b.Core:AddAssignWith.5375cfcbca6d9e35.Core.57ee91777b6354a8"(ptr %self, i32 1), !dbg !17
  37. // CHECK:STDOUT: ret void, !dbg !18
  38. // CHECK:STDOUT: }
  39. // CHECK:STDOUT:
  40. // CHECK:STDOUT: ; Function Attrs: alwaysinline nounwind
  41. // CHECK:STDOUT: define linkonce_odr void @"_COp:thunk.Int.9452f4c51951679b.Core:AddAssignWith.5375cfcbca6d9e35.Core.57ee91777b6354a8"(ptr %self, i32 %other) #2 !dbg !19 {
  42. // CHECK:STDOUT: %1 = call i32 @"_CConvert.272fc3e88346d0d9:ImplicitAs.d993a5132e000405.Core.628184612c80324d"(i32 %other), !dbg !25
  43. // CHECK:STDOUT: %2 = load i32, ptr %self, align 4, !dbg !26
  44. // CHECK:STDOUT: %3 = add i32 %2, %1, !dbg !26
  45. // CHECK:STDOUT: store i32 %3, ptr %self, align 4, !dbg !26
  46. // CHECK:STDOUT: ret void, !dbg !26
  47. // CHECK:STDOUT: }
  48. // CHECK:STDOUT:
  49. // CHECK:STDOUT: ; Function Attrs: nounwind
  50. // CHECK:STDOUT: define linkonce_odr i32 @"_CConvert.272fc3e88346d0d9:ImplicitAs.d993a5132e000405.Core.628184612c80324d"(i32 %self) #0 !dbg !27 {
  51. // CHECK:STDOUT: %1 = call i32 @"_CAsInt.Int.9452f4c51951679b.Core:AnyInt.Core.be1e879c1ad406d8"(i32 %self), !dbg !32
  52. // CHECK:STDOUT: ret i32 %1, !dbg !33
  53. // CHECK:STDOUT: }
  54. // CHECK:STDOUT:
  55. // CHECK:STDOUT: ; Function Attrs: nounwind
  56. // CHECK:STDOUT: define linkonce_odr i32 @"_CAsInt.Int.9452f4c51951679b.Core:AnyInt.Core.be1e879c1ad406d8"(i32 %self) #0 !dbg !34 {
  57. // CHECK:STDOUT: ret i32 %self, !dbg !37
  58. // CHECK:STDOUT: }
  59. // CHECK:STDOUT:
  60. // CHECK:STDOUT: attributes #0 = { nounwind }
  61. // CHECK:STDOUT: attributes #1 = { nocallback nofree nosync nounwind willreturn memory(argmem: readwrite) }
  62. // CHECK:STDOUT: attributes #2 = { alwaysinline nounwind }
  63. // CHECK:STDOUT:
  64. // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
  65. // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
  66. // CHECK:STDOUT:
  67. // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
  68. // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
  69. // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
  70. // CHECK:STDOUT: !3 = !DIFile(filename: "increment.carbon", directory: "")
  71. // CHECK:STDOUT: !4 = distinct !DISubprogram(name: "IncrSigned", linkageName: "_CIncrSigned.Main", scope: null, file: !3, line: 4, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  72. // CHECK:STDOUT: !5 = !DISubroutineType(types: !6)
  73. // CHECK:STDOUT: !6 = !{null}
  74. // CHECK:STDOUT: !7 = !DILocation(line: 5, column: 3, scope: !4)
  75. // CHECK:STDOUT: !8 = !DILocation(line: 6, column: 3, scope: !4)
  76. // CHECK:STDOUT: !9 = !DILocation(line: 4, column: 1, scope: !4)
  77. // CHECK:STDOUT: !10 = distinct !DISubprogram(name: "Op", linkageName: "_COp.Int.9452f4c51951679b.Core:Inc.Core.be1e879c1ad406d8", scope: null, file: !11, line: 360, type: !12, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !15)
  78. // CHECK:STDOUT: !11 = !DIFile(filename: "{{.*}}/prelude/types/int.carbon", directory: "")
  79. // CHECK:STDOUT: !12 = !DISubroutineType(types: !13)
  80. // CHECK:STDOUT: !13 = !{null, !14}
  81. // CHECK:STDOUT: !14 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
  82. // CHECK:STDOUT: !15 = !{!16}
  83. // CHECK:STDOUT: !16 = !DILocalVariable(arg: 1, scope: !10, type: !14)
  84. // CHECK:STDOUT: !17 = !DILocation(line: 362, column: 5, scope: !10)
  85. // CHECK:STDOUT: !18 = !DILocation(line: 360, column: 3, scope: !10)
  86. // CHECK:STDOUT: !19 = distinct !DISubprogram(name: "Op", linkageName: "_COp:thunk.Int.9452f4c51951679b.Core:AddAssignWith.5375cfcbca6d9e35.Core.57ee91777b6354a8", scope: null, file: !11, line: 296, type: !20, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !22)
  87. // CHECK:STDOUT: !20 = !DISubroutineType(types: !21)
  88. // CHECK:STDOUT: !21 = !{null, !14, !14}
  89. // CHECK:STDOUT: !22 = !{!23, !24}
  90. // CHECK:STDOUT: !23 = !DILocalVariable(arg: 1, scope: !19, type: !14)
  91. // CHECK:STDOUT: !24 = !DILocalVariable(arg: 2, scope: !19, type: !14)
  92. // CHECK:STDOUT: !25 = !DILocation(line: 4294967295, scope: !19)
  93. // CHECK:STDOUT: !26 = !DILocation(line: 296, column: 3, scope: !19)
  94. // CHECK:STDOUT: !27 = distinct !DISubprogram(name: "Convert", linkageName: "_CConvert.272fc3e88346d0d9:ImplicitAs.d993a5132e000405.Core.628184612c80324d", scope: null, file: !11, line: 59, type: !28, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !30)
  95. // CHECK:STDOUT: !28 = !DISubroutineType(types: !29)
  96. // CHECK:STDOUT: !29 = !{!14, !14}
  97. // CHECK:STDOUT: !30 = !{!31}
  98. // CHECK:STDOUT: !31 = !DILocalVariable(arg: 1, scope: !27, type: !14)
  99. // CHECK:STDOUT: !32 = !DILocation(line: 61, column: 17, scope: !27)
  100. // CHECK:STDOUT: !33 = !DILocation(line: 61, column: 5, scope: !27)
  101. // CHECK:STDOUT: !34 = distinct !DISubprogram(name: "AsInt", linkageName: "_CAsInt.Int.9452f4c51951679b.Core:AnyInt.Core.be1e879c1ad406d8", scope: null, file: !11, line: 54, type: !28, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !35)
  102. // CHECK:STDOUT: !35 = !{!36}
  103. // CHECK:STDOUT: !36 = !DILocalVariable(arg: 1, scope: !34, type: !14)
  104. // CHECK:STDOUT: !37 = !DILocation(line: 54, column: 36, scope: !34)