optimize_size.carbon 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. // ARGS: compile --optimize=size foo.carbon --target=x86_64-unknown-linux-gnu --phase=lower --dump-llvm-ir --exclude-dump-file-prefix=%{core}
  6. //
  7. // AUTOUPDATE
  8. // TIP: To test this file alone, run:
  9. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/driver/testdata/compile/optimize/optimize_size.carbon
  10. // TIP: To dump output, run:
  11. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/driver/testdata/compile/optimize/optimize_size.carbon
  12. // --- foo.carbon
  13. import Core library "range";
  14. fn Rand() -> i32;
  15. fn NoInlineWithOz() -> i32 {
  16. return Rand() + Rand();
  17. }
  18. fn CallNoInlineWithOptSize() -> i32 {
  19. // Should not be inlined with --optimize=size, because the body is larger than the call.
  20. return NoInlineWithOz();
  21. }
  22. fn VectorizedWithOptSpeed(a: array(i32, 65536)*) {
  23. // Should be vectorized with --optimize=speed, but not in other modes.
  24. var n: i32 = 0;
  25. while (n < 65536) {
  26. (*a)[n] *= 2;
  27. ++n;
  28. }
  29. }
  30. // CHECK:STDOUT: ; ModuleID = 'foo.carbon'
  31. // CHECK:STDOUT: source_filename = "foo.carbon"
  32. // CHECK:STDOUT:
  33. // CHECK:STDOUT: declare i32 @_CRand.Main()
  34. // CHECK:STDOUT:
  35. // CHECK:STDOUT: ; Function Attrs: minsize nounwind optsize
  36. // CHECK:STDOUT: define i32 @_CNoInlineWithOz.Main() #0 !dbg !4 {
  37. // CHECK:STDOUT: entry:
  38. // CHECK:STDOUT: %Rand.call.loc7_15 = call i32 @_CRand.Main(), !dbg !8
  39. // CHECK:STDOUT: %Rand.call.loc7_24 = call i32 @_CRand.Main(), !dbg !9
  40. // CHECK:STDOUT: %Int.as.AddWith.impl.Op.call = add i32 %Rand.call.loc7_15, %Rand.call.loc7_24, !dbg !8
  41. // CHECK:STDOUT: ret i32 %Int.as.AddWith.impl.Op.call, !dbg !10
  42. // CHECK:STDOUT: }
  43. // CHECK:STDOUT:
  44. // CHECK:STDOUT: ; Function Attrs: minsize nounwind optsize
  45. // CHECK:STDOUT: define i32 @_CCallNoInlineWithOptSize.Main() #0 !dbg !11 {
  46. // CHECK:STDOUT: entry:
  47. // CHECK:STDOUT: %NoInlineWithOz.call = call i32 @_CNoInlineWithOz.Main(), !dbg !12
  48. // CHECK:STDOUT: ret i32 %NoInlineWithOz.call, !dbg !13
  49. // CHECK:STDOUT: }
  50. // CHECK:STDOUT:
  51. // CHECK:STDOUT: ; Function Attrs: minsize nounwind optsize
  52. // CHECK:STDOUT: define void @_CVectorizedWithOptSpeed.Main(ptr %a) #0 !dbg !14 {
  53. // CHECK:STDOUT: entry:
  54. // CHECK:STDOUT: %n.var = alloca i32, align 4, !dbg !20
  55. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %n.var), !dbg !20
  56. // CHECK:STDOUT: store i32 0, ptr %n.var, align 4, !dbg !20
  57. // CHECK:STDOUT: br label %while.cond, !dbg !21
  58. // CHECK:STDOUT:
  59. // CHECK:STDOUT: while.cond: ; preds = %while.body, %entry
  60. // CHECK:STDOUT: %.loc18_10 = load i32, ptr %n.var, align 4, !dbg !22
  61. // CHECK:STDOUT: %Int.as.OrderedWith.impl.Less.call = icmp slt i32 %.loc18_10, 65536, !dbg !22
  62. // CHECK:STDOUT: br i1 %Int.as.OrderedWith.impl.Less.call, label %while.body, label %while.done, !dbg !21
  63. // CHECK:STDOUT:
  64. // CHECK:STDOUT: while.body: ; preds = %while.cond
  65. // CHECK:STDOUT: %.loc19_10 = load i32, ptr %n.var, align 4, !dbg !23
  66. // CHECK:STDOUT: %.loc19_11.array.index = getelementptr inbounds [65536 x i32], ptr %a, i32 0, i32 %.loc19_10, !dbg !24
  67. // CHECK:STDOUT: %Int.as.MulAssignWith.impl.Op.call = load i32, ptr %.loc19_11.array.index, align 4, !dbg !24
  68. // CHECK:STDOUT: %Int.as.MulAssignWith.impl.Op.call1 = mul i32 %Int.as.MulAssignWith.impl.Op.call, 2, !dbg !24
  69. // CHECK:STDOUT: store i32 %Int.as.MulAssignWith.impl.Op.call1, ptr %.loc19_11.array.index, align 4, !dbg !24
  70. // CHECK:STDOUT: call void @"_COp.Int.9452f4c51951679b.Core:Inc.Core.be1e879c1ad406d8"(ptr %n.var), !dbg !25
  71. // CHECK:STDOUT: br label %while.cond, !dbg !26
  72. // CHECK:STDOUT:
  73. // CHECK:STDOUT: while.done: ; preds = %while.cond
  74. // CHECK:STDOUT: ret void, !dbg !27
  75. // CHECK:STDOUT: }
  76. // CHECK:STDOUT:
  77. // CHECK:STDOUT: ; Function Attrs: nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
  78. // CHECK:STDOUT: declare void @llvm.lifetime.start.p0(ptr captures(none)) #1
  79. // CHECK:STDOUT:
  80. // CHECK:STDOUT: ; Function Attrs: minsize nounwind optsize
  81. // CHECK:STDOUT: define linkonce_odr void @"_COp.Int.9452f4c51951679b.Core:Inc.Core.be1e879c1ad406d8"(ptr %self) #0 !dbg !28 {
  82. // CHECK:STDOUT: call void @"_COp:thunk.Int.9452f4c51951679b.Core:AddAssignWith.5375cfcbca6d9e35.Core.75bec4d236c9daa5"(ptr %self, i32 1), !dbg !34
  83. // CHECK:STDOUT: ret void, !dbg !35
  84. // CHECK:STDOUT: }
  85. // CHECK:STDOUT:
  86. // CHECK:STDOUT: ; Function Attrs: alwaysinline minsize nounwind optsize
  87. // CHECK:STDOUT: define linkonce_odr void @"_COp:thunk.Int.9452f4c51951679b.Core:AddAssignWith.5375cfcbca6d9e35.Core.75bec4d236c9daa5"(ptr %self, i32 %other) #2 !dbg !36 {
  88. // CHECK:STDOUT: %1 = call i32 @"_CConvert.14b8745117b2bc54:ImplicitAs.a9271c1e04015f9c.Core.64ccbb8e5d9a0b8e"(i32 %other), !dbg !42
  89. // CHECK:STDOUT: %2 = load i32, ptr %self, align 4, !dbg !43
  90. // CHECK:STDOUT: %3 = add i32 %2, %1, !dbg !43
  91. // CHECK:STDOUT: store i32 %3, ptr %self, align 4, !dbg !43
  92. // CHECK:STDOUT: ret void, !dbg !43
  93. // CHECK:STDOUT: }
  94. // CHECK:STDOUT:
  95. // CHECK:STDOUT: ; Function Attrs: minsize nounwind optsize
  96. // CHECK:STDOUT: define linkonce_odr i32 @"_CConvert.14b8745117b2bc54:ImplicitAs.a9271c1e04015f9c.Core.64ccbb8e5d9a0b8e"(i32 %self) #0 !dbg !44 {
  97. // CHECK:STDOUT: ret i32 %self, !dbg !50
  98. // CHECK:STDOUT: }
  99. // CHECK:STDOUT:
  100. // CHECK:STDOUT: attributes #0 = { minsize nounwind optsize }
  101. // CHECK:STDOUT: attributes #1 = { nocallback nofree nosync nounwind willreturn memory(argmem: readwrite) }
  102. // CHECK:STDOUT: attributes #2 = { alwaysinline minsize nounwind optsize }
  103. // CHECK:STDOUT:
  104. // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
  105. // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
  106. // CHECK:STDOUT:
  107. // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
  108. // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
  109. // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
  110. // CHECK:STDOUT: !3 = !DIFile(filename: "foo.carbon", directory: "")
  111. // CHECK:STDOUT: !4 = distinct !DISubprogram(name: "NoInlineWithOz", linkageName: "_CNoInlineWithOz.Main", scope: null, file: !3, line: 6, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  112. // CHECK:STDOUT: !5 = !DISubroutineType(types: !6)
  113. // CHECK:STDOUT: !6 = !{!7}
  114. // CHECK:STDOUT: !7 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
  115. // CHECK:STDOUT: !8 = !DILocation(line: 7, column: 10, scope: !4)
  116. // CHECK:STDOUT: !9 = !DILocation(line: 7, column: 19, scope: !4)
  117. // CHECK:STDOUT: !10 = !DILocation(line: 7, column: 3, scope: !4)
  118. // CHECK:STDOUT: !11 = distinct !DISubprogram(name: "CallNoInlineWithOptSize", linkageName: "_CCallNoInlineWithOptSize.Main", scope: null, file: !3, line: 10, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  119. // CHECK:STDOUT: !12 = !DILocation(line: 12, column: 10, scope: !11)
  120. // CHECK:STDOUT: !13 = !DILocation(line: 12, column: 3, scope: !11)
  121. // CHECK:STDOUT: !14 = distinct !DISubprogram(name: "VectorizedWithOptSpeed", linkageName: "_CVectorizedWithOptSpeed.Main", scope: null, file: !3, line: 15, type: !15, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !18)
  122. // CHECK:STDOUT: !15 = !DISubroutineType(types: !16)
  123. // CHECK:STDOUT: !16 = !{null, !17}
  124. // CHECK:STDOUT: !17 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: null, size: 8)
  125. // CHECK:STDOUT: !18 = !{!19}
  126. // CHECK:STDOUT: !19 = !DILocalVariable(arg: 1, scope: !14, type: !17)
  127. // CHECK:STDOUT: !20 = !DILocation(line: 17, column: 3, scope: !14)
  128. // CHECK:STDOUT: !21 = !DILocation(line: 18, column: 9, scope: !14)
  129. // CHECK:STDOUT: !22 = !DILocation(line: 18, column: 10, scope: !14)
  130. // CHECK:STDOUT: !23 = !DILocation(line: 19, column: 10, scope: !14)
  131. // CHECK:STDOUT: !24 = !DILocation(line: 19, column: 5, scope: !14)
  132. // CHECK:STDOUT: !25 = !DILocation(line: 20, column: 5, scope: !14)
  133. // CHECK:STDOUT: !26 = !DILocation(line: 18, column: 3, scope: !14)
  134. // CHECK:STDOUT: !27 = !DILocation(line: 15, column: 1, scope: !14)
  135. // CHECK:STDOUT: !28 = distinct !DISubprogram(name: "Op", linkageName: "_COp.Int.9452f4c51951679b.Core:Inc.Core.be1e879c1ad406d8", scope: null, file: !29, line: 339, type: !30, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !32)
  136. // CHECK:STDOUT: !29 = !DIFile(filename: "{{.*}}/prelude/types/int.carbon", directory: "")
  137. // CHECK:STDOUT: !30 = !DISubroutineType(types: !31)
  138. // CHECK:STDOUT: !31 = !{null, !7}
  139. // CHECK:STDOUT: !32 = !{!33}
  140. // CHECK:STDOUT: !33 = !DILocalVariable(arg: 1, scope: !28, type: !7)
  141. // CHECK:STDOUT: !34 = !DILocation(line: 341, column: 5, scope: !28)
  142. // CHECK:STDOUT: !35 = !DILocation(line: 339, column: 3, scope: !28)
  143. // CHECK:STDOUT: !36 = distinct !DISubprogram(name: "Op", linkageName: "_COp:thunk.Int.9452f4c51951679b.Core:AddAssignWith.5375cfcbca6d9e35.Core.75bec4d236c9daa5", scope: null, file: !29, line: 275, type: !37, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !39)
  144. // CHECK:STDOUT: !37 = !DISubroutineType(types: !38)
  145. // CHECK:STDOUT: !38 = !{null, !7, !7}
  146. // CHECK:STDOUT: !39 = !{!40, !41}
  147. // CHECK:STDOUT: !40 = !DILocalVariable(arg: 1, scope: !36, type: !7)
  148. // CHECK:STDOUT: !41 = !DILocalVariable(arg: 2, scope: !36, type: !7)
  149. // CHECK:STDOUT: !42 = !DILocation(line: 4294967295, scope: !36)
  150. // CHECK:STDOUT: !43 = !DILocation(line: 275, column: 3, scope: !36)
  151. // CHECK:STDOUT: !44 = distinct !DISubprogram(name: "Convert", linkageName: "_CConvert.14b8745117b2bc54:ImplicitAs.a9271c1e04015f9c.Core.64ccbb8e5d9a0b8e", scope: null, file: !45, line: 24, type: !46, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !48)
  152. // CHECK:STDOUT: !45 = !DIFile(filename: "{{.*}}/prelude/operators/as.carbon", directory: "")
  153. // CHECK:STDOUT: !46 = !DISubroutineType(types: !47)
  154. // CHECK:STDOUT: !47 = !{!7, !7}
  155. // CHECK:STDOUT: !48 = !{!49}
  156. // CHECK:STDOUT: !49 = !DILocalVariable(arg: 1, scope: !44, type: !7)
  157. // CHECK:STDOUT: !50 = !DILocation(line: 24, column: 38, scope: !44)