expr_category.carbon 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  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. // AUTOUPDATE
  6. // TIP: To test this file alone, run:
  7. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/index/expr_category.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/index/expr_category.carbon
  10. fn F() -> [i32; 3];
  11. fn G(b: [i32; 3]) {
  12. var a: [i32; 3] = (1, 2, 3);
  13. // Indexing a durable array reference gives a durable reference.
  14. var pa: i32* = &a[0];
  15. a[0] = 4;
  16. }
  17. fn ValueBinding(b: [i32; 3]) {
  18. var a: [i32; 3] = (1, 2, 3);
  19. // Index but don't do anything else so we can check that a value binding is
  20. // produced when appropriate.
  21. a[0];
  22. b[0];
  23. F()[0];
  24. }
  25. // CHECK:STDOUT: --- expr_category.carbon
  26. // CHECK:STDOUT:
  27. // CHECK:STDOUT: constants {
  28. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template]
  29. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [template]
  30. // CHECK:STDOUT: %int_3.1ba: Core.IntLiteral = int_value 3 [template]
  31. // CHECK:STDOUT: %array_type: type = array_type %int_3.1ba, %i32 [template]
  32. // CHECK:STDOUT: %F.type: type = fn_type @F [template]
  33. // CHECK:STDOUT: %F: %F.type = struct_value () [template]
  34. // CHECK:STDOUT: %G.type: type = fn_type @G [template]
  35. // CHECK:STDOUT: %G: %G.type = struct_value () [template]
  36. // CHECK:STDOUT: %int_1.5b8: Core.IntLiteral = int_value 1 [template]
  37. // CHECK:STDOUT: %int_2.ecc: Core.IntLiteral = int_value 2 [template]
  38. // CHECK:STDOUT: %tuple.type: type = tuple_type (Core.IntLiteral, Core.IntLiteral, Core.IntLiteral) [template]
  39. // CHECK:STDOUT: %int_0.5c6: Core.IntLiteral = int_value 0 [template]
  40. // CHECK:STDOUT: %ImplicitAs.type.205: type = facet_type <@ImplicitAs, @ImplicitAs(%i32)> [template]
  41. // CHECK:STDOUT: %Convert.type.1b6: type = fn_type @Convert.1, @ImplicitAs(%i32) [template]
  42. // CHECK:STDOUT: %impl_witness.d39: <witness> = impl_witness (imports.%Core.import_ref.a5b), @impl.1(%int_32) [template]
  43. // CHECK:STDOUT: %Convert.type.035: type = fn_type @Convert.2, @impl.1(%int_32) [template]
  44. // CHECK:STDOUT: %Convert.956: %Convert.type.035 = struct_value () [template]
  45. // CHECK:STDOUT: %ImplicitAs.facet: %ImplicitAs.type.205 = facet_value Core.IntLiteral, %impl_witness.d39 [template]
  46. // CHECK:STDOUT: %.a0b: type = fn_type_with_self_type %Convert.type.1b6, %ImplicitAs.facet [template]
  47. // CHECK:STDOUT: %Convert.bound.ab5: <bound method> = bound_method %int_1.5b8, %Convert.956 [template]
  48. // CHECK:STDOUT: %Convert.specific_fn.70c: <specific function> = specific_function %Convert.bound.ab5, @Convert.2(%int_32) [template]
  49. // CHECK:STDOUT: %int_1.5d2: %i32 = int_value 1 [template]
  50. // CHECK:STDOUT: %Convert.bound.ef9: <bound method> = bound_method %int_2.ecc, %Convert.956 [template]
  51. // CHECK:STDOUT: %Convert.specific_fn.787: <specific function> = specific_function %Convert.bound.ef9, @Convert.2(%int_32) [template]
  52. // CHECK:STDOUT: %int_2.ef8: %i32 = int_value 2 [template]
  53. // CHECK:STDOUT: %Convert.bound.b30: <bound method> = bound_method %int_3.1ba, %Convert.956 [template]
  54. // CHECK:STDOUT: %Convert.specific_fn.b42: <specific function> = specific_function %Convert.bound.b30, @Convert.2(%int_32) [template]
  55. // CHECK:STDOUT: %int_3.822: %i32 = int_value 3 [template]
  56. // CHECK:STDOUT: %array: %array_type = tuple_value (%int_1.5d2, %int_2.ef8, %int_3.822) [template]
  57. // CHECK:STDOUT: %ptr.235: type = ptr_type %i32 [template]
  58. // CHECK:STDOUT: %Convert.bound.d04: <bound method> = bound_method %int_0.5c6, %Convert.956 [template]
  59. // CHECK:STDOUT: %Convert.specific_fn.d62: <specific function> = specific_function %Convert.bound.d04, @Convert.2(%int_32) [template]
  60. // CHECK:STDOUT: %int_0.6a9: %i32 = int_value 0 [template]
  61. // CHECK:STDOUT: %int_4.0c1: Core.IntLiteral = int_value 4 [template]
  62. // CHECK:STDOUT: %Convert.bound.ac3: <bound method> = bound_method %int_4.0c1, %Convert.956 [template]
  63. // CHECK:STDOUT: %Convert.specific_fn.450: <specific function> = specific_function %Convert.bound.ac3, @Convert.2(%int_32) [template]
  64. // CHECK:STDOUT: %int_4.940: %i32 = int_value 4 [template]
  65. // CHECK:STDOUT: %ValueBinding.type: type = fn_type @ValueBinding [template]
  66. // CHECK:STDOUT: %ValueBinding: %ValueBinding.type = struct_value () [template]
  67. // CHECK:STDOUT: }
  68. // CHECK:STDOUT:
  69. // CHECK:STDOUT: imports {
  70. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  71. // CHECK:STDOUT: .Int = %Core.Int
  72. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  73. // CHECK:STDOUT: import Core//prelude
  74. // CHECK:STDOUT: import Core//prelude/...
  75. // CHECK:STDOUT: }
  76. // CHECK:STDOUT: }
  77. // CHECK:STDOUT:
  78. // CHECK:STDOUT: file {
  79. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  80. // CHECK:STDOUT: .Core = imports.%Core
  81. // CHECK:STDOUT: .F = %F.decl
  82. // CHECK:STDOUT: .G = %G.decl
  83. // CHECK:STDOUT: .ValueBinding = %ValueBinding.decl
  84. // CHECK:STDOUT: }
  85. // CHECK:STDOUT: %Core.import = import Core
  86. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {
  87. // CHECK:STDOUT: %return.patt: %array_type = return_slot_pattern
  88. // CHECK:STDOUT: %return.param_patt: %array_type = out_param_pattern %return.patt, runtime_param0
  89. // CHECK:STDOUT: } {
  90. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  91. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  92. // CHECK:STDOUT: %int_3: Core.IntLiteral = int_value 3 [template = constants.%int_3.1ba]
  93. // CHECK:STDOUT: %array_type: type = array_type %int_3, %i32 [template = constants.%array_type]
  94. // CHECK:STDOUT: %return.param: ref %array_type = out_param runtime_param0
  95. // CHECK:STDOUT: %return: ref %array_type = return_slot %return.param
  96. // CHECK:STDOUT: }
  97. // CHECK:STDOUT: %G.decl: %G.type = fn_decl @G [template = constants.%G] {
  98. // CHECK:STDOUT: %b.patt: %array_type = binding_pattern b
  99. // CHECK:STDOUT: %b.param_patt: %array_type = value_param_pattern %b.patt, runtime_param0
  100. // CHECK:STDOUT: } {
  101. // CHECK:STDOUT: %b.param: %array_type = value_param runtime_param0
  102. // CHECK:STDOUT: %.loc13: type = splice_block %array_type.loc13 [template = constants.%array_type] {
  103. // CHECK:STDOUT: %int_32.loc13: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  104. // CHECK:STDOUT: %i32.loc13: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  105. // CHECK:STDOUT: %int_3.loc13: Core.IntLiteral = int_value 3 [template = constants.%int_3.1ba]
  106. // CHECK:STDOUT: %array_type.loc13: type = array_type %int_3.loc13, %i32 [template = constants.%array_type]
  107. // CHECK:STDOUT: }
  108. // CHECK:STDOUT: %b: %array_type = bind_name b, %b.param
  109. // CHECK:STDOUT: }
  110. // CHECK:STDOUT: %ValueBinding.decl: %ValueBinding.type = fn_decl @ValueBinding [template = constants.%ValueBinding] {
  111. // CHECK:STDOUT: %b.patt: %array_type = binding_pattern b
  112. // CHECK:STDOUT: %b.param_patt: %array_type = value_param_pattern %b.patt, runtime_param0
  113. // CHECK:STDOUT: } {
  114. // CHECK:STDOUT: %b.param: %array_type = value_param runtime_param0
  115. // CHECK:STDOUT: %.loc21: type = splice_block %array_type.loc21 [template = constants.%array_type] {
  116. // CHECK:STDOUT: %int_32.loc21: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  117. // CHECK:STDOUT: %i32.loc21: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  118. // CHECK:STDOUT: %int_3.loc21: Core.IntLiteral = int_value 3 [template = constants.%int_3.1ba]
  119. // CHECK:STDOUT: %array_type.loc21: type = array_type %int_3.loc21, %i32 [template = constants.%array_type]
  120. // CHECK:STDOUT: }
  121. // CHECK:STDOUT: %b: %array_type = bind_name b, %b.param
  122. // CHECK:STDOUT: }
  123. // CHECK:STDOUT: }
  124. // CHECK:STDOUT:
  125. // CHECK:STDOUT: fn @F() -> %array_type;
  126. // CHECK:STDOUT:
  127. // CHECK:STDOUT: fn @G(%b.param_patt: %array_type) {
  128. // CHECK:STDOUT: !entry:
  129. // CHECK:STDOUT: name_binding_decl {
  130. // CHECK:STDOUT: %a.patt: %array_type = binding_pattern a
  131. // CHECK:STDOUT: %.loc14_3.1: %array_type = var_pattern %a.patt
  132. // CHECK:STDOUT: }
  133. // CHECK:STDOUT: %a.var: ref %array_type = var a
  134. // CHECK:STDOUT: %int_1.loc14_22: Core.IntLiteral = int_value 1 [template = constants.%int_1.5b8]
  135. // CHECK:STDOUT: %int_2.loc14_25: Core.IntLiteral = int_value 2 [template = constants.%int_2.ecc]
  136. // CHECK:STDOUT: %int_3.loc14_28: Core.IntLiteral = int_value 3 [template = constants.%int_3.1ba]
  137. // CHECK:STDOUT: %.loc14_29.1: %tuple.type = tuple_literal (%int_1.loc14_22, %int_2.loc14_25, %int_3.loc14_28)
  138. // CHECK:STDOUT: %impl.elem0.loc14_29.1: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  139. // CHECK:STDOUT: %bound_method.loc14_29.1: <bound method> = bound_method %int_1.loc14_22, %impl.elem0.loc14_29.1 [template = constants.%Convert.bound.ab5]
  140. // CHECK:STDOUT: %specific_fn.loc14_29.1: <specific function> = specific_function %bound_method.loc14_29.1, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.70c]
  141. // CHECK:STDOUT: %int.convert_checked.loc14_29.1: init %i32 = call %specific_fn.loc14_29.1(%int_1.loc14_22) [template = constants.%int_1.5d2]
  142. // CHECK:STDOUT: %.loc14_29.2: init %i32 = converted %int_1.loc14_22, %int.convert_checked.loc14_29.1 [template = constants.%int_1.5d2]
  143. // CHECK:STDOUT: %int_0.loc14: Core.IntLiteral = int_value 0 [template = constants.%int_0.5c6]
  144. // CHECK:STDOUT: %.loc14_29.3: ref %i32 = array_index %a.var, %int_0.loc14
  145. // CHECK:STDOUT: %.loc14_29.4: init %i32 = initialize_from %.loc14_29.2 to %.loc14_29.3 [template = constants.%int_1.5d2]
  146. // CHECK:STDOUT: %impl.elem0.loc14_29.2: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  147. // CHECK:STDOUT: %bound_method.loc14_29.2: <bound method> = bound_method %int_2.loc14_25, %impl.elem0.loc14_29.2 [template = constants.%Convert.bound.ef9]
  148. // CHECK:STDOUT: %specific_fn.loc14_29.2: <specific function> = specific_function %bound_method.loc14_29.2, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.787]
  149. // CHECK:STDOUT: %int.convert_checked.loc14_29.2: init %i32 = call %specific_fn.loc14_29.2(%int_2.loc14_25) [template = constants.%int_2.ef8]
  150. // CHECK:STDOUT: %.loc14_29.5: init %i32 = converted %int_2.loc14_25, %int.convert_checked.loc14_29.2 [template = constants.%int_2.ef8]
  151. // CHECK:STDOUT: %int_1.loc14_29: Core.IntLiteral = int_value 1 [template = constants.%int_1.5b8]
  152. // CHECK:STDOUT: %.loc14_29.6: ref %i32 = array_index %a.var, %int_1.loc14_29
  153. // CHECK:STDOUT: %.loc14_29.7: init %i32 = initialize_from %.loc14_29.5 to %.loc14_29.6 [template = constants.%int_2.ef8]
  154. // CHECK:STDOUT: %impl.elem0.loc14_29.3: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  155. // CHECK:STDOUT: %bound_method.loc14_29.3: <bound method> = bound_method %int_3.loc14_28, %impl.elem0.loc14_29.3 [template = constants.%Convert.bound.b30]
  156. // CHECK:STDOUT: %specific_fn.loc14_29.3: <specific function> = specific_function %bound_method.loc14_29.3, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.b42]
  157. // CHECK:STDOUT: %int.convert_checked.loc14_29.3: init %i32 = call %specific_fn.loc14_29.3(%int_3.loc14_28) [template = constants.%int_3.822]
  158. // CHECK:STDOUT: %.loc14_29.8: init %i32 = converted %int_3.loc14_28, %int.convert_checked.loc14_29.3 [template = constants.%int_3.822]
  159. // CHECK:STDOUT: %int_2.loc14_29: Core.IntLiteral = int_value 2 [template = constants.%int_2.ecc]
  160. // CHECK:STDOUT: %.loc14_29.9: ref %i32 = array_index %a.var, %int_2.loc14_29
  161. // CHECK:STDOUT: %.loc14_29.10: init %i32 = initialize_from %.loc14_29.8 to %.loc14_29.9 [template = constants.%int_3.822]
  162. // CHECK:STDOUT: %.loc14_29.11: init %array_type = array_init (%.loc14_29.4, %.loc14_29.7, %.loc14_29.10) to %a.var [template = constants.%array]
  163. // CHECK:STDOUT: %.loc14_3.2: init %array_type = converted %.loc14_29.1, %.loc14_29.11 [template = constants.%array]
  164. // CHECK:STDOUT: assign %a.var, %.loc14_3.2
  165. // CHECK:STDOUT: %.loc14_17: type = splice_block %array_type.loc14 [template = constants.%array_type] {
  166. // CHECK:STDOUT: %int_32.loc14: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  167. // CHECK:STDOUT: %i32.loc14: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  168. // CHECK:STDOUT: %int_3.loc14_16: Core.IntLiteral = int_value 3 [template = constants.%int_3.1ba]
  169. // CHECK:STDOUT: %array_type.loc14: type = array_type %int_3.loc14_16, %i32 [template = constants.%array_type]
  170. // CHECK:STDOUT: }
  171. // CHECK:STDOUT: %a: ref %array_type = bind_name a, %a.var
  172. // CHECK:STDOUT: name_binding_decl {
  173. // CHECK:STDOUT: %pa.patt: %ptr.235 = binding_pattern pa
  174. // CHECK:STDOUT: %.loc17_3: %ptr.235 = var_pattern %pa.patt
  175. // CHECK:STDOUT: }
  176. // CHECK:STDOUT: %pa.var: ref %ptr.235 = var pa
  177. // CHECK:STDOUT: %a.ref.loc17: ref %array_type = name_ref a, %a
  178. // CHECK:STDOUT: %int_0.loc17: Core.IntLiteral = int_value 0 [template = constants.%int_0.5c6]
  179. // CHECK:STDOUT: %int_32.loc17_22: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  180. // CHECK:STDOUT: %i32.loc17_22: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  181. // CHECK:STDOUT: %impl.elem0.loc17: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  182. // CHECK:STDOUT: %bound_method.loc17: <bound method> = bound_method %int_0.loc17, %impl.elem0.loc17 [template = constants.%Convert.bound.d04]
  183. // CHECK:STDOUT: %specific_fn.loc17: <specific function> = specific_function %bound_method.loc17, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.d62]
  184. // CHECK:STDOUT: %int.convert_checked.loc17: init %i32 = call %specific_fn.loc17(%int_0.loc17) [template = constants.%int_0.6a9]
  185. // CHECK:STDOUT: %.loc17_21.1: %i32 = value_of_initializer %int.convert_checked.loc17 [template = constants.%int_0.6a9]
  186. // CHECK:STDOUT: %.loc17_21.2: %i32 = converted %int_0.loc17, %.loc17_21.1 [template = constants.%int_0.6a9]
  187. // CHECK:STDOUT: %.loc17_22: ref %i32 = array_index %a.ref.loc17, %.loc17_21.2
  188. // CHECK:STDOUT: %addr: %ptr.235 = addr_of %.loc17_22
  189. // CHECK:STDOUT: assign %pa.var, %addr
  190. // CHECK:STDOUT: %.loc17_14: type = splice_block %ptr [template = constants.%ptr.235] {
  191. // CHECK:STDOUT: %int_32.loc17_11: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  192. // CHECK:STDOUT: %i32.loc17_11: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  193. // CHECK:STDOUT: %ptr: type = ptr_type %i32 [template = constants.%ptr.235]
  194. // CHECK:STDOUT: }
  195. // CHECK:STDOUT: %pa: ref %ptr.235 = bind_name pa, %pa.var
  196. // CHECK:STDOUT: %a.ref.loc18: ref %array_type = name_ref a, %a
  197. // CHECK:STDOUT: %int_0.loc18: Core.IntLiteral = int_value 0 [template = constants.%int_0.5c6]
  198. // CHECK:STDOUT: %int_32.loc18: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  199. // CHECK:STDOUT: %i32.loc18: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  200. // CHECK:STDOUT: %impl.elem0.loc18_5: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  201. // CHECK:STDOUT: %bound_method.loc18_5: <bound method> = bound_method %int_0.loc18, %impl.elem0.loc18_5 [template = constants.%Convert.bound.d04]
  202. // CHECK:STDOUT: %specific_fn.loc18_5: <specific function> = specific_function %bound_method.loc18_5, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.d62]
  203. // CHECK:STDOUT: %int.convert_checked.loc18_5: init %i32 = call %specific_fn.loc18_5(%int_0.loc18) [template = constants.%int_0.6a9]
  204. // CHECK:STDOUT: %.loc18_5.1: %i32 = value_of_initializer %int.convert_checked.loc18_5 [template = constants.%int_0.6a9]
  205. // CHECK:STDOUT: %.loc18_5.2: %i32 = converted %int_0.loc18, %.loc18_5.1 [template = constants.%int_0.6a9]
  206. // CHECK:STDOUT: %.loc18_6: ref %i32 = array_index %a.ref.loc18, %.loc18_5.2
  207. // CHECK:STDOUT: %int_4: Core.IntLiteral = int_value 4 [template = constants.%int_4.0c1]
  208. // CHECK:STDOUT: %impl.elem0.loc18_8: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  209. // CHECK:STDOUT: %bound_method.loc18_8: <bound method> = bound_method %int_4, %impl.elem0.loc18_8 [template = constants.%Convert.bound.ac3]
  210. // CHECK:STDOUT: %specific_fn.loc18_8: <specific function> = specific_function %bound_method.loc18_8, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.450]
  211. // CHECK:STDOUT: %int.convert_checked.loc18_8: init %i32 = call %specific_fn.loc18_8(%int_4) [template = constants.%int_4.940]
  212. // CHECK:STDOUT: %.loc18_8: init %i32 = converted %int_4, %int.convert_checked.loc18_8 [template = constants.%int_4.940]
  213. // CHECK:STDOUT: assign %.loc18_6, %.loc18_8
  214. // CHECK:STDOUT: return
  215. // CHECK:STDOUT: }
  216. // CHECK:STDOUT:
  217. // CHECK:STDOUT: fn @ValueBinding(%b.param_patt: %array_type) {
  218. // CHECK:STDOUT: !entry:
  219. // CHECK:STDOUT: name_binding_decl {
  220. // CHECK:STDOUT: %a.patt: %array_type = binding_pattern a
  221. // CHECK:STDOUT: %.loc22_3.1: %array_type = var_pattern %a.patt
  222. // CHECK:STDOUT: }
  223. // CHECK:STDOUT: %a.var: ref %array_type = var a
  224. // CHECK:STDOUT: %int_1.loc22_22: Core.IntLiteral = int_value 1 [template = constants.%int_1.5b8]
  225. // CHECK:STDOUT: %int_2.loc22_25: Core.IntLiteral = int_value 2 [template = constants.%int_2.ecc]
  226. // CHECK:STDOUT: %int_3.loc22_28: Core.IntLiteral = int_value 3 [template = constants.%int_3.1ba]
  227. // CHECK:STDOUT: %.loc22_29.1: %tuple.type = tuple_literal (%int_1.loc22_22, %int_2.loc22_25, %int_3.loc22_28)
  228. // CHECK:STDOUT: %impl.elem0.loc22_29.1: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  229. // CHECK:STDOUT: %bound_method.loc22_29.1: <bound method> = bound_method %int_1.loc22_22, %impl.elem0.loc22_29.1 [template = constants.%Convert.bound.ab5]
  230. // CHECK:STDOUT: %specific_fn.loc22_29.1: <specific function> = specific_function %bound_method.loc22_29.1, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.70c]
  231. // CHECK:STDOUT: %int.convert_checked.loc22_29.1: init %i32 = call %specific_fn.loc22_29.1(%int_1.loc22_22) [template = constants.%int_1.5d2]
  232. // CHECK:STDOUT: %.loc22_29.2: init %i32 = converted %int_1.loc22_22, %int.convert_checked.loc22_29.1 [template = constants.%int_1.5d2]
  233. // CHECK:STDOUT: %int_0.loc22: Core.IntLiteral = int_value 0 [template = constants.%int_0.5c6]
  234. // CHECK:STDOUT: %.loc22_29.3: ref %i32 = array_index %a.var, %int_0.loc22
  235. // CHECK:STDOUT: %.loc22_29.4: init %i32 = initialize_from %.loc22_29.2 to %.loc22_29.3 [template = constants.%int_1.5d2]
  236. // CHECK:STDOUT: %impl.elem0.loc22_29.2: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  237. // CHECK:STDOUT: %bound_method.loc22_29.2: <bound method> = bound_method %int_2.loc22_25, %impl.elem0.loc22_29.2 [template = constants.%Convert.bound.ef9]
  238. // CHECK:STDOUT: %specific_fn.loc22_29.2: <specific function> = specific_function %bound_method.loc22_29.2, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.787]
  239. // CHECK:STDOUT: %int.convert_checked.loc22_29.2: init %i32 = call %specific_fn.loc22_29.2(%int_2.loc22_25) [template = constants.%int_2.ef8]
  240. // CHECK:STDOUT: %.loc22_29.5: init %i32 = converted %int_2.loc22_25, %int.convert_checked.loc22_29.2 [template = constants.%int_2.ef8]
  241. // CHECK:STDOUT: %int_1.loc22_29: Core.IntLiteral = int_value 1 [template = constants.%int_1.5b8]
  242. // CHECK:STDOUT: %.loc22_29.6: ref %i32 = array_index %a.var, %int_1.loc22_29
  243. // CHECK:STDOUT: %.loc22_29.7: init %i32 = initialize_from %.loc22_29.5 to %.loc22_29.6 [template = constants.%int_2.ef8]
  244. // CHECK:STDOUT: %impl.elem0.loc22_29.3: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  245. // CHECK:STDOUT: %bound_method.loc22_29.3: <bound method> = bound_method %int_3.loc22_28, %impl.elem0.loc22_29.3 [template = constants.%Convert.bound.b30]
  246. // CHECK:STDOUT: %specific_fn.loc22_29.3: <specific function> = specific_function %bound_method.loc22_29.3, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.b42]
  247. // CHECK:STDOUT: %int.convert_checked.loc22_29.3: init %i32 = call %specific_fn.loc22_29.3(%int_3.loc22_28) [template = constants.%int_3.822]
  248. // CHECK:STDOUT: %.loc22_29.8: init %i32 = converted %int_3.loc22_28, %int.convert_checked.loc22_29.3 [template = constants.%int_3.822]
  249. // CHECK:STDOUT: %int_2.loc22_29: Core.IntLiteral = int_value 2 [template = constants.%int_2.ecc]
  250. // CHECK:STDOUT: %.loc22_29.9: ref %i32 = array_index %a.var, %int_2.loc22_29
  251. // CHECK:STDOUT: %.loc22_29.10: init %i32 = initialize_from %.loc22_29.8 to %.loc22_29.9 [template = constants.%int_3.822]
  252. // CHECK:STDOUT: %.loc22_29.11: init %array_type = array_init (%.loc22_29.4, %.loc22_29.7, %.loc22_29.10) to %a.var [template = constants.%array]
  253. // CHECK:STDOUT: %.loc22_3.2: init %array_type = converted %.loc22_29.1, %.loc22_29.11 [template = constants.%array]
  254. // CHECK:STDOUT: assign %a.var, %.loc22_3.2
  255. // CHECK:STDOUT: %.loc22_17: type = splice_block %array_type.loc22 [template = constants.%array_type] {
  256. // CHECK:STDOUT: %int_32.loc22: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  257. // CHECK:STDOUT: %i32.loc22: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  258. // CHECK:STDOUT: %int_3.loc22_16: Core.IntLiteral = int_value 3 [template = constants.%int_3.1ba]
  259. // CHECK:STDOUT: %array_type.loc22: type = array_type %int_3.loc22_16, %i32 [template = constants.%array_type]
  260. // CHECK:STDOUT: }
  261. // CHECK:STDOUT: %a: ref %array_type = bind_name a, %a.var
  262. // CHECK:STDOUT: %a.ref: ref %array_type = name_ref a, %a
  263. // CHECK:STDOUT: %int_0.loc26: Core.IntLiteral = int_value 0 [template = constants.%int_0.5c6]
  264. // CHECK:STDOUT: %int_32.loc26: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  265. // CHECK:STDOUT: %i32.loc26: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  266. // CHECK:STDOUT: %impl.elem0.loc26: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  267. // CHECK:STDOUT: %bound_method.loc26: <bound method> = bound_method %int_0.loc26, %impl.elem0.loc26 [template = constants.%Convert.bound.d04]
  268. // CHECK:STDOUT: %specific_fn.loc26: <specific function> = specific_function %bound_method.loc26, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.d62]
  269. // CHECK:STDOUT: %int.convert_checked.loc26: init %i32 = call %specific_fn.loc26(%int_0.loc26) [template = constants.%int_0.6a9]
  270. // CHECK:STDOUT: %.loc26_5.1: %i32 = value_of_initializer %int.convert_checked.loc26 [template = constants.%int_0.6a9]
  271. // CHECK:STDOUT: %.loc26_5.2: %i32 = converted %int_0.loc26, %.loc26_5.1 [template = constants.%int_0.6a9]
  272. // CHECK:STDOUT: %.loc26_6: ref %i32 = array_index %a.ref, %.loc26_5.2
  273. // CHECK:STDOUT: %b.ref: %array_type = name_ref b, %b
  274. // CHECK:STDOUT: %int_0.loc27: Core.IntLiteral = int_value 0 [template = constants.%int_0.5c6]
  275. // CHECK:STDOUT: %int_32.loc27: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  276. // CHECK:STDOUT: %i32.loc27: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  277. // CHECK:STDOUT: %impl.elem0.loc27: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  278. // CHECK:STDOUT: %bound_method.loc27: <bound method> = bound_method %int_0.loc27, %impl.elem0.loc27 [template = constants.%Convert.bound.d04]
  279. // CHECK:STDOUT: %specific_fn.loc27: <specific function> = specific_function %bound_method.loc27, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.d62]
  280. // CHECK:STDOUT: %int.convert_checked.loc27: init %i32 = call %specific_fn.loc27(%int_0.loc27) [template = constants.%int_0.6a9]
  281. // CHECK:STDOUT: %.loc27_5.1: %i32 = value_of_initializer %int.convert_checked.loc27 [template = constants.%int_0.6a9]
  282. // CHECK:STDOUT: %.loc27_5.2: %i32 = converted %int_0.loc27, %.loc27_5.1 [template = constants.%int_0.6a9]
  283. // CHECK:STDOUT: %.loc27_6.1: ref %array_type = value_as_ref %b.ref
  284. // CHECK:STDOUT: %.loc27_6.2: ref %i32 = array_index %.loc27_6.1, %.loc27_5.2
  285. // CHECK:STDOUT: %.loc27_6.3: %i32 = bind_value %.loc27_6.2
  286. // CHECK:STDOUT: %F.ref: %F.type = name_ref F, file.%F.decl [template = constants.%F]
  287. // CHECK:STDOUT: %.loc28_5.1: ref %array_type = temporary_storage
  288. // CHECK:STDOUT: %F.call: init %array_type = call %F.ref() to %.loc28_5.1
  289. // CHECK:STDOUT: %int_0.loc28: Core.IntLiteral = int_value 0 [template = constants.%int_0.5c6]
  290. // CHECK:STDOUT: %.loc28_5.2: ref %array_type = temporary %.loc28_5.1, %F.call
  291. // CHECK:STDOUT: %int_32.loc28: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  292. // CHECK:STDOUT: %i32.loc28: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  293. // CHECK:STDOUT: %impl.elem0.loc28: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  294. // CHECK:STDOUT: %bound_method.loc28: <bound method> = bound_method %int_0.loc28, %impl.elem0.loc28 [template = constants.%Convert.bound.d04]
  295. // CHECK:STDOUT: %specific_fn.loc28: <specific function> = specific_function %bound_method.loc28, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.d62]
  296. // CHECK:STDOUT: %int.convert_checked.loc28: init %i32 = call %specific_fn.loc28(%int_0.loc28) [template = constants.%int_0.6a9]
  297. // CHECK:STDOUT: %.loc28_7.1: %i32 = value_of_initializer %int.convert_checked.loc28 [template = constants.%int_0.6a9]
  298. // CHECK:STDOUT: %.loc28_7.2: %i32 = converted %int_0.loc28, %.loc28_7.1 [template = constants.%int_0.6a9]
  299. // CHECK:STDOUT: %.loc28_8.1: ref %i32 = array_index %.loc28_5.2, %.loc28_7.2
  300. // CHECK:STDOUT: %.loc28_8.2: %i32 = bind_value %.loc28_8.1
  301. // CHECK:STDOUT: return
  302. // CHECK:STDOUT: }
  303. // CHECK:STDOUT: