call_deref_ptr.carbon 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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/primitives.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_deref_ptr.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_deref_ptr.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. This is to account for
  15. // switching to a work-queue from recursion.
  16. fn A[U:! Core.Copy](x: U) -> U {
  17. return x;
  18. }
  19. fn D[U:! Core.Copy](x: U) -> U {
  20. return x;
  21. }
  22. fn B[U:! Core.Copy & Core.Destroy](x: U*) {
  23. D(*x);
  24. }
  25. fn F[T:! Core.Copy & Core.Destroy](x: T*) {
  26. A(i32);
  27. B(x);
  28. }
  29. fn M() {
  30. var ptr_i32 : i32*;
  31. var ptr_f64 : f64*;
  32. F(ptr_i32);
  33. F(ptr_f64);
  34. }
  35. // CHECK:STDOUT: ; ModuleID = 'call_deref_ptr.carbon'
  36. // CHECK:STDOUT: source_filename = "call_deref_ptr.carbon"
  37. // CHECK:STDOUT:
  38. // CHECK:STDOUT: %type = type {}
  39. // CHECK:STDOUT:
  40. // CHECK:STDOUT: ; Function Attrs: nounwind
  41. // CHECK:STDOUT: define void @_CM.Main() #0 !dbg !4 {
  42. // CHECK:STDOUT: entry:
  43. // CHECK:STDOUT: %ptr_i32.var = alloca ptr, align 8, !dbg !7
  44. // CHECK:STDOUT: %ptr_f64.var = alloca ptr, align 8, !dbg !8
  45. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %ptr_i32.var), !dbg !7
  46. // CHECK:STDOUT: store ptr poison, ptr %ptr_i32.var, align 8, !dbg !7
  47. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %ptr_f64.var), !dbg !8
  48. // CHECK:STDOUT: store ptr poison, ptr %ptr_f64.var, align 8, !dbg !8
  49. // CHECK:STDOUT: %.loc39_5 = load ptr, ptr %ptr_i32.var, align 8, !dbg !9
  50. // CHECK:STDOUT: call void @_CF.Main.bfb441135f07cbe1(ptr %.loc39_5), !dbg !10
  51. // CHECK:STDOUT: %.loc40_5 = load ptr, ptr %ptr_f64.var, align 8, !dbg !11
  52. // CHECK:STDOUT: call void @_CF.Main.29cf1dfeccef7249(ptr %.loc40_5), !dbg !12
  53. // CHECK:STDOUT: ret void, !dbg !13
  54. // CHECK:STDOUT: }
  55. // CHECK:STDOUT:
  56. // CHECK:STDOUT: ; Function Attrs: nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
  57. // CHECK:STDOUT: declare void @llvm.lifetime.start.p0(ptr captures(none)) #1
  58. // CHECK:STDOUT:
  59. // CHECK:STDOUT: ; Function Attrs: nounwind
  60. // CHECK:STDOUT: define linkonce_odr void @_CF.Main.bfb441135f07cbe1(ptr %x) #0 !dbg !14 {
  61. // CHECK:STDOUT: entry:
  62. // CHECK:STDOUT: %A.call = call %type @_CA.Main.582d60b54baf6b63(%type zeroinitializer), !dbg !20
  63. // CHECK:STDOUT: call void @_CB.Main.bfb441135f07cbe1(ptr %x), !dbg !21
  64. // CHECK:STDOUT: ret void, !dbg !22
  65. // CHECK:STDOUT: }
  66. // CHECK:STDOUT:
  67. // CHECK:STDOUT: ; Function Attrs: nounwind
  68. // CHECK:STDOUT: define linkonce_odr void @_CF.Main.29cf1dfeccef7249(ptr %x) #0 !dbg !23 {
  69. // CHECK:STDOUT: entry:
  70. // CHECK:STDOUT: %A.call = call %type @_CA.Main.582d60b54baf6b63(%type zeroinitializer), !dbg !26
  71. // CHECK:STDOUT: call void @_CB.Main.29cf1dfeccef7249(ptr %x), !dbg !27
  72. // CHECK:STDOUT: ret void, !dbg !28
  73. // CHECK:STDOUT: }
  74. // CHECK:STDOUT:
  75. // CHECK:STDOUT: ; Function Attrs: nounwind
  76. // CHECK:STDOUT: define linkonce_odr %type @_CA.Main.582d60b54baf6b63(%type %x) #0 !dbg !29 {
  77. // CHECK:STDOUT: entry:
  78. // CHECK:STDOUT: ret %type %x, !dbg !34
  79. // CHECK:STDOUT: }
  80. // CHECK:STDOUT:
  81. // CHECK:STDOUT: ; Function Attrs: nounwind
  82. // CHECK:STDOUT: define linkonce_odr void @_CB.Main.bfb441135f07cbe1(ptr %x) #0 !dbg !35 {
  83. // CHECK:STDOUT: entry:
  84. // CHECK:STDOUT: %.loc27_7.2.temp = alloca i32, align 4, !dbg !38
  85. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %.loc27_7.2.temp), !dbg !38
  86. // CHECK:STDOUT: %.loc27_5.2 = load i32, ptr %x, align 4, !dbg !39
  87. // CHECK:STDOUT: %D.call = call i32 @_CD.Main.64ccbb8e5d9a0b8e(i32 %.loc27_5.2), !dbg !38
  88. // CHECK:STDOUT: store i32 %D.call, ptr %.loc27_7.2.temp, align 4, !dbg !38
  89. // CHECK:STDOUT: ret void, !dbg !40
  90. // CHECK:STDOUT: }
  91. // CHECK:STDOUT:
  92. // CHECK:STDOUT: ; Function Attrs: nounwind
  93. // CHECK:STDOUT: define linkonce_odr void @_CB.Main.29cf1dfeccef7249(ptr %x) #0 !dbg !41 {
  94. // CHECK:STDOUT: entry:
  95. // CHECK:STDOUT: %.loc27_7.2.temp = alloca double, align 8, !dbg !44
  96. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %.loc27_7.2.temp), !dbg !44
  97. // CHECK:STDOUT: %.loc27_5.2 = load double, ptr %x, align 8, !dbg !45
  98. // CHECK:STDOUT: %D.call = call double @_CD.Main.de5b400758c39a65(double %.loc27_5.2), !dbg !44
  99. // CHECK:STDOUT: store double %D.call, ptr %.loc27_7.2.temp, align 8, !dbg !44
  100. // CHECK:STDOUT: ret void, !dbg !46
  101. // CHECK:STDOUT: }
  102. // CHECK:STDOUT:
  103. // CHECK:STDOUT: ; Function Attrs: nounwind
  104. // CHECK:STDOUT: define linkonce_odr i32 @_CD.Main.64ccbb8e5d9a0b8e(i32 %x) #0 !dbg !47 {
  105. // CHECK:STDOUT: entry:
  106. // CHECK:STDOUT: ret i32 %x, !dbg !53
  107. // CHECK:STDOUT: }
  108. // CHECK:STDOUT:
  109. // CHECK:STDOUT: ; Function Attrs: nounwind
  110. // CHECK:STDOUT: define linkonce_odr double @_CD.Main.de5b400758c39a65(double %x) #0 !dbg !54 {
  111. // CHECK:STDOUT: entry:
  112. // CHECK:STDOUT: ret double %x, !dbg !57
  113. // CHECK:STDOUT: }
  114. // CHECK:STDOUT:
  115. // CHECK:STDOUT: ; uselistorder directives
  116. // CHECK:STDOUT: uselistorder ptr @llvm.lifetime.start.p0, { 0, 1, 3, 2 }
  117. // CHECK:STDOUT: uselistorder ptr @_CA.Main.582d60b54baf6b63, { 1, 0 }
  118. // CHECK:STDOUT:
  119. // CHECK:STDOUT: attributes #0 = { nounwind }
  120. // CHECK:STDOUT: attributes #1 = { nocallback nofree nosync nounwind willreturn memory(argmem: readwrite) }
  121. // CHECK:STDOUT:
  122. // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
  123. // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
  124. // CHECK:STDOUT:
  125. // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
  126. // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
  127. // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
  128. // CHECK:STDOUT: !3 = !DIFile(filename: "call_deref_ptr.carbon", directory: "")
  129. // CHECK:STDOUT: !4 = distinct !DISubprogram(name: "M", linkageName: "_CM.Main", scope: null, file: !3, line: 35, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  130. // CHECK:STDOUT: !5 = !DISubroutineType(types: !6)
  131. // CHECK:STDOUT: !6 = !{null}
  132. // CHECK:STDOUT: !7 = !DILocation(line: 36, column: 3, scope: !4)
  133. // CHECK:STDOUT: !8 = !DILocation(line: 37, column: 3, scope: !4)
  134. // CHECK:STDOUT: !9 = !DILocation(line: 39, column: 5, scope: !4)
  135. // CHECK:STDOUT: !10 = !DILocation(line: 39, column: 3, scope: !4)
  136. // CHECK:STDOUT: !11 = !DILocation(line: 40, column: 5, scope: !4)
  137. // CHECK:STDOUT: !12 = !DILocation(line: 40, column: 3, scope: !4)
  138. // CHECK:STDOUT: !13 = !DILocation(line: 35, column: 1, scope: !4)
  139. // CHECK:STDOUT: !14 = distinct !DISubprogram(name: "F", linkageName: "_CF.Main.bfb441135f07cbe1", scope: null, file: !3, line: 30, type: !15, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !18)
  140. // CHECK:STDOUT: !15 = !DISubroutineType(types: !16)
  141. // CHECK:STDOUT: !16 = !{null, !17}
  142. // CHECK:STDOUT: !17 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: null, size: 8)
  143. // CHECK:STDOUT: !18 = !{!19}
  144. // CHECK:STDOUT: !19 = !DILocalVariable(arg: 1, scope: !14, type: !17)
  145. // CHECK:STDOUT: !20 = !DILocation(line: 31, column: 3, scope: !14)
  146. // CHECK:STDOUT: !21 = !DILocation(line: 32, column: 3, scope: !14)
  147. // CHECK:STDOUT: !22 = !DILocation(line: 30, column: 1, scope: !14)
  148. // CHECK:STDOUT: !23 = distinct !DISubprogram(name: "F", linkageName: "_CF.Main.29cf1dfeccef7249", scope: null, file: !3, line: 30, type: !15, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !24)
  149. // CHECK:STDOUT: !24 = !{!25}
  150. // CHECK:STDOUT: !25 = !DILocalVariable(arg: 1, scope: !23, type: !17)
  151. // CHECK:STDOUT: !26 = !DILocation(line: 31, column: 3, scope: !23)
  152. // CHECK:STDOUT: !27 = !DILocation(line: 32, column: 3, scope: !23)
  153. // CHECK:STDOUT: !28 = !DILocation(line: 30, column: 1, scope: !23)
  154. // CHECK:STDOUT: !29 = distinct !DISubprogram(name: "A", linkageName: "_CA.Main.582d60b54baf6b63", scope: null, file: !3, line: 18, type: !30, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !32)
  155. // CHECK:STDOUT: !30 = !DISubroutineType(types: !31)
  156. // CHECK:STDOUT: !31 = !{!17, !17}
  157. // CHECK:STDOUT: !32 = !{!33}
  158. // CHECK:STDOUT: !33 = !DILocalVariable(arg: 1, scope: !29, type: !17)
  159. // CHECK:STDOUT: !34 = !DILocation(line: 19, column: 3, scope: !29)
  160. // CHECK:STDOUT: !35 = distinct !DISubprogram(name: "B", linkageName: "_CB.Main.bfb441135f07cbe1", scope: null, file: !3, line: 26, type: !15, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !36)
  161. // CHECK:STDOUT: !36 = !{!37}
  162. // CHECK:STDOUT: !37 = !DILocalVariable(arg: 1, scope: !35, type: !17)
  163. // CHECK:STDOUT: !38 = !DILocation(line: 27, column: 3, scope: !35)
  164. // CHECK:STDOUT: !39 = !DILocation(line: 27, column: 5, scope: !35)
  165. // CHECK:STDOUT: !40 = !DILocation(line: 26, column: 1, scope: !35)
  166. // CHECK:STDOUT: !41 = distinct !DISubprogram(name: "B", linkageName: "_CB.Main.29cf1dfeccef7249", scope: null, file: !3, line: 26, type: !15, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !42)
  167. // CHECK:STDOUT: !42 = !{!43}
  168. // CHECK:STDOUT: !43 = !DILocalVariable(arg: 1, scope: !41, type: !17)
  169. // CHECK:STDOUT: !44 = !DILocation(line: 27, column: 3, scope: !41)
  170. // CHECK:STDOUT: !45 = !DILocation(line: 27, column: 5, scope: !41)
  171. // CHECK:STDOUT: !46 = !DILocation(line: 26, column: 1, scope: !41)
  172. // CHECK:STDOUT: !47 = distinct !DISubprogram(name: "D", linkageName: "_CD.Main.64ccbb8e5d9a0b8e", scope: null, file: !3, line: 22, type: !48, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !51)
  173. // CHECK:STDOUT: !48 = !DISubroutineType(types: !49)
  174. // CHECK:STDOUT: !49 = !{!50, !50}
  175. // CHECK:STDOUT: !50 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
  176. // CHECK:STDOUT: !51 = !{!52}
  177. // CHECK:STDOUT: !52 = !DILocalVariable(arg: 1, scope: !47, type: !50)
  178. // CHECK:STDOUT: !53 = !DILocation(line: 23, column: 3, scope: !47)
  179. // CHECK:STDOUT: !54 = distinct !DISubprogram(name: "D", linkageName: "_CD.Main.de5b400758c39a65", scope: null, file: !3, line: 22, type: !30, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !55)
  180. // CHECK:STDOUT: !55 = !{!56}
  181. // CHECK:STDOUT: !56 = !DILocalVariable(arg: 1, scope: !54, type: !17)
  182. // CHECK:STDOUT: !57 = !DILocation(line: 23, column: 3, scope: !54)