call_different_specific.carbon 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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() {
  36. var ptr_i32 : i32*;
  37. var ptr_f64 : f64*;
  38. F(ptr_i32);
  39. F(ptr_f64);
  40. }
  41. // CHECK:STDOUT: ; ModuleID = 'call_different_specific.carbon'
  42. // CHECK:STDOUT: source_filename = "call_different_specific.carbon"
  43. // CHECK:STDOUT:
  44. // CHECK:STDOUT: %type = type {}
  45. // CHECK:STDOUT:
  46. // CHECK:STDOUT: ; Function Attrs: nounwind
  47. // CHECK:STDOUT: define void @_CM.Main() #0 !dbg !4 {
  48. // CHECK:STDOUT: entry:
  49. // CHECK:STDOUT: %ptr_i32.var = alloca ptr, align 8, !dbg !7
  50. // CHECK:STDOUT: %ptr_f64.var = alloca ptr, align 8, !dbg !8
  51. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %ptr_i32.var), !dbg !7
  52. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %ptr_f64.var), !dbg !8
  53. // CHECK:STDOUT: %.loc46_5 = load ptr, ptr %ptr_i32.var, align 8, !dbg !9
  54. // CHECK:STDOUT: call void @_CF.Main.d756e33fa3337243(ptr %.loc46_5), !dbg !10
  55. // CHECK:STDOUT: %.loc47_5 = load ptr, ptr %ptr_f64.var, align 8, !dbg !11
  56. // CHECK:STDOUT: call void @_CF.Main.6765264419ed942e(ptr %.loc47_5), !dbg !12
  57. // CHECK:STDOUT: ret void, !dbg !13
  58. // CHECK:STDOUT: }
  59. // CHECK:STDOUT:
  60. // CHECK:STDOUT: ; Function Attrs: nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
  61. // CHECK:STDOUT: declare void @llvm.lifetime.start.p0(ptr captures(none)) #1
  62. // CHECK:STDOUT:
  63. // CHECK:STDOUT: ; Function Attrs: nounwind
  64. // CHECK:STDOUT: define linkonce_odr void @_CF.Main.d756e33fa3337243(ptr %x) #0 !dbg !14 {
  65. // CHECK:STDOUT: entry:
  66. // CHECK:STDOUT: %A.call = call %type @_CA.Main.402deed6b8733082(%type zeroinitializer), !dbg !15
  67. // CHECK:STDOUT: call void @_CB.Main.d756e33fa3337243(ptr %x), !dbg !16
  68. // CHECK:STDOUT: ret void, !dbg !17
  69. // CHECK:STDOUT: }
  70. // CHECK:STDOUT:
  71. // CHECK:STDOUT: ; Function Attrs: nounwind
  72. // CHECK:STDOUT: define linkonce_odr void @_CF.Main.6765264419ed942e(ptr %x) #0 !dbg !18 {
  73. // CHECK:STDOUT: entry:
  74. // CHECK:STDOUT: %A.call = call %type @_CA.Main.402deed6b8733082(%type zeroinitializer), !dbg !19
  75. // CHECK:STDOUT: call void @_CB.Main.6765264419ed942e(ptr %x), !dbg !20
  76. // CHECK:STDOUT: ret void, !dbg !21
  77. // CHECK:STDOUT: }
  78. // CHECK:STDOUT:
  79. // CHECK:STDOUT: ; Function Attrs: nounwind
  80. // CHECK:STDOUT: define linkonce_odr %type @_CA.Main.402deed6b8733082(%type %x) #0 !dbg !22 {
  81. // CHECK:STDOUT: entry:
  82. // CHECK:STDOUT: ret %type %x, !dbg !23
  83. // CHECK:STDOUT: }
  84. // CHECK:STDOUT:
  85. // CHECK:STDOUT: ; Function Attrs: nounwind
  86. // CHECK:STDOUT: define linkonce_odr void @_CB.Main.d756e33fa3337243(ptr %x) #0 !dbg !24 {
  87. // CHECK:STDOUT: entry:
  88. // CHECK:STDOUT: %.loc34_7.3.temp = alloca i32, align 4, !dbg !25
  89. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %.loc34_7.3.temp), !dbg !25
  90. // CHECK:STDOUT: %.loc34_5.2 = load i32, ptr %x, align 4, !dbg !26
  91. // CHECK:STDOUT: %D.call = call i32 @_CD.Main.5450dc8e8b8e0899(i32 %.loc34_5.2), !dbg !25
  92. // CHECK:STDOUT: store i32 %D.call, ptr %.loc34_7.3.temp, align 4, !dbg !25
  93. // CHECK:STDOUT: ret void, !dbg !27
  94. // CHECK:STDOUT: }
  95. // CHECK:STDOUT:
  96. // CHECK:STDOUT: ; Function Attrs: nounwind
  97. // CHECK:STDOUT: define linkonce_odr void @_CB.Main.6765264419ed942e(ptr %x) #0 !dbg !28 {
  98. // CHECK:STDOUT: entry:
  99. // CHECK:STDOUT: %.loc34_7.3.temp = alloca double, align 8, !dbg !29
  100. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %.loc34_7.3.temp), !dbg !29
  101. // CHECK:STDOUT: %.loc34_5.2 = load double, ptr %x, align 8, !dbg !30
  102. // CHECK:STDOUT: %D.call = call double @_CD.Main.83aece103b0a8681(double %.loc34_5.2), !dbg !29
  103. // CHECK:STDOUT: store double %D.call, ptr %.loc34_7.3.temp, align 8, !dbg !29
  104. // CHECK:STDOUT: ret void, !dbg !31
  105. // CHECK:STDOUT: }
  106. // CHECK:STDOUT:
  107. // CHECK:STDOUT: ; Function Attrs: nounwind
  108. // CHECK:STDOUT: define linkonce_odr i32 @_CD.Main.5450dc8e8b8e0899(i32 %x) #0 !dbg !32 {
  109. // CHECK:STDOUT: entry:
  110. // CHECK:STDOUT: ret i32 %x, !dbg !33
  111. // CHECK:STDOUT: }
  112. // CHECK:STDOUT:
  113. // CHECK:STDOUT: ; Function Attrs: nounwind
  114. // CHECK:STDOUT: define linkonce_odr double @_CD.Main.83aece103b0a8681(double %x) #0 !dbg !34 {
  115. // CHECK:STDOUT: entry:
  116. // CHECK:STDOUT: ret double %x, !dbg !35
  117. // CHECK:STDOUT: }
  118. // CHECK:STDOUT:
  119. // CHECK:STDOUT: ; uselistorder directives
  120. // CHECK:STDOUT: uselistorder ptr @llvm.lifetime.start.p0, { 0, 1, 3, 2 }
  121. // CHECK:STDOUT: uselistorder ptr @_CA.Main.402deed6b8733082, { 1, 0 }
  122. // CHECK:STDOUT:
  123. // CHECK:STDOUT: attributes #0 = { nounwind }
  124. // CHECK:STDOUT: attributes #1 = { nocallback nofree nosync nounwind willreturn memory(argmem: readwrite) }
  125. // CHECK:STDOUT:
  126. // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
  127. // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
  128. // CHECK:STDOUT:
  129. // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
  130. // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
  131. // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
  132. // CHECK:STDOUT: !3 = !DIFile(filename: "call_different_specific.carbon", directory: "")
  133. // CHECK:STDOUT: !4 = distinct !DISubprogram(name: "M", linkageName: "_CM.Main", scope: null, file: !3, line: 42, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  134. // CHECK:STDOUT: !5 = !DISubroutineType(types: !6)
  135. // CHECK:STDOUT: !6 = !{}
  136. // CHECK:STDOUT: !7 = !DILocation(line: 43, column: 3, scope: !4)
  137. // CHECK:STDOUT: !8 = !DILocation(line: 44, column: 3, scope: !4)
  138. // CHECK:STDOUT: !9 = !DILocation(line: 46, column: 5, scope: !4)
  139. // CHECK:STDOUT: !10 = !DILocation(line: 46, column: 3, scope: !4)
  140. // CHECK:STDOUT: !11 = !DILocation(line: 47, column: 5, scope: !4)
  141. // CHECK:STDOUT: !12 = !DILocation(line: 47, column: 3, scope: !4)
  142. // CHECK:STDOUT: !13 = !DILocation(line: 42, column: 1, scope: !4)
  143. // CHECK:STDOUT: !14 = distinct !DISubprogram(name: "F", linkageName: "_CF.Main.d756e33fa3337243", scope: null, file: !3, line: 37, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  144. // CHECK:STDOUT: !15 = !DILocation(line: 38, column: 3, scope: !14)
  145. // CHECK:STDOUT: !16 = !DILocation(line: 39, column: 3, scope: !14)
  146. // CHECK:STDOUT: !17 = !DILocation(line: 37, column: 1, scope: !14)
  147. // CHECK:STDOUT: !18 = distinct !DISubprogram(name: "F", linkageName: "_CF.Main.6765264419ed942e", scope: null, file: !3, line: 37, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  148. // CHECK:STDOUT: !19 = !DILocation(line: 38, column: 3, scope: !18)
  149. // CHECK:STDOUT: !20 = !DILocation(line: 39, column: 3, scope: !18)
  150. // CHECK:STDOUT: !21 = !DILocation(line: 37, column: 1, scope: !18)
  151. // CHECK:STDOUT: !22 = distinct !DISubprogram(name: "A", linkageName: "_CA.Main.402deed6b8733082", scope: null, file: !3, line: 25, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  152. // CHECK:STDOUT: !23 = !DILocation(line: 26, column: 3, scope: !22)
  153. // CHECK:STDOUT: !24 = distinct !DISubprogram(name: "B", linkageName: "_CB.Main.d756e33fa3337243", scope: null, file: !3, line: 33, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  154. // CHECK:STDOUT: !25 = !DILocation(line: 34, column: 3, scope: !24)
  155. // CHECK:STDOUT: !26 = !DILocation(line: 34, column: 5, scope: !24)
  156. // CHECK:STDOUT: !27 = !DILocation(line: 33, column: 1, scope: !24)
  157. // CHECK:STDOUT: !28 = distinct !DISubprogram(name: "B", linkageName: "_CB.Main.6765264419ed942e", scope: null, file: !3, line: 33, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  158. // CHECK:STDOUT: !29 = !DILocation(line: 34, column: 3, scope: !28)
  159. // CHECK:STDOUT: !30 = !DILocation(line: 34, column: 5, scope: !28)
  160. // CHECK:STDOUT: !31 = !DILocation(line: 33, column: 1, scope: !28)
  161. // CHECK:STDOUT: !32 = distinct !DISubprogram(name: "D", linkageName: "_CD.Main.5450dc8e8b8e0899", scope: null, file: !3, line: 29, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  162. // CHECK:STDOUT: !33 = !DILocation(line: 30, column: 3, scope: !32)
  163. // CHECK:STDOUT: !34 = distinct !DISubprogram(name: "D", linkageName: "_CD.Main.83aece103b0a8681", scope: null, file: !3, line: 29, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  164. // CHECK:STDOUT: !35 = !DILocation(line: 30, column: 3, scope: !34)