destroy_calls.carbon 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  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. //
  7. // AUTOUPDATE
  8. // TIP: To test this file alone, run:
  9. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/class/destroy_calls.carbon
  10. // TIP: To dump output, run:
  11. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/class/destroy_calls.carbon
  12. // --- implicit_return.carbon
  13. library "[[@TEST_NAME]]";
  14. class A {}
  15. class B {}
  16. class C {}
  17. //@dump-sem-ir-begin
  18. fn F() {
  19. var unused a: A = {};
  20. var unused b: B = {};
  21. var unused c: C = {};
  22. }
  23. //@dump-sem-ir-end
  24. // --- nested_scope.carbon
  25. library "[[@TEST_NAME]]";
  26. class A {}
  27. class B {}
  28. class C {}
  29. //@dump-sem-ir-begin
  30. fn F() {
  31. var unused a: A = {};
  32. var unused b: B = {};
  33. if (true) {
  34. var unused c: C = {};
  35. }
  36. }
  37. //@dump-sem-ir-end
  38. // --- temp.carbon
  39. library "[[@TEST_NAME]]";
  40. class A { fn Make() -> A; }
  41. class B { fn Make() -> B; }
  42. class C { fn Make() -> C; }
  43. //@dump-sem-ir-begin
  44. fn F() {
  45. // TODO: The scoping of these destroy calls is incorrect. Maybe we need to
  46. // establish statement scopes?
  47. A.Make();
  48. B.Make();
  49. C.Make();
  50. }
  51. //@dump-sem-ir-end
  52. // --- generic_class.carbon
  53. library "[[@TEST_NAME]]";
  54. class C {}
  55. class D(template T:! type) {}
  56. //@dump-sem-ir-begin
  57. fn F() {
  58. var unused a: D(C) = {};
  59. }
  60. //@dump-sem-ir-end
  61. // --- generic_use_inside_generic.carbon
  62. library "[[@TEST_NAME]]";
  63. class C(template T:! type) {}
  64. //@dump-sem-ir-begin
  65. fn F(template T:! type) {
  66. var unused v: C(T) = {};
  67. }
  68. //@dump-sem-ir-end
  69. fn G() { F({}); }
  70. // CHECK:STDOUT: --- implicit_return.carbon
  71. // CHECK:STDOUT:
  72. // CHECK:STDOUT: constants {
  73. // CHECK:STDOUT: %A: type = class_type @A [concrete]
  74. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  75. // CHECK:STDOUT: %B: type = class_type @B [concrete]
  76. // CHECK:STDOUT: %C: type = class_type @C [concrete]
  77. // CHECK:STDOUT: %F.type: type = fn_type @F [concrete]
  78. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  79. // CHECK:STDOUT: %F: %F.type = struct_value () [concrete]
  80. // CHECK:STDOUT: %pattern_type.1ab: type = pattern_type %A [concrete]
  81. // CHECK:STDOUT: %empty_struct: %empty_struct_type = struct_value () [concrete]
  82. // CHECK:STDOUT: %A.val: %A = struct_value () [concrete]
  83. // CHECK:STDOUT: %pattern_type.1f4: type = pattern_type %B [concrete]
  84. // CHECK:STDOUT: %B.val: %B = struct_value () [concrete]
  85. // CHECK:STDOUT: %pattern_type.7c7: type = pattern_type %C [concrete]
  86. // CHECK:STDOUT: %C.val: %C = struct_value () [concrete]
  87. // CHECK:STDOUT: %Destroy.Op.type.bae255.1: type = fn_type @Destroy.Op.loc12 [concrete]
  88. // CHECK:STDOUT: %Destroy.Op.651ba6.1: %Destroy.Op.type.bae255.1 = struct_value () [concrete]
  89. // CHECK:STDOUT: %Destroy.Op.type.bae255.2: type = fn_type @Destroy.Op.loc11 [concrete]
  90. // CHECK:STDOUT: %Destroy.Op.651ba6.2: %Destroy.Op.type.bae255.2 = struct_value () [concrete]
  91. // CHECK:STDOUT: %Destroy.Op.type.bae255.3: type = fn_type @Destroy.Op.loc10 [concrete]
  92. // CHECK:STDOUT: %Destroy.Op.651ba6.3: %Destroy.Op.type.bae255.3 = struct_value () [concrete]
  93. // CHECK:STDOUT: }
  94. // CHECK:STDOUT:
  95. // CHECK:STDOUT: file {
  96. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [concrete = constants.%F] {} {}
  97. // CHECK:STDOUT: }
  98. // CHECK:STDOUT:
  99. // CHECK:STDOUT: fn @F() {
  100. // CHECK:STDOUT: !entry:
  101. // CHECK:STDOUT: name_binding_decl {
  102. // CHECK:STDOUT: %a.patt: %pattern_type.1ab = ref_binding_pattern a [concrete]
  103. // CHECK:STDOUT: %a.var_patt: %pattern_type.1ab = var_pattern %a.patt [concrete]
  104. // CHECK:STDOUT: }
  105. // CHECK:STDOUT: %a.var: ref %A = var %a.var_patt
  106. // CHECK:STDOUT: %.loc10_22.1: %empty_struct_type = struct_literal () [concrete = constants.%empty_struct]
  107. // CHECK:STDOUT: %.loc10_22.2: init %A to %a.var = class_init () [concrete = constants.%A.val]
  108. // CHECK:STDOUT: %.loc10_3: init %A = converted %.loc10_22.1, %.loc10_22.2 [concrete = constants.%A.val]
  109. // CHECK:STDOUT: assign %a.var, %.loc10_3
  110. // CHECK:STDOUT: %A.ref: type = name_ref A, file.%A.decl [concrete = constants.%A]
  111. // CHECK:STDOUT: %a: ref %A = ref_binding a, %a.var
  112. // CHECK:STDOUT: name_binding_decl {
  113. // CHECK:STDOUT: %b.patt: %pattern_type.1f4 = ref_binding_pattern b [concrete]
  114. // CHECK:STDOUT: %b.var_patt: %pattern_type.1f4 = var_pattern %b.patt [concrete]
  115. // CHECK:STDOUT: }
  116. // CHECK:STDOUT: %b.var: ref %B = var %b.var_patt
  117. // CHECK:STDOUT: %.loc11_22.1: %empty_struct_type = struct_literal () [concrete = constants.%empty_struct]
  118. // CHECK:STDOUT: %.loc11_22.2: init %B to %b.var = class_init () [concrete = constants.%B.val]
  119. // CHECK:STDOUT: %.loc11_3: init %B = converted %.loc11_22.1, %.loc11_22.2 [concrete = constants.%B.val]
  120. // CHECK:STDOUT: assign %b.var, %.loc11_3
  121. // CHECK:STDOUT: %B.ref: type = name_ref B, file.%B.decl [concrete = constants.%B]
  122. // CHECK:STDOUT: %b: ref %B = ref_binding b, %b.var
  123. // CHECK:STDOUT: name_binding_decl {
  124. // CHECK:STDOUT: %c.patt: %pattern_type.7c7 = ref_binding_pattern c [concrete]
  125. // CHECK:STDOUT: %c.var_patt: %pattern_type.7c7 = var_pattern %c.patt [concrete]
  126. // CHECK:STDOUT: }
  127. // CHECK:STDOUT: %c.var: ref %C = var %c.var_patt
  128. // CHECK:STDOUT: %.loc12_22.1: %empty_struct_type = struct_literal () [concrete = constants.%empty_struct]
  129. // CHECK:STDOUT: %.loc12_22.2: init %C to %c.var = class_init () [concrete = constants.%C.val]
  130. // CHECK:STDOUT: %.loc12_3: init %C = converted %.loc12_22.1, %.loc12_22.2 [concrete = constants.%C.val]
  131. // CHECK:STDOUT: assign %c.var, %.loc12_3
  132. // CHECK:STDOUT: %C.ref: type = name_ref C, file.%C.decl [concrete = constants.%C]
  133. // CHECK:STDOUT: %c: ref %C = ref_binding c, %c.var
  134. // CHECK:STDOUT: %Destroy.Op.bound.loc12: <bound method> = bound_method %c.var, constants.%Destroy.Op.651ba6.1
  135. // CHECK:STDOUT: %Destroy.Op.call.loc12: init %empty_tuple.type = call %Destroy.Op.bound.loc12(%c.var)
  136. // CHECK:STDOUT: %Destroy.Op.bound.loc11: <bound method> = bound_method %b.var, constants.%Destroy.Op.651ba6.2
  137. // CHECK:STDOUT: %Destroy.Op.call.loc11: init %empty_tuple.type = call %Destroy.Op.bound.loc11(%b.var)
  138. // CHECK:STDOUT: %Destroy.Op.bound.loc10: <bound method> = bound_method %a.var, constants.%Destroy.Op.651ba6.3
  139. // CHECK:STDOUT: %Destroy.Op.call.loc10: init %empty_tuple.type = call %Destroy.Op.bound.loc10(%a.var)
  140. // CHECK:STDOUT: return
  141. // CHECK:STDOUT: }
  142. // CHECK:STDOUT:
  143. // CHECK:STDOUT: fn @Destroy.Op.loc12(%self.param: ref %C) = "no_op";
  144. // CHECK:STDOUT:
  145. // CHECK:STDOUT: fn @Destroy.Op.loc11(%self.param: ref %B) = "no_op";
  146. // CHECK:STDOUT:
  147. // CHECK:STDOUT: fn @Destroy.Op.loc10(%self.param: ref %A) = "no_op";
  148. // CHECK:STDOUT:
  149. // CHECK:STDOUT: --- nested_scope.carbon
  150. // CHECK:STDOUT:
  151. // CHECK:STDOUT: constants {
  152. // CHECK:STDOUT: %A: type = class_type @A [concrete]
  153. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  154. // CHECK:STDOUT: %B: type = class_type @B [concrete]
  155. // CHECK:STDOUT: %C: type = class_type @C [concrete]
  156. // CHECK:STDOUT: %F.type: type = fn_type @F [concrete]
  157. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  158. // CHECK:STDOUT: %F: %F.type = struct_value () [concrete]
  159. // CHECK:STDOUT: %pattern_type.1ab: type = pattern_type %A [concrete]
  160. // CHECK:STDOUT: %empty_struct: %empty_struct_type = struct_value () [concrete]
  161. // CHECK:STDOUT: %A.val: %A = struct_value () [concrete]
  162. // CHECK:STDOUT: %pattern_type.1f4: type = pattern_type %B [concrete]
  163. // CHECK:STDOUT: %B.val: %B = struct_value () [concrete]
  164. // CHECK:STDOUT: %true: bool = bool_literal true [concrete]
  165. // CHECK:STDOUT: %pattern_type.7c7: type = pattern_type %C [concrete]
  166. // CHECK:STDOUT: %C.val: %C = struct_value () [concrete]
  167. // CHECK:STDOUT: %Destroy.Op.type.bae255.1: type = fn_type @Destroy.Op.loc13 [concrete]
  168. // CHECK:STDOUT: %Destroy.Op.651ba6.1: %Destroy.Op.type.bae255.1 = struct_value () [concrete]
  169. // CHECK:STDOUT: %Destroy.Op.type.bae255.2: type = fn_type @Destroy.Op.loc11 [concrete]
  170. // CHECK:STDOUT: %Destroy.Op.651ba6.2: %Destroy.Op.type.bae255.2 = struct_value () [concrete]
  171. // CHECK:STDOUT: %Destroy.Op.type.bae255.3: type = fn_type @Destroy.Op.loc10 [concrete]
  172. // CHECK:STDOUT: %Destroy.Op.651ba6.3: %Destroy.Op.type.bae255.3 = struct_value () [concrete]
  173. // CHECK:STDOUT: }
  174. // CHECK:STDOUT:
  175. // CHECK:STDOUT: file {
  176. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [concrete = constants.%F] {} {}
  177. // CHECK:STDOUT: }
  178. // CHECK:STDOUT:
  179. // CHECK:STDOUT: fn @F() {
  180. // CHECK:STDOUT: !entry:
  181. // CHECK:STDOUT: name_binding_decl {
  182. // CHECK:STDOUT: %a.patt: %pattern_type.1ab = ref_binding_pattern a [concrete]
  183. // CHECK:STDOUT: %a.var_patt: %pattern_type.1ab = var_pattern %a.patt [concrete]
  184. // CHECK:STDOUT: }
  185. // CHECK:STDOUT: %a.var: ref %A = var %a.var_patt
  186. // CHECK:STDOUT: %.loc10_22.1: %empty_struct_type = struct_literal () [concrete = constants.%empty_struct]
  187. // CHECK:STDOUT: %.loc10_22.2: init %A to %a.var = class_init () [concrete = constants.%A.val]
  188. // CHECK:STDOUT: %.loc10_3: init %A = converted %.loc10_22.1, %.loc10_22.2 [concrete = constants.%A.val]
  189. // CHECK:STDOUT: assign %a.var, %.loc10_3
  190. // CHECK:STDOUT: %A.ref: type = name_ref A, file.%A.decl [concrete = constants.%A]
  191. // CHECK:STDOUT: %a: ref %A = ref_binding a, %a.var
  192. // CHECK:STDOUT: name_binding_decl {
  193. // CHECK:STDOUT: %b.patt: %pattern_type.1f4 = ref_binding_pattern b [concrete]
  194. // CHECK:STDOUT: %b.var_patt: %pattern_type.1f4 = var_pattern %b.patt [concrete]
  195. // CHECK:STDOUT: }
  196. // CHECK:STDOUT: %b.var: ref %B = var %b.var_patt
  197. // CHECK:STDOUT: %.loc11_22.1: %empty_struct_type = struct_literal () [concrete = constants.%empty_struct]
  198. // CHECK:STDOUT: %.loc11_22.2: init %B to %b.var = class_init () [concrete = constants.%B.val]
  199. // CHECK:STDOUT: %.loc11_3: init %B = converted %.loc11_22.1, %.loc11_22.2 [concrete = constants.%B.val]
  200. // CHECK:STDOUT: assign %b.var, %.loc11_3
  201. // CHECK:STDOUT: %B.ref: type = name_ref B, file.%B.decl [concrete = constants.%B]
  202. // CHECK:STDOUT: %b: ref %B = ref_binding b, %b.var
  203. // CHECK:STDOUT: %true: bool = bool_literal true [concrete = constants.%true]
  204. // CHECK:STDOUT: if %true br !if.then else br !if.else
  205. // CHECK:STDOUT:
  206. // CHECK:STDOUT: !if.then:
  207. // CHECK:STDOUT: name_binding_decl {
  208. // CHECK:STDOUT: %c.patt: %pattern_type.7c7 = ref_binding_pattern c [concrete]
  209. // CHECK:STDOUT: %c.var_patt: %pattern_type.7c7 = var_pattern %c.patt [concrete]
  210. // CHECK:STDOUT: }
  211. // CHECK:STDOUT: %c.var: ref %C = var %c.var_patt
  212. // CHECK:STDOUT: %.loc13_24.1: %empty_struct_type = struct_literal () [concrete = constants.%empty_struct]
  213. // CHECK:STDOUT: %.loc13_24.2: init %C to %c.var = class_init () [concrete = constants.%C.val]
  214. // CHECK:STDOUT: %.loc13_5: init %C = converted %.loc13_24.1, %.loc13_24.2 [concrete = constants.%C.val]
  215. // CHECK:STDOUT: assign %c.var, %.loc13_5
  216. // CHECK:STDOUT: %C.ref: type = name_ref C, file.%C.decl [concrete = constants.%C]
  217. // CHECK:STDOUT: %c: ref %C = ref_binding c, %c.var
  218. // CHECK:STDOUT: br !if.else
  219. // CHECK:STDOUT:
  220. // CHECK:STDOUT: !if.else:
  221. // CHECK:STDOUT: %Destroy.Op.bound.loc13: <bound method> = bound_method %c.var, constants.%Destroy.Op.651ba6.1
  222. // CHECK:STDOUT: %Destroy.Op.call.loc13: init %empty_tuple.type = call %Destroy.Op.bound.loc13(%c.var)
  223. // CHECK:STDOUT: %Destroy.Op.bound.loc11: <bound method> = bound_method %b.var, constants.%Destroy.Op.651ba6.2
  224. // CHECK:STDOUT: %Destroy.Op.call.loc11: init %empty_tuple.type = call %Destroy.Op.bound.loc11(%b.var)
  225. // CHECK:STDOUT: %Destroy.Op.bound.loc10: <bound method> = bound_method %a.var, constants.%Destroy.Op.651ba6.3
  226. // CHECK:STDOUT: %Destroy.Op.call.loc10: init %empty_tuple.type = call %Destroy.Op.bound.loc10(%a.var)
  227. // CHECK:STDOUT: return
  228. // CHECK:STDOUT: }
  229. // CHECK:STDOUT:
  230. // CHECK:STDOUT: fn @Destroy.Op.loc13(%self.param: ref %C) = "no_op";
  231. // CHECK:STDOUT:
  232. // CHECK:STDOUT: fn @Destroy.Op.loc11(%self.param: ref %B) = "no_op";
  233. // CHECK:STDOUT:
  234. // CHECK:STDOUT: fn @Destroy.Op.loc10(%self.param: ref %A) = "no_op";
  235. // CHECK:STDOUT:
  236. // CHECK:STDOUT: --- temp.carbon
  237. // CHECK:STDOUT:
  238. // CHECK:STDOUT: constants {
  239. // CHECK:STDOUT: %A: type = class_type @A [concrete]
  240. // CHECK:STDOUT: %A.Make.type: type = fn_type @A.Make [concrete]
  241. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  242. // CHECK:STDOUT: %A.Make: %A.Make.type = struct_value () [concrete]
  243. // CHECK:STDOUT: %B: type = class_type @B [concrete]
  244. // CHECK:STDOUT: %B.Make.type: type = fn_type @B.Make [concrete]
  245. // CHECK:STDOUT: %B.Make: %B.Make.type = struct_value () [concrete]
  246. // CHECK:STDOUT: %C: type = class_type @C [concrete]
  247. // CHECK:STDOUT: %C.Make.type: type = fn_type @C.Make [concrete]
  248. // CHECK:STDOUT: %C.Make: %C.Make.type = struct_value () [concrete]
  249. // CHECK:STDOUT: %F.type: type = fn_type @F [concrete]
  250. // CHECK:STDOUT: %F: %F.type = struct_value () [concrete]
  251. // CHECK:STDOUT: %Destroy.Op.type.bae255.1: type = fn_type @Destroy.Op.loc14 [concrete]
  252. // CHECK:STDOUT: %Destroy.Op.651ba6.1: %Destroy.Op.type.bae255.1 = struct_value () [concrete]
  253. // CHECK:STDOUT: %Destroy.Op.type.bae255.2: type = fn_type @Destroy.Op.loc13 [concrete]
  254. // CHECK:STDOUT: %Destroy.Op.651ba6.2: %Destroy.Op.type.bae255.2 = struct_value () [concrete]
  255. // CHECK:STDOUT: %Destroy.Op.type.bae255.3: type = fn_type @Destroy.Op.loc12 [concrete]
  256. // CHECK:STDOUT: %Destroy.Op.651ba6.3: %Destroy.Op.type.bae255.3 = struct_value () [concrete]
  257. // CHECK:STDOUT: }
  258. // CHECK:STDOUT:
  259. // CHECK:STDOUT: file {
  260. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [concrete = constants.%F] {} {}
  261. // CHECK:STDOUT: }
  262. // CHECK:STDOUT:
  263. // CHECK:STDOUT: fn @F() {
  264. // CHECK:STDOUT: !entry:
  265. // CHECK:STDOUT: %A.ref: type = name_ref A, file.%A.decl [concrete = constants.%A]
  266. // CHECK:STDOUT: %Make.ref.loc12: %A.Make.type = name_ref Make, @A.%A.Make.decl [concrete = constants.%A.Make]
  267. // CHECK:STDOUT: %.loc12_10.1: ref %A = temporary_storage
  268. // CHECK:STDOUT: %A.Make.call: init %A to %.loc12_10.1 = call %Make.ref.loc12()
  269. // CHECK:STDOUT: %.loc12_10.2: ref %A = temporary %.loc12_10.1, %A.Make.call
  270. // CHECK:STDOUT: %B.ref: type = name_ref B, file.%B.decl [concrete = constants.%B]
  271. // CHECK:STDOUT: %Make.ref.loc13: %B.Make.type = name_ref Make, @B.%B.Make.decl [concrete = constants.%B.Make]
  272. // CHECK:STDOUT: %.loc13_10.1: ref %B = temporary_storage
  273. // CHECK:STDOUT: %B.Make.call: init %B to %.loc13_10.1 = call %Make.ref.loc13()
  274. // CHECK:STDOUT: %.loc13_10.2: ref %B = temporary %.loc13_10.1, %B.Make.call
  275. // CHECK:STDOUT: %C.ref: type = name_ref C, file.%C.decl [concrete = constants.%C]
  276. // CHECK:STDOUT: %Make.ref.loc14: %C.Make.type = name_ref Make, @C.%C.Make.decl [concrete = constants.%C.Make]
  277. // CHECK:STDOUT: %.loc14_10.1: ref %C = temporary_storage
  278. // CHECK:STDOUT: %C.Make.call: init %C to %.loc14_10.1 = call %Make.ref.loc14()
  279. // CHECK:STDOUT: %.loc14_10.2: ref %C = temporary %.loc14_10.1, %C.Make.call
  280. // CHECK:STDOUT: %Destroy.Op.bound.loc14: <bound method> = bound_method %.loc14_10.2, constants.%Destroy.Op.651ba6.1
  281. // CHECK:STDOUT: %Destroy.Op.call.loc14: init %empty_tuple.type = call %Destroy.Op.bound.loc14(%.loc14_10.2)
  282. // CHECK:STDOUT: %Destroy.Op.bound.loc13: <bound method> = bound_method %.loc13_10.2, constants.%Destroy.Op.651ba6.2
  283. // CHECK:STDOUT: %Destroy.Op.call.loc13: init %empty_tuple.type = call %Destroy.Op.bound.loc13(%.loc13_10.2)
  284. // CHECK:STDOUT: %Destroy.Op.bound.loc12: <bound method> = bound_method %.loc12_10.2, constants.%Destroy.Op.651ba6.3
  285. // CHECK:STDOUT: %Destroy.Op.call.loc12: init %empty_tuple.type = call %Destroy.Op.bound.loc12(%.loc12_10.2)
  286. // CHECK:STDOUT: return
  287. // CHECK:STDOUT: }
  288. // CHECK:STDOUT:
  289. // CHECK:STDOUT: fn @Destroy.Op.loc14(%self.param: ref %C) = "no_op";
  290. // CHECK:STDOUT:
  291. // CHECK:STDOUT: fn @Destroy.Op.loc13(%self.param: ref %B) = "no_op";
  292. // CHECK:STDOUT:
  293. // CHECK:STDOUT: fn @Destroy.Op.loc12(%self.param: ref %A) = "no_op";
  294. // CHECK:STDOUT:
  295. // CHECK:STDOUT: --- generic_class.carbon
  296. // CHECK:STDOUT:
  297. // CHECK:STDOUT: constants {
  298. // CHECK:STDOUT: %C: type = class_type @C [concrete]
  299. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  300. // CHECK:STDOUT: %D.type: type = generic_class_type @D [concrete]
  301. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  302. // CHECK:STDOUT: %D.generic: %D.type = struct_value () [concrete]
  303. // CHECK:STDOUT: %F.type: type = fn_type @F [concrete]
  304. // CHECK:STDOUT: %F: %F.type = struct_value () [concrete]
  305. // CHECK:STDOUT: %D.213: type = class_type @D, @D(%C) [concrete]
  306. // CHECK:STDOUT: %pattern_type.002: type = pattern_type %D.213 [concrete]
  307. // CHECK:STDOUT: %empty_struct: %empty_struct_type = struct_value () [concrete]
  308. // CHECK:STDOUT: %D.val: %D.213 = struct_value () [concrete]
  309. // CHECK:STDOUT: %Destroy.Op.type: type = fn_type @Destroy.Op [concrete]
  310. // CHECK:STDOUT: %Destroy.Op: %Destroy.Op.type = struct_value () [concrete]
  311. // CHECK:STDOUT: }
  312. // CHECK:STDOUT:
  313. // CHECK:STDOUT: file {
  314. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [concrete = constants.%F] {} {}
  315. // CHECK:STDOUT: }
  316. // CHECK:STDOUT:
  317. // CHECK:STDOUT: fn @F() {
  318. // CHECK:STDOUT: !entry:
  319. // CHECK:STDOUT: name_binding_decl {
  320. // CHECK:STDOUT: %a.patt: %pattern_type.002 = ref_binding_pattern a [concrete]
  321. // CHECK:STDOUT: %a.var_patt: %pattern_type.002 = var_pattern %a.patt [concrete]
  322. // CHECK:STDOUT: }
  323. // CHECK:STDOUT: %a.var: ref %D.213 = var %a.var_patt
  324. // CHECK:STDOUT: %.loc9_25.1: %empty_struct_type = struct_literal () [concrete = constants.%empty_struct]
  325. // CHECK:STDOUT: %.loc9_25.2: init %D.213 to %a.var = class_init () [concrete = constants.%D.val]
  326. // CHECK:STDOUT: %.loc9_3: init %D.213 = converted %.loc9_25.1, %.loc9_25.2 [concrete = constants.%D.val]
  327. // CHECK:STDOUT: assign %a.var, %.loc9_3
  328. // CHECK:STDOUT: %.loc9_20: type = splice_block %D [concrete = constants.%D.213] {
  329. // CHECK:STDOUT: %D.ref: %D.type = name_ref D, file.%D.decl [concrete = constants.%D.generic]
  330. // CHECK:STDOUT: %C.ref: type = name_ref C, file.%C.decl [concrete = constants.%C]
  331. // CHECK:STDOUT: %D: type = class_type @D, @D(constants.%C) [concrete = constants.%D.213]
  332. // CHECK:STDOUT: }
  333. // CHECK:STDOUT: %a: ref %D.213 = ref_binding a, %a.var
  334. // CHECK:STDOUT: %Destroy.Op.bound: <bound method> = bound_method %a.var, constants.%Destroy.Op
  335. // CHECK:STDOUT: %Destroy.Op.call: init %empty_tuple.type = call %Destroy.Op.bound(%a.var)
  336. // CHECK:STDOUT: return
  337. // CHECK:STDOUT: }
  338. // CHECK:STDOUT:
  339. // CHECK:STDOUT: fn @Destroy.Op(%self.param: ref %D.213) = "no_op";
  340. // CHECK:STDOUT:
  341. // CHECK:STDOUT: --- generic_use_inside_generic.carbon
  342. // CHECK:STDOUT:
  343. // CHECK:STDOUT: constants {
  344. // CHECK:STDOUT: %pattern_type.98f: type = pattern_type type [concrete]
  345. // CHECK:STDOUT: %T: type = symbolic_binding T, 0, template [template]
  346. // CHECK:STDOUT: %C.type: type = generic_class_type @C [concrete]
  347. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  348. // CHECK:STDOUT: %C.generic: %C.type = struct_value () [concrete]
  349. // CHECK:STDOUT: %C.5a3: type = class_type @C, @C(%T) [template]
  350. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  351. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete]
  352. // CHECK:STDOUT: %F.type: type = fn_type @F [concrete]
  353. // CHECK:STDOUT: %F: %F.type = struct_value () [concrete]
  354. // CHECK:STDOUT: %require_complete: <witness> = require_complete_type %C.5a3 [template]
  355. // CHECK:STDOUT: %pattern_type.3d5: type = pattern_type %C.5a3 [template]
  356. // CHECK:STDOUT: %empty_struct: %empty_struct_type = struct_value () [concrete]
  357. // CHECK:STDOUT: %C.val.8b3: %C.5a3 = struct_value () [template]
  358. // CHECK:STDOUT: %Destroy.type: type = facet_type <@Destroy> [concrete]
  359. // CHECK:STDOUT: %Destroy.lookup_impl_witness: <witness> = lookup_impl_witness %C.5a3, @Destroy [template]
  360. // CHECK:STDOUT: %Destroy.facet.472: %Destroy.type = facet_value %C.5a3, (%Destroy.lookup_impl_witness) [template]
  361. // CHECK:STDOUT: %Destroy.WithSelf.Op.type.7d1: type = fn_type @Destroy.WithSelf.Op, @Destroy.WithSelf(%Destroy.facet.472) [template]
  362. // CHECK:STDOUT: %.306: type = fn_type_with_self_type %Destroy.WithSelf.Op.type.7d1, %Destroy.facet.472 [template]
  363. // CHECK:STDOUT: %impl.elem0: %.306 = impl_witness_access %Destroy.lookup_impl_witness, element0 [template]
  364. // CHECK:STDOUT: %specific_impl_fn: <specific function> = specific_impl_function %impl.elem0, @Destroy.WithSelf.Op(%Destroy.facet.472) [template]
  365. // CHECK:STDOUT: %C.850: type = class_type @C, @C(%empty_struct_type) [concrete]
  366. // CHECK:STDOUT: %pattern_type.526: type = pattern_type %C.850 [concrete]
  367. // CHECK:STDOUT: %C.val.09d: %C.850 = struct_value () [concrete]
  368. // CHECK:STDOUT: %Destroy.Op.type: type = fn_type @Destroy.Op [concrete]
  369. // CHECK:STDOUT: %Destroy.Op: %Destroy.Op.type = struct_value () [concrete]
  370. // CHECK:STDOUT: %custom_witness.8d7: <witness> = custom_witness (%Destroy.Op), @Destroy [concrete]
  371. // CHECK:STDOUT: %Destroy.facet.81b: %Destroy.type = facet_value %C.850, (%custom_witness.8d7) [concrete]
  372. // CHECK:STDOUT: %Destroy.WithSelf.Op.type.599: type = fn_type @Destroy.WithSelf.Op, @Destroy.WithSelf(%Destroy.facet.81b) [concrete]
  373. // CHECK:STDOUT: %.540: type = fn_type_with_self_type %Destroy.WithSelf.Op.type.599, %Destroy.facet.81b [concrete]
  374. // CHECK:STDOUT: }
  375. // CHECK:STDOUT:
  376. // CHECK:STDOUT: file {
  377. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [concrete = constants.%F] {
  378. // CHECK:STDOUT: %T.patt: %pattern_type.98f = symbolic_binding_pattern T, 0, template [concrete]
  379. // CHECK:STDOUT: } {
  380. // CHECK:STDOUT: %.loc6_19.1: type = splice_block %.loc6_19.2 [concrete = type] {
  381. // CHECK:STDOUT: <elided>
  382. // CHECK:STDOUT: %.loc6_19.2: type = type_literal type [concrete = type]
  383. // CHECK:STDOUT: }
  384. // CHECK:STDOUT: %T.loc6_16.2: type = symbolic_binding T, 0, template [template = %T.loc6_16.1 (constants.%T)]
  385. // CHECK:STDOUT: }
  386. // CHECK:STDOUT: }
  387. // CHECK:STDOUT:
  388. // CHECK:STDOUT: generic fn @F(%T.loc6_16.2: type) {
  389. // CHECK:STDOUT: %T.loc6_16.1: type = symbolic_binding T, 0, template [template = %T.loc6_16.1 (constants.%T)]
  390. // CHECK:STDOUT:
  391. // CHECK:STDOUT: !definition:
  392. // CHECK:STDOUT: %C.loc7_20.2: type = class_type @C, @C(%T.loc6_16.1) [template = %C.loc7_20.2 (constants.%C.5a3)]
  393. // CHECK:STDOUT: %require_complete: <witness> = require_complete_type %C.loc7_20.2 [template = %require_complete (constants.%require_complete)]
  394. // CHECK:STDOUT: %pattern_type: type = pattern_type %C.loc7_20.2 [template = %pattern_type (constants.%pattern_type.3d5)]
  395. // CHECK:STDOUT: %C.val: @F.%C.loc7_20.2 (%C.5a3) = struct_value () [template = %C.val (constants.%C.val.8b3)]
  396. // CHECK:STDOUT: %Destroy.lookup_impl_witness: <witness> = lookup_impl_witness %C.loc7_20.2, @Destroy [template = %Destroy.lookup_impl_witness (constants.%Destroy.lookup_impl_witness)]
  397. // CHECK:STDOUT: %Destroy.facet: %Destroy.type = facet_value %C.loc7_20.2, (%Destroy.lookup_impl_witness) [template = %Destroy.facet (constants.%Destroy.facet.472)]
  398. // CHECK:STDOUT: %Destroy.WithSelf.Op.type: type = fn_type @Destroy.WithSelf.Op, @Destroy.WithSelf(%Destroy.facet) [template = %Destroy.WithSelf.Op.type (constants.%Destroy.WithSelf.Op.type.7d1)]
  399. // CHECK:STDOUT: %.loc7_3.2: type = fn_type_with_self_type %Destroy.WithSelf.Op.type, %Destroy.facet [template = %.loc7_3.2 (constants.%.306)]
  400. // CHECK:STDOUT: %impl.elem0.loc7_3.2: @F.%.loc7_3.2 (%.306) = impl_witness_access %Destroy.lookup_impl_witness, element0 [template = %impl.elem0.loc7_3.2 (constants.%impl.elem0)]
  401. // CHECK:STDOUT: %specific_impl_fn.loc7_3.2: <specific function> = specific_impl_function %impl.elem0.loc7_3.2, @Destroy.WithSelf.Op(%Destroy.facet) [template = %specific_impl_fn.loc7_3.2 (constants.%specific_impl_fn)]
  402. // CHECK:STDOUT:
  403. // CHECK:STDOUT: fn() {
  404. // CHECK:STDOUT: !entry:
  405. // CHECK:STDOUT: name_binding_decl {
  406. // CHECK:STDOUT: %v.patt: @F.%pattern_type (%pattern_type.3d5) = ref_binding_pattern v [concrete]
  407. // CHECK:STDOUT: %v.var_patt: @F.%pattern_type (%pattern_type.3d5) = var_pattern %v.patt [concrete]
  408. // CHECK:STDOUT: }
  409. // CHECK:STDOUT: %v.var: ref @F.%C.loc7_20.2 (%C.5a3) = var %v.var_patt
  410. // CHECK:STDOUT: %.loc7_25.1: %empty_struct_type = struct_literal () [concrete = constants.%empty_struct]
  411. // CHECK:STDOUT: %.loc7_25.2: init @F.%C.loc7_20.2 (%C.5a3) to %v.var = class_init () [template = %C.val (constants.%C.val.8b3)]
  412. // CHECK:STDOUT: %.loc7_3.1: init @F.%C.loc7_20.2 (%C.5a3) = converted %.loc7_25.1, %.loc7_25.2 [template = %C.val (constants.%C.val.8b3)]
  413. // CHECK:STDOUT: assign %v.var, %.loc7_3.1
  414. // CHECK:STDOUT: %.loc7_20: type = splice_block %C.loc7_20.1 [template = %C.loc7_20.2 (constants.%C.5a3)] {
  415. // CHECK:STDOUT: %C.ref: %C.type = name_ref C, file.%C.decl [concrete = constants.%C.generic]
  416. // CHECK:STDOUT: %T.ref: type = name_ref T, %T.loc6_16.2 [template = %T.loc6_16.1 (constants.%T)]
  417. // CHECK:STDOUT: %C.loc7_20.1: type = class_type @C, @C(constants.%T) [template = %C.loc7_20.2 (constants.%C.5a3)]
  418. // CHECK:STDOUT: }
  419. // CHECK:STDOUT: %v: ref @F.%C.loc7_20.2 (%C.5a3) = ref_binding v, %v.var
  420. // CHECK:STDOUT: %impl.elem0.loc7_3.1: @F.%.loc7_3.2 (%.306) = impl_witness_access constants.%Destroy.lookup_impl_witness, element0 [template = %impl.elem0.loc7_3.2 (constants.%impl.elem0)]
  421. // CHECK:STDOUT: %bound_method.loc7_3.1: <bound method> = bound_method %v.var, %impl.elem0.loc7_3.1
  422. // CHECK:STDOUT: %specific_impl_fn.loc7_3.1: <specific function> = specific_impl_function %impl.elem0.loc7_3.1, @Destroy.WithSelf.Op(constants.%Destroy.facet.472) [template = %specific_impl_fn.loc7_3.2 (constants.%specific_impl_fn)]
  423. // CHECK:STDOUT: %bound_method.loc7_3.2: <bound method> = bound_method %v.var, %specific_impl_fn.loc7_3.1
  424. // CHECK:STDOUT: %Destroy.WithSelf.Op.call: init %empty_tuple.type = call %bound_method.loc7_3.2(%v.var)
  425. // CHECK:STDOUT: return
  426. // CHECK:STDOUT: }
  427. // CHECK:STDOUT: }
  428. // CHECK:STDOUT:
  429. // CHECK:STDOUT: fn @Destroy.Op(%self.param: ref %C.850) = "no_op";
  430. // CHECK:STDOUT:
  431. // CHECK:STDOUT: specific @F(constants.%T) {
  432. // CHECK:STDOUT: %T.loc6_16.1 => constants.%T
  433. // CHECK:STDOUT: }
  434. // CHECK:STDOUT:
  435. // CHECK:STDOUT: specific @F(constants.%empty_struct_type) {
  436. // CHECK:STDOUT: %T.loc6_16.1 => constants.%empty_struct_type
  437. // CHECK:STDOUT:
  438. // CHECK:STDOUT: !definition:
  439. // CHECK:STDOUT: %C.loc7_20.2 => constants.%C.850
  440. // CHECK:STDOUT: %require_complete => constants.%complete_type
  441. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.526
  442. // CHECK:STDOUT: %C.val => constants.%C.val.09d
  443. // CHECK:STDOUT: %Destroy.lookup_impl_witness => constants.%custom_witness.8d7
  444. // CHECK:STDOUT: %Destroy.facet => constants.%Destroy.facet.81b
  445. // CHECK:STDOUT: %Destroy.WithSelf.Op.type => constants.%Destroy.WithSelf.Op.type.599
  446. // CHECK:STDOUT: %.loc7_3.2 => constants.%.540
  447. // CHECK:STDOUT: %impl.elem0.loc7_3.2 => constants.%Destroy.Op
  448. // CHECK:STDOUT: %specific_impl_fn.loc7_3.2 => constants.%Destroy.Op
  449. // CHECK:STDOUT: }
  450. // CHECK:STDOUT: