self_canonical.carbon 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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/destroy.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, 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, arg2: U, arg3: V) {
  35. var local1: class_name6*;
  36. third_function(arg1, arg3, local1);
  37. }
  38. fn fourth_function[T:! type](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, 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: %.loc82 = load ptr, ptr %local1.var, align 8, !dbg !8
  73. // CHECK:STDOUT: call void @_Cfirst_function.Main.308f7be7cd8574f7(ptr %.loc82), !dbg !9
  74. // CHECK:STDOUT: ret void, !dbg !10
  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: nounwind
  81. // CHECK:STDOUT: define linkonce_odr void @_Cfourth_function.Main.a95d5636f2d020e8(ptr %arg) #0 !dbg !11 {
  82. // CHECK:STDOUT: entry:
  83. // CHECK:STDOUT: %local1.var = alloca ptr, align 8, !dbg !12
  84. // CHECK:STDOUT: %local2.var = alloca ptr, align 8, !dbg !13
  85. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local1.var), !dbg !12
  86. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local2.var), !dbg !13
  87. // CHECK:STDOUT: %.loc53 = load ptr, ptr %local1.var, align 8, !dbg !14
  88. // CHECK:STDOUT: call void @_Cfirst_function.Main.308f7be7cd8574f7(ptr %.loc53), !dbg !15
  89. // CHECK:STDOUT: %.loc54 = load ptr, ptr %local2.var, align 8, !dbg !16
  90. // CHECK:STDOUT: call void @_Cfirst_function.Main.308f7be7cd8574f7(ptr %.loc54), !dbg !17
  91. // CHECK:STDOUT: ret void, !dbg !18
  92. // CHECK:STDOUT: }
  93. // CHECK:STDOUT:
  94. // CHECK:STDOUT: ; Function Attrs: nounwind
  95. // CHECK:STDOUT: define linkonce_odr void @_Cfirst_function.Main.308f7be7cd8574f7(ptr %arg) #0 !dbg !19 {
  96. // CHECK:STDOUT: entry:
  97. // CHECK:STDOUT: %local1.var = alloca ptr, align 8, !dbg !20
  98. // CHECK:STDOUT: %local2.var = alloca ptr, align 8, !dbg !21
  99. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local1.var), !dbg !20
  100. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local2.var), !dbg !21
  101. // CHECK:STDOUT: %.loc61_19 = load ptr, ptr %local2.var, align 8, !dbg !22
  102. // CHECK:STDOUT: %.loc61_27 = load ptr, ptr %local1.var, align 8, !dbg !23
  103. // CHECK:STDOUT: call void @_Csecond_function.Main.6e67709fb5f3d893(ptr %.loc61_19, ptr %.loc61_27, ptr %arg), !dbg !24
  104. // CHECK:STDOUT: ret void, !dbg !25
  105. // CHECK:STDOUT: }
  106. // CHECK:STDOUT:
  107. // CHECK:STDOUT: ; Function Attrs: nounwind
  108. // CHECK:STDOUT: define linkonce_odr void @_Csecond_function.Main.6e67709fb5f3d893(ptr %arg1, ptr %arg2, ptr %arg3) #0 !dbg !26 {
  109. // CHECK:STDOUT: entry:
  110. // CHECK:STDOUT: %local1.var = alloca ptr, align 8, !dbg !27
  111. // CHECK:STDOUT: %local2.var = alloca ptr, align 8, !dbg !28
  112. // CHECK:STDOUT: %local3.var = alloca ptr, align 8, !dbg !29
  113. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local1.var), !dbg !27
  114. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local2.var), !dbg !28
  115. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local3.var), !dbg !29
  116. // CHECK:STDOUT: %.loc75_25 = load ptr, ptr %local3.var, align 8, !dbg !30
  117. // CHECK:STDOUT: %.loc75_33 = load ptr, ptr %local2.var, align 8, !dbg !31
  118. // CHECK:STDOUT: call void @_Csecond_function.Main.6e67709fb5f3d893(ptr %arg3, ptr %.loc75_25, ptr %.loc75_33), !dbg !32
  119. // CHECK:STDOUT: %.loc76 = load ptr, ptr %local1.var, align 8, !dbg !33
  120. // CHECK:STDOUT: call void @_Cthird_function.Main.bd8cd068af0bdf76(ptr %.loc76, ptr %arg3, ptr %arg1), !dbg !34
  121. // CHECK:STDOUT: ret void, !dbg !35
  122. // CHECK:STDOUT: }
  123. // CHECK:STDOUT:
  124. // CHECK:STDOUT: ; Function Attrs: nounwind
  125. // CHECK:STDOUT: define linkonce_odr void @_Cthird_function.Main.bd8cd068af0bdf76(ptr %arg1, ptr %arg2, ptr %arg3) #0 !dbg !36 {
  126. // CHECK:STDOUT: entry:
  127. // CHECK:STDOUT: %local1.var = alloca ptr, align 8, !dbg !37
  128. // CHECK:STDOUT: %local2.var = alloca ptr, align 8, !dbg !38
  129. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local1.var), !dbg !37
  130. // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %local2.var), !dbg !38
  131. // CHECK:STDOUT: %.loc39 = load ptr, ptr %local2.var, align 8, !dbg !39
  132. // CHECK:STDOUT: call void @_Cthird_function.Main.bd8cd068af0bdf76(ptr %arg1, ptr %arg2, ptr %.loc39), !dbg !40
  133. // CHECK:STDOUT: %.loc40 = load ptr, ptr %local1.var, align 8, !dbg !41
  134. // CHECK:STDOUT: call void @_Cfourth_function.Main.a95d5636f2d020e8(ptr %.loc40), !dbg !42
  135. // CHECK:STDOUT: ret void, !dbg !43
  136. // CHECK:STDOUT: }
  137. // CHECK:STDOUT:
  138. // CHECK:STDOUT: ; uselistorder directives
  139. // CHECK:STDOUT: uselistorder ptr @_Cfirst_function.Main.308f7be7cd8574f7, { 1, 2, 0 }
  140. // CHECK:STDOUT:
  141. // CHECK:STDOUT: attributes #0 = { nounwind }
  142. // CHECK:STDOUT: attributes #1 = { nocallback nofree nosync nounwind willreturn memory(argmem: readwrite) }
  143. // CHECK:STDOUT:
  144. // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
  145. // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
  146. // CHECK:STDOUT:
  147. // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
  148. // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
  149. // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
  150. // CHECK:STDOUT: !3 = !DIFile(filename: "self_canonical.carbon", directory: "")
  151. // 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)
  152. // CHECK:STDOUT: !5 = !DISubroutineType(types: !6)
  153. // CHECK:STDOUT: !6 = !{}
  154. // CHECK:STDOUT: !7 = !DILocation(line: 80, column: 3, scope: !4)
  155. // CHECK:STDOUT: !8 = !DILocation(line: 82, column: 18, scope: !4)
  156. // CHECK:STDOUT: !9 = !DILocation(line: 82, column: 3, scope: !4)
  157. // CHECK:STDOUT: !10 = !DILocation(line: 79, column: 1, scope: !4)
  158. // CHECK:STDOUT: !11 = distinct !DISubprogram(name: "fourth_function", linkageName: "_Cfourth_function.Main.a95d5636f2d020e8", scope: null, file: !3, line: 49, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  159. // CHECK:STDOUT: !12 = !DILocation(line: 50, column: 3, scope: !11)
  160. // CHECK:STDOUT: !13 = !DILocation(line: 51, column: 3, scope: !11)
  161. // CHECK:STDOUT: !14 = !DILocation(line: 53, column: 18, scope: !11)
  162. // CHECK:STDOUT: !15 = !DILocation(line: 53, column: 3, scope: !11)
  163. // CHECK:STDOUT: !16 = !DILocation(line: 54, column: 18, scope: !11)
  164. // CHECK:STDOUT: !17 = !DILocation(line: 54, column: 3, scope: !11)
  165. // CHECK:STDOUT: !18 = !DILocation(line: 49, column: 1, scope: !11)
  166. // CHECK:STDOUT: !19 = distinct !DISubprogram(name: "first_function", linkageName: "_Cfirst_function.Main.308f7be7cd8574f7", scope: null, file: !3, line: 57, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  167. // CHECK:STDOUT: !20 = !DILocation(line: 58, column: 3, scope: !19)
  168. // CHECK:STDOUT: !21 = !DILocation(line: 59, column: 3, scope: !19)
  169. // CHECK:STDOUT: !22 = !DILocation(line: 61, column: 19, scope: !19)
  170. // CHECK:STDOUT: !23 = !DILocation(line: 61, column: 27, scope: !19)
  171. // CHECK:STDOUT: !24 = !DILocation(line: 61, column: 3, scope: !19)
  172. // CHECK:STDOUT: !25 = !DILocation(line: 57, column: 1, scope: !19)
  173. // CHECK:STDOUT: !26 = distinct !DISubprogram(name: "second_function", linkageName: "_Csecond_function.Main.6e67709fb5f3d893", scope: null, file: !3, line: 70, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  174. // CHECK:STDOUT: !27 = !DILocation(line: 71, column: 3, scope: !26)
  175. // CHECK:STDOUT: !28 = !DILocation(line: 72, column: 3, scope: !26)
  176. // CHECK:STDOUT: !29 = !DILocation(line: 73, column: 3, scope: !26)
  177. // CHECK:STDOUT: !30 = !DILocation(line: 75, column: 25, scope: !26)
  178. // CHECK:STDOUT: !31 = !DILocation(line: 75, column: 33, scope: !26)
  179. // CHECK:STDOUT: !32 = !DILocation(line: 75, column: 3, scope: !26)
  180. // CHECK:STDOUT: !33 = !DILocation(line: 76, column: 18, scope: !26)
  181. // CHECK:STDOUT: !34 = !DILocation(line: 76, column: 3, scope: !26)
  182. // CHECK:STDOUT: !35 = !DILocation(line: 70, column: 1, scope: !26)
  183. // CHECK:STDOUT: !36 = distinct !DISubprogram(name: "third_function", linkageName: "_Cthird_function.Main.bd8cd068af0bdf76", scope: null, file: !3, line: 35, type: !5, spFlags: DISPFlagDefinition, unit: !2)
  184. // CHECK:STDOUT: !37 = !DILocation(line: 36, column: 3, scope: !36)
  185. // CHECK:STDOUT: !38 = !DILocation(line: 37, column: 3, scope: !36)
  186. // CHECK:STDOUT: !39 = !DILocation(line: 39, column: 30, scope: !36)
  187. // CHECK:STDOUT: !40 = !DILocation(line: 39, column: 3, scope: !36)
  188. // CHECK:STDOUT: !41 = !DILocation(line: 40, column: 19, scope: !36)
  189. // CHECK:STDOUT: !42 = !DILocation(line: 40, column: 3, scope: !36)
  190. // CHECK:STDOUT: !43 = !DILocation(line: 35, column: 1, scope: !36)