self_canonical.carbon 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  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/convert.carbon
  6. // AUTOUPDATE
  7. // TIP: To test this file alone, run:
  8. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/lower/testdata/function/generic/self_canonical.carbon
  9. // TIP: To dump output, run:
  10. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/function/generic/self_canonical.carbon
  11. // In this test, specific46 becomes canonical for others. Then, specific42 is
  12. // found to be equivalent to specific46 and it becomes its canonical.
  13. // Then through another equivalence from other specifics that point to
  14. // specific46, specific46 is picked as the canonical. This is fine, we keep the
  15. // chain of equivalences and eventually this is walked to get to specific42.
  16. // The canonical for specific46, should not be updated to self in this case.
  17. // Test that chains of equivalances are properly maintained and walked.
  18. class class_name1 {}
  19. class class_name2 {}
  20. class class_name3 {}
  21. class class_name4 {}
  22. class class_name5 {}
  23. class class_name6 {}
  24. fn third_function[T:! type, U:! type, V:! type](arg1: T, arg2: U, arg3: V);
  25. fn fourth_function[T:! type](arg: T);
  26. fn first_function[T:! type](arg: T);
  27. fn second_function[T:! type, U:! type, V:! type](arg1: T, arg2: U, arg3: V);
  28. fn third_function[T:! type, U:! type, V:! type](arg1: T, arg2: U, unused arg3: V) {
  29. var local1: class_name2*;
  30. var local2: class_name2*;
  31. third_function(arg1, arg2, local2);
  32. fourth_function(local1);
  33. }
  34. fn unused_1[T:! type, U:! type, V:! type](arg1: T, unused arg2: U, arg3: V) {
  35. var local1: class_name6*;
  36. third_function(arg1, arg3, local1);
  37. }
  38. fn fourth_function[T:! type](unused arg: T) {
  39. var local1: class_name5**;
  40. var local2: class_name6*;
  41. first_function(local1);
  42. first_function(local2);
  43. }
  44. fn first_function[T:! type](arg: T) {
  45. var local1: class_name4*;
  46. var local2: class_name3*;
  47. second_function(local2, local1, arg);
  48. }
  49. fn unused_2[T:! type, U:! type](arg1: T, arg2: U) {
  50. var local1: class_name6*;
  51. second_function(arg1, arg2, local1);
  52. }
  53. fn second_function[T:! type, U:! type, V:! type](arg1: T, unused arg2: U, arg3: V) {
  54. var local1: class_name3*;
  55. var local2: class_name4*;
  56. var local3: class_name2*;
  57. second_function(arg3, local3, local2);
  58. third_function(local1, arg3, arg1);
  59. }
  60. fn Main_method_no_template () {
  61. var local1: class_name1*;
  62. first_function(local1);
  63. }
  64. // CHECK:STDOUT: ; ModuleID = 'self_canonical.carbon'
  65. // CHECK:STDOUT: source_filename = "self_canonical.carbon"
  66. // CHECK:STDOUT:
  67. // CHECK:STDOUT: ; Function Attrs: nounwind
  68. // CHECK:STDOUT: define void @_CMain_method_no_template.Main() #0 !dbg !4 {
  69. // CHECK:STDOUT: entry:
  70. // CHECK:STDOUT: %local1.var = alloca ptr, align 8, !dbg !7
  71. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local1.var), !dbg !7
  72. // CHECK:STDOUT: store ptr poison, ptr %local1.var, align 8, !dbg !7
  73. // CHECK:STDOUT: %.loc82 = load ptr, ptr %local1.var, align 8, !dbg !8
  74. // CHECK:STDOUT: call void @_Cfirst_function.Main.cf543a2f19840c22(ptr %.loc82), !dbg !9
  75. // CHECK:STDOUT: ret void, !dbg !10
  76. // CHECK:STDOUT: }
  77. // CHECK:STDOUT:
  78. // CHECK:STDOUT: ; Function Attrs: nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
  79. // CHECK:STDOUT: declare void @llvm.lifetime.start.p0(ptr captures(none)) #1
  80. // CHECK:STDOUT:
  81. // CHECK:STDOUT: ; Function Attrs: nounwind
  82. // CHECK:STDOUT: define linkonce_odr void @_Cfourth_function.Main.1ef1de437a217ee4(ptr %arg) #0 !dbg !11 {
  83. // CHECK:STDOUT: entry:
  84. // CHECK:STDOUT: %local1.var = alloca ptr, align 8, !dbg !17
  85. // CHECK:STDOUT: %local2.var = alloca ptr, align 8, !dbg !18
  86. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local1.var), !dbg !17
  87. // CHECK:STDOUT: store ptr poison, ptr %local1.var, align 8, !dbg !17
  88. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local2.var), !dbg !18
  89. // CHECK:STDOUT: store ptr poison, ptr %local2.var, align 8, !dbg !18
  90. // CHECK:STDOUT: %.loc53 = load ptr, ptr %local1.var, align 8, !dbg !19
  91. // CHECK:STDOUT: call void @_Cfirst_function.Main.cf543a2f19840c22(ptr %.loc53), !dbg !20
  92. // CHECK:STDOUT: %.loc54 = load ptr, ptr %local2.var, align 8, !dbg !21
  93. // CHECK:STDOUT: call void @_Cfirst_function.Main.cf543a2f19840c22(ptr %.loc54), !dbg !22
  94. // CHECK:STDOUT: ret void, !dbg !23
  95. // CHECK:STDOUT: }
  96. // CHECK:STDOUT:
  97. // CHECK:STDOUT: ; Function Attrs: nounwind
  98. // CHECK:STDOUT: define linkonce_odr void @_Cfirst_function.Main.cf543a2f19840c22(ptr %arg) #0 !dbg !24 {
  99. // CHECK:STDOUT: entry:
  100. // CHECK:STDOUT: %local1.var = alloca ptr, align 8, !dbg !27
  101. // CHECK:STDOUT: %local2.var = alloca ptr, align 8, !dbg !28
  102. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local1.var), !dbg !27
  103. // CHECK:STDOUT: store ptr poison, ptr %local1.var, align 8, !dbg !27
  104. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local2.var), !dbg !28
  105. // CHECK:STDOUT: store ptr poison, ptr %local2.var, align 8, !dbg !28
  106. // CHECK:STDOUT: %.loc61_19 = load ptr, ptr %local2.var, align 8, !dbg !29
  107. // CHECK:STDOUT: %.loc61_27 = load ptr, ptr %local1.var, align 8, !dbg !30
  108. // CHECK:STDOUT: call void @_Csecond_function.Main.fa07ebc2c86fcc7a(ptr %.loc61_19, ptr %.loc61_27, ptr %arg), !dbg !31
  109. // CHECK:STDOUT: ret void, !dbg !32
  110. // CHECK:STDOUT: }
  111. // CHECK:STDOUT:
  112. // CHECK:STDOUT: ; Function Attrs: nounwind
  113. // CHECK:STDOUT: define linkonce_odr void @_Csecond_function.Main.fa07ebc2c86fcc7a(ptr %arg1, ptr %arg2, ptr %arg3) #0 !dbg !33 {
  114. // CHECK:STDOUT: entry:
  115. // CHECK:STDOUT: %local1.var = alloca ptr, align 8, !dbg !40
  116. // CHECK:STDOUT: %local2.var = alloca ptr, align 8, !dbg !41
  117. // CHECK:STDOUT: %local3.var = alloca ptr, align 8, !dbg !42
  118. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local1.var), !dbg !40
  119. // CHECK:STDOUT: store ptr poison, ptr %local1.var, align 8, !dbg !40
  120. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local2.var), !dbg !41
  121. // CHECK:STDOUT: store ptr poison, ptr %local2.var, align 8, !dbg !41
  122. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local3.var), !dbg !42
  123. // CHECK:STDOUT: store ptr poison, ptr %local3.var, align 8, !dbg !42
  124. // CHECK:STDOUT: %.loc75_25 = load ptr, ptr %local3.var, align 8, !dbg !43
  125. // CHECK:STDOUT: %.loc75_33 = load ptr, ptr %local2.var, align 8, !dbg !44
  126. // CHECK:STDOUT: call void @_Csecond_function.Main.fa07ebc2c86fcc7a(ptr %arg3, ptr %.loc75_25, ptr %.loc75_33), !dbg !45
  127. // CHECK:STDOUT: %.loc76 = load ptr, ptr %local1.var, align 8, !dbg !46
  128. // CHECK:STDOUT: call void @_Cthird_function.Main.4704114ae40540d8(ptr %.loc76, ptr %arg3, ptr %arg1), !dbg !47
  129. // CHECK:STDOUT: ret void, !dbg !48
  130. // CHECK:STDOUT: }
  131. // CHECK:STDOUT:
  132. // CHECK:STDOUT: ; Function Attrs: nounwind
  133. // CHECK:STDOUT: define linkonce_odr void @_Cthird_function.Main.4704114ae40540d8(ptr %arg1, ptr %arg2, ptr %arg3) #0 !dbg !49 {
  134. // CHECK:STDOUT: entry:
  135. // CHECK:STDOUT: %local1.var = alloca ptr, align 8, !dbg !54
  136. // CHECK:STDOUT: %local2.var = alloca ptr, align 8, !dbg !55
  137. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local1.var), !dbg !54
  138. // CHECK:STDOUT: store ptr poison, ptr %local1.var, align 8, !dbg !54
  139. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local2.var), !dbg !55
  140. // CHECK:STDOUT: store ptr poison, ptr %local2.var, align 8, !dbg !55
  141. // CHECK:STDOUT: %.loc39 = load ptr, ptr %local2.var, align 8, !dbg !56
  142. // CHECK:STDOUT: call void @_Cthird_function.Main.4704114ae40540d8(ptr %arg1, ptr %arg2, ptr %.loc39), !dbg !57
  143. // CHECK:STDOUT: %.loc40 = load ptr, ptr %local1.var, align 8, !dbg !58
  144. // CHECK:STDOUT: call void @_Cfourth_function.Main.1ef1de437a217ee4(ptr %.loc40), !dbg !59
  145. // CHECK:STDOUT: ret void, !dbg !60
  146. // CHECK:STDOUT: }
  147. // CHECK:STDOUT:
  148. // CHECK:STDOUT: ; uselistorder directives
  149. // CHECK:STDOUT: uselistorder ptr @_Cfirst_function.Main.cf543a2f19840c22, { 1, 2, 0 }
  150. // CHECK:STDOUT:
  151. // CHECK:STDOUT: attributes #0 = { nounwind }
  152. // CHECK:STDOUT: attributes #1 = { nocallback nofree nosync nounwind willreturn memory(argmem: readwrite) }
  153. // CHECK:STDOUT:
  154. // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
  155. // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
  156. // CHECK:STDOUT:
  157. // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
  158. // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
  159. // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
  160. // CHECK:STDOUT: !3 = !DIFile(filename: "self_canonical.carbon", directory: "")
  161. // CHECK:STDOUT: !4 = distinct !DISubprogram(name: "Main_method_no_template", linkageName: "_CMain_method_no_template.Main", scope: null, file: !3, line: 79, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  162. // CHECK:STDOUT: !5 = !DISubroutineType(types: !6)
  163. // CHECK:STDOUT: !6 = !{null}
  164. // CHECK:STDOUT: !7 = !DILocation(line: 80, column: 3, scope: !4)
  165. // CHECK:STDOUT: !8 = !DILocation(line: 82, column: 18, scope: !4)
  166. // CHECK:STDOUT: !9 = !DILocation(line: 82, column: 3, scope: !4)
  167. // CHECK:STDOUT: !10 = !DILocation(line: 79, column: 1, scope: !4)
  168. // CHECK:STDOUT: !11 = distinct !DISubprogram(name: "fourth_function", linkageName: "_Cfourth_function.Main.1ef1de437a217ee4", scope: null, file: !3, line: 49, type: !12, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !15)
  169. // CHECK:STDOUT: !12 = !DISubroutineType(types: !13)
  170. // CHECK:STDOUT: !13 = !{null, !14}
  171. // CHECK:STDOUT: !14 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: null, size: 8)
  172. // CHECK:STDOUT: !15 = !{!16}
  173. // CHECK:STDOUT: !16 = !DILocalVariable(arg: 1, scope: !11, type: !14)
  174. // CHECK:STDOUT: !17 = !DILocation(line: 50, column: 3, scope: !11)
  175. // CHECK:STDOUT: !18 = !DILocation(line: 51, column: 3, scope: !11)
  176. // CHECK:STDOUT: !19 = !DILocation(line: 53, column: 18, scope: !11)
  177. // CHECK:STDOUT: !20 = !DILocation(line: 53, column: 3, scope: !11)
  178. // CHECK:STDOUT: !21 = !DILocation(line: 54, column: 18, scope: !11)
  179. // CHECK:STDOUT: !22 = !DILocation(line: 54, column: 3, scope: !11)
  180. // CHECK:STDOUT: !23 = !DILocation(line: 49, column: 1, scope: !11)
  181. // CHECK:STDOUT: !24 = distinct !DISubprogram(name: "first_function", linkageName: "_Cfirst_function.Main.cf543a2f19840c22", scope: null, file: !3, line: 57, type: !12, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !25)
  182. // CHECK:STDOUT: !25 = !{!26}
  183. // CHECK:STDOUT: !26 = !DILocalVariable(arg: 1, scope: !24, type: !14)
  184. // CHECK:STDOUT: !27 = !DILocation(line: 58, column: 3, scope: !24)
  185. // CHECK:STDOUT: !28 = !DILocation(line: 59, column: 3, scope: !24)
  186. // CHECK:STDOUT: !29 = !DILocation(line: 61, column: 19, scope: !24)
  187. // CHECK:STDOUT: !30 = !DILocation(line: 61, column: 27, scope: !24)
  188. // CHECK:STDOUT: !31 = !DILocation(line: 61, column: 3, scope: !24)
  189. // CHECK:STDOUT: !32 = !DILocation(line: 57, column: 1, scope: !24)
  190. // CHECK:STDOUT: !33 = distinct !DISubprogram(name: "second_function", linkageName: "_Csecond_function.Main.fa07ebc2c86fcc7a", scope: null, file: !3, line: 70, type: !34, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !36)
  191. // CHECK:STDOUT: !34 = !DISubroutineType(types: !35)
  192. // CHECK:STDOUT: !35 = !{null, !14, !14, !14}
  193. // CHECK:STDOUT: !36 = !{!37, !38, !39}
  194. // CHECK:STDOUT: !37 = !DILocalVariable(arg: 1, scope: !33, type: !14)
  195. // CHECK:STDOUT: !38 = !DILocalVariable(arg: 2, scope: !33, type: !14)
  196. // CHECK:STDOUT: !39 = !DILocalVariable(arg: 3, scope: !33, type: !14)
  197. // CHECK:STDOUT: !40 = !DILocation(line: 71, column: 3, scope: !33)
  198. // CHECK:STDOUT: !41 = !DILocation(line: 72, column: 3, scope: !33)
  199. // CHECK:STDOUT: !42 = !DILocation(line: 73, column: 3, scope: !33)
  200. // CHECK:STDOUT: !43 = !DILocation(line: 75, column: 25, scope: !33)
  201. // CHECK:STDOUT: !44 = !DILocation(line: 75, column: 33, scope: !33)
  202. // CHECK:STDOUT: !45 = !DILocation(line: 75, column: 3, scope: !33)
  203. // CHECK:STDOUT: !46 = !DILocation(line: 76, column: 18, scope: !33)
  204. // CHECK:STDOUT: !47 = !DILocation(line: 76, column: 3, scope: !33)
  205. // CHECK:STDOUT: !48 = !DILocation(line: 70, column: 1, scope: !33)
  206. // CHECK:STDOUT: !49 = distinct !DISubprogram(name: "third_function", linkageName: "_Cthird_function.Main.4704114ae40540d8", scope: null, file: !3, line: 35, type: !34, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !50)
  207. // CHECK:STDOUT: !50 = !{!51, !52, !53}
  208. // CHECK:STDOUT: !51 = !DILocalVariable(arg: 1, scope: !49, type: !14)
  209. // CHECK:STDOUT: !52 = !DILocalVariable(arg: 2, scope: !49, type: !14)
  210. // CHECK:STDOUT: !53 = !DILocalVariable(arg: 3, scope: !49, type: !14)
  211. // CHECK:STDOUT: !54 = !DILocation(line: 36, column: 3, scope: !49)
  212. // CHECK:STDOUT: !55 = !DILocation(line: 37, column: 3, scope: !49)
  213. // CHECK:STDOUT: !56 = !DILocation(line: 39, column: 30, scope: !49)
  214. // CHECK:STDOUT: !57 = !DILocation(line: 39, column: 3, scope: !49)
  215. // CHECK:STDOUT: !58 = !DILocation(line: 40, column: 19, scope: !49)
  216. // CHECK:STDOUT: !59 = !DILocation(line: 40, column: 3, scope: !49)
  217. // CHECK:STDOUT: !60 = !DILocation(line: 35, column: 1, scope: !49)