call_different_specific.carbon 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  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/function/generic/call_different_specific.carbon
  10. // TIP: To dump output, run:
  11. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/function/generic/call_different_specific.carbon
  12. // Builds on call_basic.carbon and call_impl_function.carbon.
  13. // Test that when equivalence is found for the specific fingerprint, we don't
  14. // conclude "equivalent" for all the call graph.
  15. // The two calls to F have the same function type, but the corresponding
  16. // definitions should not be coalesced. The function bodies of the two
  17. // specifics of F look mostly identical: same type for the parameters,
  18. // calling the same A and different specifics of B, with the same function
  19. // type. The difference is discovered in the call graph inside the two B
  20. // specifics, where the pointer values are different, and the calls to the
  21. // two D specifics are to functions with different function types.
  22. fn A[U:! Core.Copy](x: U) -> U {
  23. return x;
  24. }
  25. fn D[U:! Core.Copy](x: U) -> U {
  26. return x;
  27. }
  28. fn B[U:! Core.Copy & Core.Destroy](x: U*) {
  29. D(*x);
  30. }
  31. fn F[T:! Core.Copy & Core.Destroy](x: T*) {
  32. A(i32);
  33. B(x);
  34. }
  35. fn M(ptr_i32: i32*, ptr_f64: f64*) {
  36. F(ptr_i32);
  37. F(ptr_f64);
  38. }
  39. // CHECK:STDOUT: ; ModuleID = 'call_different_specific.carbon'
  40. // CHECK:STDOUT: source_filename = "call_different_specific.carbon"
  41. // CHECK:STDOUT:
  42. // CHECK:STDOUT: %type = type {}
  43. // CHECK:STDOUT:
  44. // CHECK:STDOUT: ; Function Attrs: nounwind
  45. // CHECK:STDOUT: define void @_CM.Main(ptr %ptr_i32, ptr %ptr_f64) #0 !dbg !4 {
  46. // CHECK:STDOUT: entry:
  47. // CHECK:STDOUT: call void @_CF.Main.bfb441135f07cbe1(ptr %ptr_i32), !dbg !11
  48. // CHECK:STDOUT: call void @_CF.Main.29cf1dfeccef7249(ptr %ptr_f64), !dbg !12
  49. // CHECK:STDOUT: ret void, !dbg !13
  50. // CHECK:STDOUT: }
  51. // CHECK:STDOUT:
  52. // CHECK:STDOUT: ; Function Attrs: nounwind
  53. // CHECK:STDOUT: define weak_odr void @"_COp.7e389eab4a7e5487:core.Destroy.Core"(ptr %self) #0 !dbg !14 {
  54. // CHECK:STDOUT: entry:
  55. // CHECK:STDOUT: ret void, !dbg !20
  56. // CHECK:STDOUT: }
  57. // CHECK:STDOUT:
  58. // CHECK:STDOUT: ; Function Attrs: nounwind
  59. // CHECK:STDOUT: define weak_odr void @"_COp.98006a366c2ffd6c:core.Destroy.Core"(ptr %self) #0 !dbg !21 {
  60. // CHECK:STDOUT: entry:
  61. // CHECK:STDOUT: ret void, !dbg !26
  62. // CHECK:STDOUT: }
  63. // CHECK:STDOUT:
  64. // CHECK:STDOUT: ; Function Attrs: nounwind
  65. // CHECK:STDOUT: define linkonce_odr void @_CF.Main.bfb441135f07cbe1(ptr %x) #0 !dbg !27 {
  66. // CHECK:STDOUT: entry:
  67. // CHECK:STDOUT: %A.call = call %type @_CA.Main.582d60b54baf6b63(%type zeroinitializer), !dbg !30
  68. // CHECK:STDOUT: call void @_CB.Main.bfb441135f07cbe1(ptr %x), !dbg !31
  69. // CHECK:STDOUT: ret void, !dbg !32
  70. // CHECK:STDOUT: }
  71. // CHECK:STDOUT:
  72. // CHECK:STDOUT: ; Function Attrs: nounwind
  73. // CHECK:STDOUT: define linkonce_odr void @_CF.Main.29cf1dfeccef7249(ptr %x) #0 !dbg !33 {
  74. // CHECK:STDOUT: entry:
  75. // CHECK:STDOUT: %A.call = call %type @_CA.Main.582d60b54baf6b63(%type zeroinitializer), !dbg !36
  76. // CHECK:STDOUT: call void @_CB.Main.29cf1dfeccef7249(ptr %x), !dbg !37
  77. // CHECK:STDOUT: ret void, !dbg !38
  78. // CHECK:STDOUT: }
  79. // CHECK:STDOUT:
  80. // CHECK:STDOUT: ; Function Attrs: nounwind
  81. // CHECK:STDOUT: define linkonce_odr %type @_CA.Main.582d60b54baf6b63(%type %x) #0 !dbg !39 {
  82. // CHECK:STDOUT: entry:
  83. // CHECK:STDOUT: ret %type %x, !dbg !44
  84. // CHECK:STDOUT: }
  85. // CHECK:STDOUT:
  86. // CHECK:STDOUT: ; Function Attrs: nounwind
  87. // CHECK:STDOUT: define linkonce_odr void @_CB.Main.bfb441135f07cbe1(ptr %x) #0 !dbg !45 {
  88. // CHECK:STDOUT: entry:
  89. // CHECK:STDOUT: %.loc34_7.2.temp = alloca i32, align 4, !dbg !48
  90. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %.loc34_7.2.temp), !dbg !48
  91. // CHECK:STDOUT: %.loc34_5.2 = load i32, ptr %x, align 4, !dbg !49
  92. // CHECK:STDOUT: %D.call = call i32 @_CD.Main.64ccbb8e5d9a0b8e(i32 %.loc34_5.2), !dbg !48
  93. // CHECK:STDOUT: store i32 %D.call, ptr %.loc34_7.2.temp, align 4, !dbg !48
  94. // CHECK:STDOUT: call void @"_COp.7e389eab4a7e5487:core.Destroy.Core"(ptr %.loc34_7.2.temp), !dbg !48
  95. // CHECK:STDOUT: ret void, !dbg !50
  96. // CHECK:STDOUT: }
  97. // CHECK:STDOUT:
  98. // CHECK:STDOUT: ; Function Attrs: nounwind
  99. // CHECK:STDOUT: define linkonce_odr void @_CB.Main.29cf1dfeccef7249(ptr %x) #0 !dbg !51 {
  100. // CHECK:STDOUT: entry:
  101. // CHECK:STDOUT: %.loc34_7.2.temp = alloca double, align 8, !dbg !54
  102. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %.loc34_7.2.temp), !dbg !54
  103. // CHECK:STDOUT: %.loc34_5.2 = load double, ptr %x, align 8, !dbg !55
  104. // CHECK:STDOUT: %D.call = call double @_CD.Main.de5b400758c39a65(double %.loc34_5.2), !dbg !54
  105. // CHECK:STDOUT: store double %D.call, ptr %.loc34_7.2.temp, align 8, !dbg !54
  106. // CHECK:STDOUT: call void @"_COp.98006a366c2ffd6c:core.Destroy.Core"(ptr %.loc34_7.2.temp), !dbg !54
  107. // CHECK:STDOUT: ret void, !dbg !56
  108. // CHECK:STDOUT: }
  109. // CHECK:STDOUT:
  110. // CHECK:STDOUT: ; Function Attrs: nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
  111. // CHECK:STDOUT: declare void @llvm.lifetime.start.p0(ptr captures(none)) #1
  112. // CHECK:STDOUT:
  113. // CHECK:STDOUT: ; Function Attrs: nounwind
  114. // CHECK:STDOUT: define linkonce_odr i32 @_CD.Main.64ccbb8e5d9a0b8e(i32 %x) #0 !dbg !57 {
  115. // CHECK:STDOUT: entry:
  116. // CHECK:STDOUT: ret i32 %x, !dbg !62
  117. // CHECK:STDOUT: }
  118. // CHECK:STDOUT:
  119. // CHECK:STDOUT: ; Function Attrs: nounwind
  120. // CHECK:STDOUT: define linkonce_odr double @_CD.Main.de5b400758c39a65(double %x) #0 !dbg !63 {
  121. // CHECK:STDOUT: entry:
  122. // CHECK:STDOUT: ret double %x, !dbg !66
  123. // CHECK:STDOUT: }
  124. // CHECK:STDOUT:
  125. // CHECK:STDOUT: ; uselistorder directives
  126. // CHECK:STDOUT: uselistorder ptr @_CA.Main.582d60b54baf6b63, { 1, 0 }
  127. // CHECK:STDOUT: uselistorder ptr @llvm.lifetime.start.p0, { 1, 0 }
  128. // CHECK:STDOUT:
  129. // CHECK:STDOUT: attributes #0 = { nounwind }
  130. // CHECK:STDOUT: attributes #1 = { nocallback nofree nosync nounwind willreturn memory(argmem: readwrite) }
  131. // CHECK:STDOUT:
  132. // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
  133. // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
  134. // CHECK:STDOUT:
  135. // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
  136. // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
  137. // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
  138. // CHECK:STDOUT: !3 = !DIFile(filename: "call_different_specific.carbon", directory: "")
  139. // CHECK:STDOUT: !4 = distinct !DISubprogram(name: "M", linkageName: "_CM.Main", scope: null, file: !3, line: 42, type: !5, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !8)
  140. // CHECK:STDOUT: !5 = !DISubroutineType(types: !6)
  141. // CHECK:STDOUT: !6 = !{null, !7, !7}
  142. // CHECK:STDOUT: !7 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: null, size: 64)
  143. // CHECK:STDOUT: !8 = !{!9, !10}
  144. // CHECK:STDOUT: !9 = !DILocalVariable(arg: 1, scope: !4, type: !7)
  145. // CHECK:STDOUT: !10 = !DILocalVariable(arg: 2, scope: !4, type: !7)
  146. // CHECK:STDOUT: !11 = !DILocation(line: 43, column: 3, scope: !4)
  147. // CHECK:STDOUT: !12 = !DILocation(line: 44, column: 3, scope: !4)
  148. // CHECK:STDOUT: !13 = !DILocation(line: 42, column: 1, scope: !4)
  149. // CHECK:STDOUT: !14 = distinct !DISubprogram(name: "Op", linkageName: "_COp.7e389eab4a7e5487:core.Destroy.Core", scope: null, file: !3, line: 43, type: !15, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !18)
  150. // CHECK:STDOUT: !15 = !DISubroutineType(types: !16)
  151. // CHECK:STDOUT: !16 = !{null, !17}
  152. // CHECK:STDOUT: !17 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
  153. // CHECK:STDOUT: !18 = !{!19}
  154. // CHECK:STDOUT: !19 = !DILocalVariable(arg: 1, scope: !14, type: !17)
  155. // CHECK:STDOUT: !20 = !DILocation(line: 43, column: 3, scope: !14)
  156. // CHECK:STDOUT: !21 = distinct !DISubprogram(name: "Op", linkageName: "_COp.98006a366c2ffd6c:core.Destroy.Core", scope: null, file: !3, line: 44, type: !22, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !24)
  157. // CHECK:STDOUT: !22 = !DISubroutineType(types: !23)
  158. // CHECK:STDOUT: !23 = !{null, !7}
  159. // CHECK:STDOUT: !24 = !{!25}
  160. // CHECK:STDOUT: !25 = !DILocalVariable(arg: 1, scope: !21, type: !7)
  161. // CHECK:STDOUT: !26 = !DILocation(line: 44, column: 3, scope: !21)
  162. // CHECK:STDOUT: !27 = distinct !DISubprogram(name: "F", linkageName: "_CF.Main.bfb441135f07cbe1", scope: null, file: !3, line: 37, type: !22, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !28)
  163. // CHECK:STDOUT: !28 = !{!29}
  164. // CHECK:STDOUT: !29 = !DILocalVariable(arg: 1, scope: !27, type: !7)
  165. // CHECK:STDOUT: !30 = !DILocation(line: 38, column: 3, scope: !27)
  166. // CHECK:STDOUT: !31 = !DILocation(line: 39, column: 3, scope: !27)
  167. // CHECK:STDOUT: !32 = !DILocation(line: 37, column: 1, scope: !27)
  168. // CHECK:STDOUT: !33 = distinct !DISubprogram(name: "F", linkageName: "_CF.Main.29cf1dfeccef7249", scope: null, file: !3, line: 37, type: !22, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !34)
  169. // CHECK:STDOUT: !34 = !{!35}
  170. // CHECK:STDOUT: !35 = !DILocalVariable(arg: 1, scope: !33, type: !7)
  171. // CHECK:STDOUT: !36 = !DILocation(line: 38, column: 3, scope: !33)
  172. // CHECK:STDOUT: !37 = !DILocation(line: 39, column: 3, scope: !33)
  173. // CHECK:STDOUT: !38 = !DILocation(line: 37, column: 1, scope: !33)
  174. // CHECK:STDOUT: !39 = distinct !DISubprogram(name: "A", linkageName: "_CA.Main.582d60b54baf6b63", scope: null, file: !3, line: 25, type: !40, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !42)
  175. // CHECK:STDOUT: !40 = !DISubroutineType(types: !41)
  176. // CHECK:STDOUT: !41 = !{!7, !7}
  177. // CHECK:STDOUT: !42 = !{!43}
  178. // CHECK:STDOUT: !43 = !DILocalVariable(arg: 1, scope: !39, type: !7)
  179. // CHECK:STDOUT: !44 = !DILocation(line: 26, column: 3, scope: !39)
  180. // CHECK:STDOUT: !45 = distinct !DISubprogram(name: "B", linkageName: "_CB.Main.bfb441135f07cbe1", scope: null, file: !3, line: 33, type: !22, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !46)
  181. // CHECK:STDOUT: !46 = !{!47}
  182. // CHECK:STDOUT: !47 = !DILocalVariable(arg: 1, scope: !45, type: !7)
  183. // CHECK:STDOUT: !48 = !DILocation(line: 34, column: 3, scope: !45)
  184. // CHECK:STDOUT: !49 = !DILocation(line: 34, column: 5, scope: !45)
  185. // CHECK:STDOUT: !50 = !DILocation(line: 33, column: 1, scope: !45)
  186. // CHECK:STDOUT: !51 = distinct !DISubprogram(name: "B", linkageName: "_CB.Main.29cf1dfeccef7249", scope: null, file: !3, line: 33, type: !22, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !52)
  187. // CHECK:STDOUT: !52 = !{!53}
  188. // CHECK:STDOUT: !53 = !DILocalVariable(arg: 1, scope: !51, type: !7)
  189. // CHECK:STDOUT: !54 = !DILocation(line: 34, column: 3, scope: !51)
  190. // CHECK:STDOUT: !55 = !DILocation(line: 34, column: 5, scope: !51)
  191. // CHECK:STDOUT: !56 = !DILocation(line: 33, column: 1, scope: !51)
  192. // CHECK:STDOUT: !57 = distinct !DISubprogram(name: "D", linkageName: "_CD.Main.64ccbb8e5d9a0b8e", scope: null, file: !3, line: 29, type: !58, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !60)
  193. // CHECK:STDOUT: !58 = !DISubroutineType(types: !59)
  194. // CHECK:STDOUT: !59 = !{!17, !17}
  195. // CHECK:STDOUT: !60 = !{!61}
  196. // CHECK:STDOUT: !61 = !DILocalVariable(arg: 1, scope: !57, type: !17)
  197. // CHECK:STDOUT: !62 = !DILocation(line: 30, column: 3, scope: !57)
  198. // CHECK:STDOUT: !63 = distinct !DISubprogram(name: "D", linkageName: "_CD.Main.de5b400758c39a65", scope: null, file: !3, line: 29, type: !40, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !64)
  199. // CHECK:STDOUT: !64 = !{!65}
  200. // CHECK:STDOUT: !65 = !DILocalVariable(arg: 1, scope: !63, type: !7)
  201. // CHECK:STDOUT: !66 = !DILocation(line: 30, column: 3, scope: !63)