address_of_lvalue.carbon 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  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/int.carbon
  6. // TODO: Add ranges and switch to "--dump-sem-ir-ranges=only".
  7. // EXTRA-ARGS: --dump-sem-ir-ranges=if-present
  8. //
  9. // AUTOUPDATE
  10. // TIP: To test this file alone, run:
  11. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/pointer/address_of_lvalue.carbon
  12. // TIP: To dump output, run:
  13. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/pointer/address_of_lvalue.carbon
  14. fn F() {
  15. var s: {.a: i32, .b: i32} = {.a = 1, .b = 2};
  16. var p: {.a: i32, .b: i32}* = &s;
  17. var q: i32* = &s.a;
  18. var r: i32* = &s.b;
  19. var t: (i32, i32) = (1, 2);
  20. var t0: i32* = &t.0;
  21. var t1: i32* = &t.1;
  22. }
  23. // CHECK:STDOUT: --- address_of_lvalue.carbon
  24. // CHECK:STDOUT:
  25. // CHECK:STDOUT: constants {
  26. // CHECK:STDOUT: %F.type: type = fn_type @F [concrete]
  27. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  28. // CHECK:STDOUT: %F: %F.type = struct_value () [concrete]
  29. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  30. // CHECK:STDOUT: %Int.type: type = generic_class_type @Int [concrete]
  31. // CHECK:STDOUT: %Int.generic: %Int.type = struct_value () [concrete]
  32. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  33. // CHECK:STDOUT: %struct_type.a.b.501: type = struct_type {.a: %i32, .b: %i32} [concrete]
  34. // CHECK:STDOUT: %ptr.3ee: type = ptr_type %struct_type.a.b.501 [concrete]
  35. // CHECK:STDOUT: %pattern_type.851: type = pattern_type %struct_type.a.b.501 [concrete]
  36. // CHECK:STDOUT: %int_1.5b8: Core.IntLiteral = int_value 1 [concrete]
  37. // CHECK:STDOUT: %int_2.ecc: Core.IntLiteral = int_value 2 [concrete]
  38. // CHECK:STDOUT: %struct_type.a.b.cfd: type = struct_type {.a: Core.IntLiteral, .b: Core.IntLiteral} [concrete]
  39. // CHECK:STDOUT: %ImplicitAs.type.cc7: type = generic_interface_type @ImplicitAs [concrete]
  40. // CHECK:STDOUT: %ImplicitAs.generic: %ImplicitAs.type.cc7 = struct_value () [concrete]
  41. // CHECK:STDOUT: %ImplicitAs.type.205: type = facet_type <@ImplicitAs, @ImplicitAs(%i32)> [concrete]
  42. // CHECK:STDOUT: %Convert.type.1b6: type = fn_type @Convert.1, @ImplicitAs(%i32) [concrete]
  43. // CHECK:STDOUT: %To: Core.IntLiteral = bind_symbolic_name To, 0 [symbolic]
  44. // CHECK:STDOUT: %Convert.type.0f9: type = fn_type @Convert.2, @impl.4f9(%To) [symbolic]
  45. // CHECK:STDOUT: %Convert.f06: %Convert.type.0f9 = struct_value () [symbolic]
  46. // CHECK:STDOUT: %ImplicitAs.impl_witness.c75: <witness> = impl_witness imports.%ImplicitAs.impl_witness_table.a2f, @impl.4f9(%int_32) [concrete]
  47. // CHECK:STDOUT: %Convert.type.035: type = fn_type @Convert.2, @impl.4f9(%int_32) [concrete]
  48. // CHECK:STDOUT: %Convert.956: %Convert.type.035 = struct_value () [concrete]
  49. // CHECK:STDOUT: %ImplicitAs.facet: %ImplicitAs.type.205 = facet_value Core.IntLiteral, (%ImplicitAs.impl_witness.c75) [concrete]
  50. // CHECK:STDOUT: %.9c3: type = fn_type_with_self_type %Convert.type.1b6, %ImplicitAs.facet [concrete]
  51. // CHECK:STDOUT: %Convert.bound.ab5: <bound method> = bound_method %int_1.5b8, %Convert.956 [concrete]
  52. // CHECK:STDOUT: %Convert.specific_fn: <specific function> = specific_function %Convert.956, @Convert.2(%int_32) [concrete]
  53. // CHECK:STDOUT: %bound_method.9a1: <bound method> = bound_method %int_1.5b8, %Convert.specific_fn [concrete]
  54. // CHECK:STDOUT: %int_1.5d2: %i32 = int_value 1 [concrete]
  55. // CHECK:STDOUT: %Convert.bound.ef9: <bound method> = bound_method %int_2.ecc, %Convert.956 [concrete]
  56. // CHECK:STDOUT: %bound_method.b92: <bound method> = bound_method %int_2.ecc, %Convert.specific_fn [concrete]
  57. // CHECK:STDOUT: %int_2.ef8: %i32 = int_value 2 [concrete]
  58. // CHECK:STDOUT: %struct: %struct_type.a.b.501 = struct_value (%int_1.5d2, %int_2.ef8) [concrete]
  59. // CHECK:STDOUT: %pattern_type.8dd: type = pattern_type %ptr.3ee [concrete]
  60. // CHECK:STDOUT: %ptr.235: type = ptr_type %i32 [concrete]
  61. // CHECK:STDOUT: %pattern_type.fe8: type = pattern_type %ptr.235 [concrete]
  62. // CHECK:STDOUT: %tuple.type.24b: type = tuple_type (type, type) [concrete]
  63. // CHECK:STDOUT: %tuple.type.d07: type = tuple_type (%i32, %i32) [concrete]
  64. // CHECK:STDOUT: %ptr.261: type = ptr_type %tuple.type.d07 [concrete]
  65. // CHECK:STDOUT: %pattern_type.511: type = pattern_type %tuple.type.d07 [concrete]
  66. // CHECK:STDOUT: %tuple.type.f94: type = tuple_type (Core.IntLiteral, Core.IntLiteral) [concrete]
  67. // CHECK:STDOUT: %tuple: %tuple.type.d07 = tuple_value (%int_1.5d2, %int_2.ef8) [concrete]
  68. // CHECK:STDOUT: %int_0: Core.IntLiteral = int_value 0 [concrete]
  69. // CHECK:STDOUT: %Destroy.type: type = facet_type <@Destroy> [concrete]
  70. // CHECK:STDOUT: %Op.type.bae: type = fn_type @Op.2 [concrete]
  71. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic]
  72. // CHECK:STDOUT: %Op.type.bc9: type = fn_type @Op.3, @impl.49c(%T) [symbolic]
  73. // CHECK:STDOUT: %Op.46f: %Op.type.bc9 = struct_value () [symbolic]
  74. // CHECK:STDOUT: %Destroy.impl_witness.711: <witness> = impl_witness imports.%Destroy.impl_witness_table, @impl.49c(%ptr.235) [concrete]
  75. // CHECK:STDOUT: %Op.type.ba2: type = fn_type @Op.3, @impl.49c(%ptr.235) [concrete]
  76. // CHECK:STDOUT: %Op.649: %Op.type.ba2 = struct_value () [concrete]
  77. // CHECK:STDOUT: %ptr.5d5: type = ptr_type %ptr.235 [concrete]
  78. // CHECK:STDOUT: %Destroy.facet.2bf: %Destroy.type = facet_value %ptr.235, (%Destroy.impl_witness.711) [concrete]
  79. // CHECK:STDOUT: %.a79: type = fn_type_with_self_type %Op.type.bae, %Destroy.facet.2bf [concrete]
  80. // CHECK:STDOUT: %Op.specific_fn.829: <specific function> = specific_function %Op.649, @Op.3(%ptr.235) [concrete]
  81. // CHECK:STDOUT: %Destroy.impl_witness.5a7: <witness> = impl_witness imports.%Destroy.impl_witness_table, @impl.49c(%tuple.type.d07) [concrete]
  82. // CHECK:STDOUT: %Op.type.a4a: type = fn_type @Op.3, @impl.49c(%tuple.type.d07) [concrete]
  83. // CHECK:STDOUT: %Op.7c6: %Op.type.a4a = struct_value () [concrete]
  84. // CHECK:STDOUT: %Destroy.facet.167: %Destroy.type = facet_value %tuple.type.d07, (%Destroy.impl_witness.5a7) [concrete]
  85. // CHECK:STDOUT: %.b68: type = fn_type_with_self_type %Op.type.bae, %Destroy.facet.167 [concrete]
  86. // CHECK:STDOUT: %Op.specific_fn.bbb: <specific function> = specific_function %Op.7c6, @Op.3(%tuple.type.d07) [concrete]
  87. // CHECK:STDOUT: %Destroy.impl_witness.ff6: <witness> = impl_witness imports.%Destroy.impl_witness_table, @impl.49c(%ptr.3ee) [concrete]
  88. // CHECK:STDOUT: %Op.type.757: type = fn_type @Op.3, @impl.49c(%ptr.3ee) [concrete]
  89. // CHECK:STDOUT: %Op.e22: %Op.type.757 = struct_value () [concrete]
  90. // CHECK:STDOUT: %ptr.40c: type = ptr_type %ptr.3ee [concrete]
  91. // CHECK:STDOUT: %Destroy.facet.ed3: %Destroy.type = facet_value %ptr.3ee, (%Destroy.impl_witness.ff6) [concrete]
  92. // CHECK:STDOUT: %.f93: type = fn_type_with_self_type %Op.type.bae, %Destroy.facet.ed3 [concrete]
  93. // CHECK:STDOUT: %Op.specific_fn.ce1: <specific function> = specific_function %Op.e22, @Op.3(%ptr.3ee) [concrete]
  94. // CHECK:STDOUT: %Destroy.impl_witness.ad1: <witness> = impl_witness imports.%Destroy.impl_witness_table, @impl.49c(%struct_type.a.b.501) [concrete]
  95. // CHECK:STDOUT: %Op.type.da3: type = fn_type @Op.3, @impl.49c(%struct_type.a.b.501) [concrete]
  96. // CHECK:STDOUT: %Op.9db: %Op.type.da3 = struct_value () [concrete]
  97. // CHECK:STDOUT: %Destroy.facet.807: %Destroy.type = facet_value %struct_type.a.b.501, (%Destroy.impl_witness.ad1) [concrete]
  98. // CHECK:STDOUT: %.8e0: type = fn_type_with_self_type %Op.type.bae, %Destroy.facet.807 [concrete]
  99. // CHECK:STDOUT: %Op.specific_fn.1e0: <specific function> = specific_function %Op.9db, @Op.3(%struct_type.a.b.501) [concrete]
  100. // CHECK:STDOUT: }
  101. // CHECK:STDOUT:
  102. // CHECK:STDOUT: imports {
  103. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  104. // CHECK:STDOUT: .Int = %Core.Int
  105. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  106. // CHECK:STDOUT: .Destroy = %Core.Destroy
  107. // CHECK:STDOUT: import Core//prelude
  108. // CHECK:STDOUT: import Core//prelude/...
  109. // CHECK:STDOUT: }
  110. // CHECK:STDOUT: %Core.Int: %Int.type = import_ref Core//prelude/parts/int, Int, loaded [concrete = constants.%Int.generic]
  111. // CHECK:STDOUT: %Core.ImplicitAs: %ImplicitAs.type.cc7 = import_ref Core//prelude/parts/as, ImplicitAs, loaded [concrete = constants.%ImplicitAs.generic]
  112. // CHECK:STDOUT: %Core.import_ref.a5b: @impl.4f9.%Convert.type (%Convert.type.0f9) = import_ref Core//prelude/parts/int, loc16_39, loaded [symbolic = @impl.4f9.%Convert (constants.%Convert.f06)]
  113. // CHECK:STDOUT: %ImplicitAs.impl_witness_table.a2f = impl_witness_table (%Core.import_ref.a5b), @impl.4f9 [concrete]
  114. // CHECK:STDOUT: %Core.Destroy: type = import_ref Core//prelude/parts/destroy, Destroy, loaded [concrete = constants.%Destroy.type]
  115. // CHECK:STDOUT: %Core.import_ref.0b9: @impl.49c.%Op.type (%Op.type.bc9) = import_ref Core//prelude/parts/destroy, loc8_29, loaded [symbolic = @impl.49c.%Op (constants.%Op.46f)]
  116. // CHECK:STDOUT: %Destroy.impl_witness_table = impl_witness_table (%Core.import_ref.0b9), @impl.49c [concrete]
  117. // CHECK:STDOUT: }
  118. // CHECK:STDOUT:
  119. // CHECK:STDOUT: file {
  120. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  121. // CHECK:STDOUT: .Core = imports.%Core
  122. // CHECK:STDOUT: .F = %F.decl
  123. // CHECK:STDOUT: }
  124. // CHECK:STDOUT: %Core.import = import Core
  125. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [concrete = constants.%F] {} {}
  126. // CHECK:STDOUT: }
  127. // CHECK:STDOUT:
  128. // CHECK:STDOUT: fn @F() {
  129. // CHECK:STDOUT: !entry:
  130. // CHECK:STDOUT: name_binding_decl {
  131. // CHECK:STDOUT: %s.patt: %pattern_type.851 = binding_pattern s [concrete]
  132. // CHECK:STDOUT: %s.var_patt: %pattern_type.851 = var_pattern %s.patt [concrete]
  133. // CHECK:STDOUT: }
  134. // CHECK:STDOUT: %s.var: ref %struct_type.a.b.501 = var %s.var_patt
  135. // CHECK:STDOUT: %int_1.loc16: Core.IntLiteral = int_value 1 [concrete = constants.%int_1.5b8]
  136. // CHECK:STDOUT: %int_2.loc16: Core.IntLiteral = int_value 2 [concrete = constants.%int_2.ecc]
  137. // CHECK:STDOUT: %.loc16_46.1: %struct_type.a.b.cfd = struct_literal (%int_1.loc16, %int_2.loc16)
  138. // CHECK:STDOUT: %impl.elem0.loc16_46.1: %.9c3 = impl_witness_access constants.%ImplicitAs.impl_witness.c75, element0 [concrete = constants.%Convert.956]
  139. // CHECK:STDOUT: %bound_method.loc16_46.1: <bound method> = bound_method %int_1.loc16, %impl.elem0.loc16_46.1 [concrete = constants.%Convert.bound.ab5]
  140. // CHECK:STDOUT: %specific_fn.loc16_46.1: <specific function> = specific_function %impl.elem0.loc16_46.1, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn]
  141. // CHECK:STDOUT: %bound_method.loc16_46.2: <bound method> = bound_method %int_1.loc16, %specific_fn.loc16_46.1 [concrete = constants.%bound_method.9a1]
  142. // CHECK:STDOUT: %int.convert_checked.loc16_46.1: init %i32 = call %bound_method.loc16_46.2(%int_1.loc16) [concrete = constants.%int_1.5d2]
  143. // CHECK:STDOUT: %.loc16_46.2: init %i32 = converted %int_1.loc16, %int.convert_checked.loc16_46.1 [concrete = constants.%int_1.5d2]
  144. // CHECK:STDOUT: %.loc16_46.3: ref %i32 = struct_access %s.var, element0
  145. // CHECK:STDOUT: %.loc16_46.4: init %i32 = initialize_from %.loc16_46.2 to %.loc16_46.3 [concrete = constants.%int_1.5d2]
  146. // CHECK:STDOUT: %impl.elem0.loc16_46.2: %.9c3 = impl_witness_access constants.%ImplicitAs.impl_witness.c75, element0 [concrete = constants.%Convert.956]
  147. // CHECK:STDOUT: %bound_method.loc16_46.3: <bound method> = bound_method %int_2.loc16, %impl.elem0.loc16_46.2 [concrete = constants.%Convert.bound.ef9]
  148. // CHECK:STDOUT: %specific_fn.loc16_46.2: <specific function> = specific_function %impl.elem0.loc16_46.2, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn]
  149. // CHECK:STDOUT: %bound_method.loc16_46.4: <bound method> = bound_method %int_2.loc16, %specific_fn.loc16_46.2 [concrete = constants.%bound_method.b92]
  150. // CHECK:STDOUT: %int.convert_checked.loc16_46.2: init %i32 = call %bound_method.loc16_46.4(%int_2.loc16) [concrete = constants.%int_2.ef8]
  151. // CHECK:STDOUT: %.loc16_46.5: init %i32 = converted %int_2.loc16, %int.convert_checked.loc16_46.2 [concrete = constants.%int_2.ef8]
  152. // CHECK:STDOUT: %.loc16_46.6: ref %i32 = struct_access %s.var, element1
  153. // CHECK:STDOUT: %.loc16_46.7: init %i32 = initialize_from %.loc16_46.5 to %.loc16_46.6 [concrete = constants.%int_2.ef8]
  154. // CHECK:STDOUT: %.loc16_46.8: init %struct_type.a.b.501 = struct_init (%.loc16_46.4, %.loc16_46.7) to %s.var [concrete = constants.%struct]
  155. // CHECK:STDOUT: %.loc16_3: init %struct_type.a.b.501 = converted %.loc16_46.1, %.loc16_46.8 [concrete = constants.%struct]
  156. // CHECK:STDOUT: assign %s.var, %.loc16_3
  157. // CHECK:STDOUT: %.loc16_27: type = splice_block %struct_type.a.b.loc16 [concrete = constants.%struct_type.a.b.501] {
  158. // CHECK:STDOUT: %int_32.loc16_15: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  159. // CHECK:STDOUT: %i32.loc16_15: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  160. // CHECK:STDOUT: %int_32.loc16_24: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  161. // CHECK:STDOUT: %i32.loc16_24: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  162. // CHECK:STDOUT: %struct_type.a.b.loc16: type = struct_type {.a: %i32, .b: %i32} [concrete = constants.%struct_type.a.b.501]
  163. // CHECK:STDOUT: }
  164. // CHECK:STDOUT: %s: ref %struct_type.a.b.501 = bind_name s, %s.var
  165. // CHECK:STDOUT: name_binding_decl {
  166. // CHECK:STDOUT: %p.patt: %pattern_type.8dd = binding_pattern p [concrete]
  167. // CHECK:STDOUT: %p.var_patt: %pattern_type.8dd = var_pattern %p.patt [concrete]
  168. // CHECK:STDOUT: }
  169. // CHECK:STDOUT: %p.var: ref %ptr.3ee = var %p.var_patt
  170. // CHECK:STDOUT: %s.ref.loc18: ref %struct_type.a.b.501 = name_ref s, %s
  171. // CHECK:STDOUT: %addr.loc18_32: %ptr.3ee = addr_of %s.ref.loc18
  172. // CHECK:STDOUT: assign %p.var, %addr.loc18_32
  173. // CHECK:STDOUT: %.loc18: type = splice_block %ptr.loc18 [concrete = constants.%ptr.3ee] {
  174. // CHECK:STDOUT: %int_32.loc18_15: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  175. // CHECK:STDOUT: %i32.loc18_15: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  176. // CHECK:STDOUT: %int_32.loc18_24: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  177. // CHECK:STDOUT: %i32.loc18_24: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  178. // CHECK:STDOUT: %struct_type.a.b.loc18: type = struct_type {.a: %i32, .b: %i32} [concrete = constants.%struct_type.a.b.501]
  179. // CHECK:STDOUT: %ptr.loc18: type = ptr_type %struct_type.a.b.loc18 [concrete = constants.%ptr.3ee]
  180. // CHECK:STDOUT: }
  181. // CHECK:STDOUT: %p: ref %ptr.3ee = bind_name p, %p.var
  182. // CHECK:STDOUT: name_binding_decl {
  183. // CHECK:STDOUT: %q.patt: %pattern_type.fe8 = binding_pattern q [concrete]
  184. // CHECK:STDOUT: %q.var_patt: %pattern_type.fe8 = var_pattern %q.patt [concrete]
  185. // CHECK:STDOUT: }
  186. // CHECK:STDOUT: %q.var: ref %ptr.235 = var %q.var_patt
  187. // CHECK:STDOUT: %s.ref.loc19: ref %struct_type.a.b.501 = name_ref s, %s
  188. // CHECK:STDOUT: %.loc19_19: ref %i32 = struct_access %s.ref.loc19, element0
  189. // CHECK:STDOUT: %addr.loc19_17: %ptr.235 = addr_of %.loc19_19
  190. // CHECK:STDOUT: assign %q.var, %addr.loc19_17
  191. // CHECK:STDOUT: %.loc19_13: type = splice_block %ptr.loc19 [concrete = constants.%ptr.235] {
  192. // CHECK:STDOUT: %int_32.loc19: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  193. // CHECK:STDOUT: %i32.loc19: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  194. // CHECK:STDOUT: %ptr.loc19: type = ptr_type %i32.loc19 [concrete = constants.%ptr.235]
  195. // CHECK:STDOUT: }
  196. // CHECK:STDOUT: %q: ref %ptr.235 = bind_name q, %q.var
  197. // CHECK:STDOUT: name_binding_decl {
  198. // CHECK:STDOUT: %r.patt: %pattern_type.fe8 = binding_pattern r [concrete]
  199. // CHECK:STDOUT: %r.var_patt: %pattern_type.fe8 = var_pattern %r.patt [concrete]
  200. // CHECK:STDOUT: }
  201. // CHECK:STDOUT: %r.var: ref %ptr.235 = var %r.var_patt
  202. // CHECK:STDOUT: %s.ref.loc20: ref %struct_type.a.b.501 = name_ref s, %s
  203. // CHECK:STDOUT: %.loc20_19: ref %i32 = struct_access %s.ref.loc20, element1
  204. // CHECK:STDOUT: %addr.loc20_17: %ptr.235 = addr_of %.loc20_19
  205. // CHECK:STDOUT: assign %r.var, %addr.loc20_17
  206. // CHECK:STDOUT: %.loc20_13: type = splice_block %ptr.loc20 [concrete = constants.%ptr.235] {
  207. // CHECK:STDOUT: %int_32.loc20: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  208. // CHECK:STDOUT: %i32.loc20: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  209. // CHECK:STDOUT: %ptr.loc20: type = ptr_type %i32.loc20 [concrete = constants.%ptr.235]
  210. // CHECK:STDOUT: }
  211. // CHECK:STDOUT: %r: ref %ptr.235 = bind_name r, %r.var
  212. // CHECK:STDOUT: name_binding_decl {
  213. // CHECK:STDOUT: %t.patt: %pattern_type.511 = binding_pattern t [concrete]
  214. // CHECK:STDOUT: %t.var_patt: %pattern_type.511 = var_pattern %t.patt [concrete]
  215. // CHECK:STDOUT: }
  216. // CHECK:STDOUT: %t.var: ref %tuple.type.d07 = var %t.var_patt
  217. // CHECK:STDOUT: %int_1.loc22: Core.IntLiteral = int_value 1 [concrete = constants.%int_1.5b8]
  218. // CHECK:STDOUT: %int_2.loc22: Core.IntLiteral = int_value 2 [concrete = constants.%int_2.ecc]
  219. // CHECK:STDOUT: %.loc22_28.1: %tuple.type.f94 = tuple_literal (%int_1.loc22, %int_2.loc22)
  220. // CHECK:STDOUT: %impl.elem0.loc22_28.1: %.9c3 = impl_witness_access constants.%ImplicitAs.impl_witness.c75, element0 [concrete = constants.%Convert.956]
  221. // CHECK:STDOUT: %bound_method.loc22_28.1: <bound method> = bound_method %int_1.loc22, %impl.elem0.loc22_28.1 [concrete = constants.%Convert.bound.ab5]
  222. // CHECK:STDOUT: %specific_fn.loc22_28.1: <specific function> = specific_function %impl.elem0.loc22_28.1, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn]
  223. // CHECK:STDOUT: %bound_method.loc22_28.2: <bound method> = bound_method %int_1.loc22, %specific_fn.loc22_28.1 [concrete = constants.%bound_method.9a1]
  224. // CHECK:STDOUT: %int.convert_checked.loc22_28.1: init %i32 = call %bound_method.loc22_28.2(%int_1.loc22) [concrete = constants.%int_1.5d2]
  225. // CHECK:STDOUT: %.loc22_28.2: init %i32 = converted %int_1.loc22, %int.convert_checked.loc22_28.1 [concrete = constants.%int_1.5d2]
  226. // CHECK:STDOUT: %tuple.elem0.loc22: ref %i32 = tuple_access %t.var, element0
  227. // CHECK:STDOUT: %.loc22_28.3: init %i32 = initialize_from %.loc22_28.2 to %tuple.elem0.loc22 [concrete = constants.%int_1.5d2]
  228. // CHECK:STDOUT: %impl.elem0.loc22_28.2: %.9c3 = impl_witness_access constants.%ImplicitAs.impl_witness.c75, element0 [concrete = constants.%Convert.956]
  229. // CHECK:STDOUT: %bound_method.loc22_28.3: <bound method> = bound_method %int_2.loc22, %impl.elem0.loc22_28.2 [concrete = constants.%Convert.bound.ef9]
  230. // CHECK:STDOUT: %specific_fn.loc22_28.2: <specific function> = specific_function %impl.elem0.loc22_28.2, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn]
  231. // CHECK:STDOUT: %bound_method.loc22_28.4: <bound method> = bound_method %int_2.loc22, %specific_fn.loc22_28.2 [concrete = constants.%bound_method.b92]
  232. // CHECK:STDOUT: %int.convert_checked.loc22_28.2: init %i32 = call %bound_method.loc22_28.4(%int_2.loc22) [concrete = constants.%int_2.ef8]
  233. // CHECK:STDOUT: %.loc22_28.4: init %i32 = converted %int_2.loc22, %int.convert_checked.loc22_28.2 [concrete = constants.%int_2.ef8]
  234. // CHECK:STDOUT: %tuple.elem1.loc22: ref %i32 = tuple_access %t.var, element1
  235. // CHECK:STDOUT: %.loc22_28.5: init %i32 = initialize_from %.loc22_28.4 to %tuple.elem1.loc22 [concrete = constants.%int_2.ef8]
  236. // CHECK:STDOUT: %.loc22_28.6: init %tuple.type.d07 = tuple_init (%.loc22_28.3, %.loc22_28.5) to %t.var [concrete = constants.%tuple]
  237. // CHECK:STDOUT: %.loc22_3: init %tuple.type.d07 = converted %.loc22_28.1, %.loc22_28.6 [concrete = constants.%tuple]
  238. // CHECK:STDOUT: assign %t.var, %.loc22_3
  239. // CHECK:STDOUT: %.loc22_19.1: type = splice_block %.loc22_19.3 [concrete = constants.%tuple.type.d07] {
  240. // CHECK:STDOUT: %int_32.loc22_11: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  241. // CHECK:STDOUT: %i32.loc22_11: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  242. // CHECK:STDOUT: %int_32.loc22_16: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  243. // CHECK:STDOUT: %i32.loc22_16: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  244. // CHECK:STDOUT: %.loc22_19.2: %tuple.type.24b = tuple_literal (%i32.loc22_11, %i32.loc22_16)
  245. // CHECK:STDOUT: %.loc22_19.3: type = converted %.loc22_19.2, constants.%tuple.type.d07 [concrete = constants.%tuple.type.d07]
  246. // CHECK:STDOUT: }
  247. // CHECK:STDOUT: %t: ref %tuple.type.d07 = bind_name t, %t.var
  248. // CHECK:STDOUT: name_binding_decl {
  249. // CHECK:STDOUT: %t0.patt: %pattern_type.fe8 = binding_pattern t0 [concrete]
  250. // CHECK:STDOUT: %t0.var_patt: %pattern_type.fe8 = var_pattern %t0.patt [concrete]
  251. // CHECK:STDOUT: }
  252. // CHECK:STDOUT: %t0.var: ref %ptr.235 = var %t0.var_patt
  253. // CHECK:STDOUT: %t.ref.loc23: ref %tuple.type.d07 = name_ref t, %t
  254. // CHECK:STDOUT: %int_0: Core.IntLiteral = int_value 0 [concrete = constants.%int_0]
  255. // CHECK:STDOUT: %tuple.elem0.loc23: ref %i32 = tuple_access %t.ref.loc23, element0
  256. // CHECK:STDOUT: %addr.loc23_18: %ptr.235 = addr_of %tuple.elem0.loc23
  257. // CHECK:STDOUT: assign %t0.var, %addr.loc23_18
  258. // CHECK:STDOUT: %.loc23: type = splice_block %ptr.loc23 [concrete = constants.%ptr.235] {
  259. // CHECK:STDOUT: %int_32.loc23: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  260. // CHECK:STDOUT: %i32.loc23: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  261. // CHECK:STDOUT: %ptr.loc23: type = ptr_type %i32.loc23 [concrete = constants.%ptr.235]
  262. // CHECK:STDOUT: }
  263. // CHECK:STDOUT: %t0: ref %ptr.235 = bind_name t0, %t0.var
  264. // CHECK:STDOUT: name_binding_decl {
  265. // CHECK:STDOUT: %t1.patt: %pattern_type.fe8 = binding_pattern t1 [concrete]
  266. // CHECK:STDOUT: %t1.var_patt: %pattern_type.fe8 = var_pattern %t1.patt [concrete]
  267. // CHECK:STDOUT: }
  268. // CHECK:STDOUT: %t1.var: ref %ptr.235 = var %t1.var_patt
  269. // CHECK:STDOUT: %t.ref.loc24: ref %tuple.type.d07 = name_ref t, %t
  270. // CHECK:STDOUT: %int_1.loc24: Core.IntLiteral = int_value 1 [concrete = constants.%int_1.5b8]
  271. // CHECK:STDOUT: %tuple.elem1.loc24: ref %i32 = tuple_access %t.ref.loc24, element1
  272. // CHECK:STDOUT: %addr.loc24_18: %ptr.235 = addr_of %tuple.elem1.loc24
  273. // CHECK:STDOUT: assign %t1.var, %addr.loc24_18
  274. // CHECK:STDOUT: %.loc24: type = splice_block %ptr.loc24 [concrete = constants.%ptr.235] {
  275. // CHECK:STDOUT: %int_32.loc24: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  276. // CHECK:STDOUT: %i32.loc24: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  277. // CHECK:STDOUT: %ptr.loc24: type = ptr_type %i32.loc24 [concrete = constants.%ptr.235]
  278. // CHECK:STDOUT: }
  279. // CHECK:STDOUT: %t1: ref %ptr.235 = bind_name t1, %t1.var
  280. // CHECK:STDOUT: %impl.elem0.loc24: %.a79 = impl_witness_access constants.%Destroy.impl_witness.711, element0 [concrete = constants.%Op.649]
  281. // CHECK:STDOUT: %bound_method.loc24_3.1: <bound method> = bound_method %t1.var, %impl.elem0.loc24
  282. // CHECK:STDOUT: %specific_fn.loc24: <specific function> = specific_function %impl.elem0.loc24, @Op.3(constants.%ptr.235) [concrete = constants.%Op.specific_fn.829]
  283. // CHECK:STDOUT: %bound_method.loc24_3.2: <bound method> = bound_method %t1.var, %specific_fn.loc24
  284. // CHECK:STDOUT: %addr.loc24_3: %ptr.5d5 = addr_of %t1.var
  285. // CHECK:STDOUT: %no_op.loc24: init %empty_tuple.type = call %bound_method.loc24_3.2(%addr.loc24_3)
  286. // CHECK:STDOUT: %impl.elem0.loc23: %.a79 = impl_witness_access constants.%Destroy.impl_witness.711, element0 [concrete = constants.%Op.649]
  287. // CHECK:STDOUT: %bound_method.loc23_3.1: <bound method> = bound_method %t0.var, %impl.elem0.loc23
  288. // CHECK:STDOUT: %specific_fn.loc23: <specific function> = specific_function %impl.elem0.loc23, @Op.3(constants.%ptr.235) [concrete = constants.%Op.specific_fn.829]
  289. // CHECK:STDOUT: %bound_method.loc23_3.2: <bound method> = bound_method %t0.var, %specific_fn.loc23
  290. // CHECK:STDOUT: %addr.loc23_3: %ptr.5d5 = addr_of %t0.var
  291. // CHECK:STDOUT: %no_op.loc23: init %empty_tuple.type = call %bound_method.loc23_3.2(%addr.loc23_3)
  292. // CHECK:STDOUT: %impl.elem0.loc22_3: %.b68 = impl_witness_access constants.%Destroy.impl_witness.5a7, element0 [concrete = constants.%Op.7c6]
  293. // CHECK:STDOUT: %bound_method.loc22_3.1: <bound method> = bound_method %t.var, %impl.elem0.loc22_3
  294. // CHECK:STDOUT: %specific_fn.loc22_3: <specific function> = specific_function %impl.elem0.loc22_3, @Op.3(constants.%tuple.type.d07) [concrete = constants.%Op.specific_fn.bbb]
  295. // CHECK:STDOUT: %bound_method.loc22_3.2: <bound method> = bound_method %t.var, %specific_fn.loc22_3
  296. // CHECK:STDOUT: %addr.loc22: %ptr.261 = addr_of %t.var
  297. // CHECK:STDOUT: %no_op.loc22: init %empty_tuple.type = call %bound_method.loc22_3.2(%addr.loc22)
  298. // CHECK:STDOUT: %impl.elem0.loc20: %.a79 = impl_witness_access constants.%Destroy.impl_witness.711, element0 [concrete = constants.%Op.649]
  299. // CHECK:STDOUT: %bound_method.loc20_3.1: <bound method> = bound_method %r.var, %impl.elem0.loc20
  300. // CHECK:STDOUT: %specific_fn.loc20: <specific function> = specific_function %impl.elem0.loc20, @Op.3(constants.%ptr.235) [concrete = constants.%Op.specific_fn.829]
  301. // CHECK:STDOUT: %bound_method.loc20_3.2: <bound method> = bound_method %r.var, %specific_fn.loc20
  302. // CHECK:STDOUT: %addr.loc20_3: %ptr.5d5 = addr_of %r.var
  303. // CHECK:STDOUT: %no_op.loc20: init %empty_tuple.type = call %bound_method.loc20_3.2(%addr.loc20_3)
  304. // CHECK:STDOUT: %impl.elem0.loc19: %.a79 = impl_witness_access constants.%Destroy.impl_witness.711, element0 [concrete = constants.%Op.649]
  305. // CHECK:STDOUT: %bound_method.loc19_3.1: <bound method> = bound_method %q.var, %impl.elem0.loc19
  306. // CHECK:STDOUT: %specific_fn.loc19: <specific function> = specific_function %impl.elem0.loc19, @Op.3(constants.%ptr.235) [concrete = constants.%Op.specific_fn.829]
  307. // CHECK:STDOUT: %bound_method.loc19_3.2: <bound method> = bound_method %q.var, %specific_fn.loc19
  308. // CHECK:STDOUT: %addr.loc19_3: %ptr.5d5 = addr_of %q.var
  309. // CHECK:STDOUT: %no_op.loc19: init %empty_tuple.type = call %bound_method.loc19_3.2(%addr.loc19_3)
  310. // CHECK:STDOUT: %impl.elem0.loc18: %.f93 = impl_witness_access constants.%Destroy.impl_witness.ff6, element0 [concrete = constants.%Op.e22]
  311. // CHECK:STDOUT: %bound_method.loc18_3.1: <bound method> = bound_method %p.var, %impl.elem0.loc18
  312. // CHECK:STDOUT: %specific_fn.loc18: <specific function> = specific_function %impl.elem0.loc18, @Op.3(constants.%ptr.3ee) [concrete = constants.%Op.specific_fn.ce1]
  313. // CHECK:STDOUT: %bound_method.loc18_3.2: <bound method> = bound_method %p.var, %specific_fn.loc18
  314. // CHECK:STDOUT: %addr.loc18_3: %ptr.40c = addr_of %p.var
  315. // CHECK:STDOUT: %no_op.loc18: init %empty_tuple.type = call %bound_method.loc18_3.2(%addr.loc18_3)
  316. // CHECK:STDOUT: %impl.elem0.loc16_3: %.8e0 = impl_witness_access constants.%Destroy.impl_witness.ad1, element0 [concrete = constants.%Op.9db]
  317. // CHECK:STDOUT: %bound_method.loc16_3.1: <bound method> = bound_method %s.var, %impl.elem0.loc16_3
  318. // CHECK:STDOUT: %specific_fn.loc16_3: <specific function> = specific_function %impl.elem0.loc16_3, @Op.3(constants.%struct_type.a.b.501) [concrete = constants.%Op.specific_fn.1e0]
  319. // CHECK:STDOUT: %bound_method.loc16_3.2: <bound method> = bound_method %s.var, %specific_fn.loc16_3
  320. // CHECK:STDOUT: %addr.loc16: %ptr.3ee = addr_of %s.var
  321. // CHECK:STDOUT: %no_op.loc16: init %empty_tuple.type = call %bound_method.loc16_3.2(%addr.loc16)
  322. // CHECK:STDOUT: return
  323. // CHECK:STDOUT: }
  324. // CHECK:STDOUT: