constant_condition.carbon 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  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/if_expr/constant_condition.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/if_expr/constant_condition.carbon
  10. fn A() -> i32 { return 1; }
  11. fn B() -> i32 { return 2; }
  12. fn F() -> i32 {
  13. return if true then A() else B();
  14. }
  15. fn G() -> i32 {
  16. return if false then A() else B();
  17. }
  18. fn Constant() -> i32 {
  19. var v: if true then i32 else i32* = 1;
  20. var w: if false then i32 else i32* = &v;
  21. return *w;
  22. }
  23. fn PartiallyConstant(t: type) -> i32 {
  24. var v: if true then i32 else t = 1;
  25. var w: if false then t else i32* = &v;
  26. return *w;
  27. }
  28. // CHECK:STDOUT: --- constant_condition.carbon
  29. // CHECK:STDOUT:
  30. // CHECK:STDOUT: constants {
  31. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template]
  32. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [template]
  33. // CHECK:STDOUT: %A.type: type = fn_type @A [template]
  34. // CHECK:STDOUT: %A: %A.type = struct_value () [template]
  35. // CHECK:STDOUT: %int_1.5b8: Core.IntLiteral = int_value 1 [template]
  36. // CHECK:STDOUT: %ImplicitAs.type.205: type = facet_type <@ImplicitAs, @ImplicitAs(%i32)> [template]
  37. // CHECK:STDOUT: %Convert.type.1b6: type = fn_type @Convert.1, @ImplicitAs(%i32) [template]
  38. // CHECK:STDOUT: %impl_witness.d39: <witness> = impl_witness (imports.%Core.import_ref.a5b), @impl.1(%int_32) [template]
  39. // CHECK:STDOUT: %Convert.type.035: type = fn_type @Convert.2, @impl.1(%int_32) [template]
  40. // CHECK:STDOUT: %Convert.956: %Convert.type.035 = struct_value () [template]
  41. // CHECK:STDOUT: %ImplicitAs.facet: %ImplicitAs.type.205 = facet_value Core.IntLiteral, %impl_witness.d39 [template]
  42. // CHECK:STDOUT: %.a0b: type = fn_type_with_self_type %Convert.type.1b6, %ImplicitAs.facet [template]
  43. // CHECK:STDOUT: %Convert.bound.ab5: <bound method> = bound_method %int_1.5b8, %Convert.956 [template]
  44. // CHECK:STDOUT: %Convert.specific_fn.70c: <specific function> = specific_function %Convert.bound.ab5, @Convert.2(%int_32) [template]
  45. // CHECK:STDOUT: %int_1.5d2: %i32 = int_value 1 [template]
  46. // CHECK:STDOUT: %B.type: type = fn_type @B [template]
  47. // CHECK:STDOUT: %B: %B.type = struct_value () [template]
  48. // CHECK:STDOUT: %int_2.ecc: Core.IntLiteral = int_value 2 [template]
  49. // CHECK:STDOUT: %Convert.bound.ef9: <bound method> = bound_method %int_2.ecc, %Convert.956 [template]
  50. // CHECK:STDOUT: %Convert.specific_fn.787: <specific function> = specific_function %Convert.bound.ef9, @Convert.2(%int_32) [template]
  51. // CHECK:STDOUT: %int_2.ef8: %i32 = int_value 2 [template]
  52. // CHECK:STDOUT: %F.type: type = fn_type @F [template]
  53. // CHECK:STDOUT: %F: %F.type = struct_value () [template]
  54. // CHECK:STDOUT: %true: bool = bool_literal true [template]
  55. // CHECK:STDOUT: %G.type: type = fn_type @G [template]
  56. // CHECK:STDOUT: %G: %G.type = struct_value () [template]
  57. // CHECK:STDOUT: %false: bool = bool_literal false [template]
  58. // CHECK:STDOUT: %Constant.type: type = fn_type @Constant [template]
  59. // CHECK:STDOUT: %Constant: %Constant.type = struct_value () [template]
  60. // CHECK:STDOUT: %ptr: type = ptr_type %i32 [template]
  61. // CHECK:STDOUT: %PartiallyConstant.type: type = fn_type @PartiallyConstant [template]
  62. // CHECK:STDOUT: %PartiallyConstant: %PartiallyConstant.type = struct_value () [template]
  63. // CHECK:STDOUT: }
  64. // CHECK:STDOUT:
  65. // CHECK:STDOUT: imports {
  66. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  67. // CHECK:STDOUT: .Int = %Core.Int
  68. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  69. // CHECK:STDOUT: import Core//prelude
  70. // CHECK:STDOUT: import Core//prelude/...
  71. // CHECK:STDOUT: }
  72. // CHECK:STDOUT: }
  73. // CHECK:STDOUT:
  74. // CHECK:STDOUT: file {
  75. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  76. // CHECK:STDOUT: .Core = imports.%Core
  77. // CHECK:STDOUT: .A = %A.decl
  78. // CHECK:STDOUT: .B = %B.decl
  79. // CHECK:STDOUT: .F = %F.decl
  80. // CHECK:STDOUT: .G = %G.decl
  81. // CHECK:STDOUT: .Constant = %Constant.decl
  82. // CHECK:STDOUT: .PartiallyConstant = %PartiallyConstant.decl
  83. // CHECK:STDOUT: }
  84. // CHECK:STDOUT: %Core.import = import Core
  85. // CHECK:STDOUT: %A.decl: %A.type = fn_decl @A [template = constants.%A] {
  86. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  87. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param0
  88. // CHECK:STDOUT: } {
  89. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  90. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  91. // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param0
  92. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  93. // CHECK:STDOUT: }
  94. // CHECK:STDOUT: %B.decl: %B.type = fn_decl @B [template = constants.%B] {
  95. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  96. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param0
  97. // CHECK:STDOUT: } {
  98. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  99. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  100. // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param0
  101. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  102. // CHECK:STDOUT: }
  103. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {
  104. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  105. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param0
  106. // CHECK:STDOUT: } {
  107. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  108. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  109. // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param0
  110. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  111. // CHECK:STDOUT: }
  112. // CHECK:STDOUT: %G.decl: %G.type = fn_decl @G [template = constants.%G] {
  113. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  114. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param0
  115. // CHECK:STDOUT: } {
  116. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  117. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  118. // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param0
  119. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  120. // CHECK:STDOUT: }
  121. // CHECK:STDOUT: %Constant.decl: %Constant.type = fn_decl @Constant [template = constants.%Constant] {
  122. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  123. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param0
  124. // CHECK:STDOUT: } {
  125. // CHECK:STDOUT: %int_32.loc22: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  126. // CHECK:STDOUT: %i32.loc22: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  127. // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param0
  128. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  129. // CHECK:STDOUT: }
  130. // CHECK:STDOUT: %PartiallyConstant.decl: %PartiallyConstant.type = fn_decl @PartiallyConstant [template = constants.%PartiallyConstant] {
  131. // CHECK:STDOUT: %t.patt: type = binding_pattern t
  132. // CHECK:STDOUT: %t.param_patt: type = value_param_pattern %t.patt, runtime_param0
  133. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  134. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param1
  135. // CHECK:STDOUT: } {
  136. // CHECK:STDOUT: %int_32.loc28: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  137. // CHECK:STDOUT: %i32.loc28: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  138. // CHECK:STDOUT: %t.param: type = value_param runtime_param0
  139. // CHECK:STDOUT: %t: type = bind_name t, %t.param
  140. // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param1
  141. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  142. // CHECK:STDOUT: }
  143. // CHECK:STDOUT: }
  144. // CHECK:STDOUT:
  145. // CHECK:STDOUT: fn @A() -> %i32 {
  146. // CHECK:STDOUT: !entry:
  147. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [template = constants.%int_1.5b8]
  148. // CHECK:STDOUT: %impl.elem0: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  149. // CHECK:STDOUT: %bound_method: <bound method> = bound_method %int_1, %impl.elem0 [template = constants.%Convert.bound.ab5]
  150. // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %bound_method, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.70c]
  151. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %specific_fn(%int_1) [template = constants.%int_1.5d2]
  152. // CHECK:STDOUT: %.loc11_25.1: %i32 = value_of_initializer %int.convert_checked [template = constants.%int_1.5d2]
  153. // CHECK:STDOUT: %.loc11_25.2: %i32 = converted %int_1, %.loc11_25.1 [template = constants.%int_1.5d2]
  154. // CHECK:STDOUT: return %.loc11_25.2
  155. // CHECK:STDOUT: }
  156. // CHECK:STDOUT:
  157. // CHECK:STDOUT: fn @B() -> %i32 {
  158. // CHECK:STDOUT: !entry:
  159. // CHECK:STDOUT: %int_2: Core.IntLiteral = int_value 2 [template = constants.%int_2.ecc]
  160. // CHECK:STDOUT: %impl.elem0: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  161. // CHECK:STDOUT: %bound_method: <bound method> = bound_method %int_2, %impl.elem0 [template = constants.%Convert.bound.ef9]
  162. // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %bound_method, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.787]
  163. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %specific_fn(%int_2) [template = constants.%int_2.ef8]
  164. // CHECK:STDOUT: %.loc12_25.1: %i32 = value_of_initializer %int.convert_checked [template = constants.%int_2.ef8]
  165. // CHECK:STDOUT: %.loc12_25.2: %i32 = converted %int_2, %.loc12_25.1 [template = constants.%int_2.ef8]
  166. // CHECK:STDOUT: return %.loc12_25.2
  167. // CHECK:STDOUT: }
  168. // CHECK:STDOUT:
  169. // CHECK:STDOUT: fn @F() -> %i32 {
  170. // CHECK:STDOUT: !entry:
  171. // CHECK:STDOUT: %true: bool = bool_literal true [template = constants.%true]
  172. // CHECK:STDOUT: if %true br !if.expr.then else br !if.expr.else
  173. // CHECK:STDOUT:
  174. // CHECK:STDOUT: !if.expr.then:
  175. // CHECK:STDOUT: %A.ref: %A.type = name_ref A, file.%A.decl [template = constants.%A]
  176. // CHECK:STDOUT: %A.call: init %i32 = call %A.ref()
  177. // CHECK:STDOUT: %.loc15_25.1: %i32 = value_of_initializer %A.call
  178. // CHECK:STDOUT: %.loc15_25.2: %i32 = converted %A.call, %.loc15_25.1
  179. // CHECK:STDOUT: br !if.expr.result(%.loc15_25.2)
  180. // CHECK:STDOUT:
  181. // CHECK:STDOUT: !if.expr.else:
  182. // CHECK:STDOUT: %B.ref: %B.type = name_ref B, file.%B.decl [template = constants.%B]
  183. // CHECK:STDOUT: %B.call: init %i32 = call %B.ref()
  184. // CHECK:STDOUT: %.loc15_27.1: %i32 = value_of_initializer %B.call
  185. // CHECK:STDOUT: %.loc15_27.2: %i32 = converted %B.call, %.loc15_27.1
  186. // CHECK:STDOUT: br !if.expr.result(%.loc15_27.2)
  187. // CHECK:STDOUT:
  188. // CHECK:STDOUT: !if.expr.result:
  189. // CHECK:STDOUT: %.loc15_10: %i32 = block_arg !if.expr.result
  190. // CHECK:STDOUT: return %.loc15_10
  191. // CHECK:STDOUT: }
  192. // CHECK:STDOUT:
  193. // CHECK:STDOUT: fn @G() -> %i32 {
  194. // CHECK:STDOUT: !entry:
  195. // CHECK:STDOUT: %false: bool = bool_literal false [template = constants.%false]
  196. // CHECK:STDOUT: if %false br !if.expr.then else br !if.expr.else
  197. // CHECK:STDOUT:
  198. // CHECK:STDOUT: !if.expr.then:
  199. // CHECK:STDOUT: %A.ref: %A.type = name_ref A, file.%A.decl [template = constants.%A]
  200. // CHECK:STDOUT: %A.call: init %i32 = call %A.ref()
  201. // CHECK:STDOUT: %.loc19_26.1: %i32 = value_of_initializer %A.call
  202. // CHECK:STDOUT: %.loc19_26.2: %i32 = converted %A.call, %.loc19_26.1
  203. // CHECK:STDOUT: br !if.expr.result(%.loc19_26.2)
  204. // CHECK:STDOUT:
  205. // CHECK:STDOUT: !if.expr.else:
  206. // CHECK:STDOUT: %B.ref: %B.type = name_ref B, file.%B.decl [template = constants.%B]
  207. // CHECK:STDOUT: %B.call: init %i32 = call %B.ref()
  208. // CHECK:STDOUT: %.loc19_28.1: %i32 = value_of_initializer %B.call
  209. // CHECK:STDOUT: %.loc19_28.2: %i32 = converted %B.call, %.loc19_28.1
  210. // CHECK:STDOUT: br !if.expr.result(%.loc19_28.2)
  211. // CHECK:STDOUT:
  212. // CHECK:STDOUT: !if.expr.result:
  213. // CHECK:STDOUT: %.loc19_10: %i32 = block_arg !if.expr.result
  214. // CHECK:STDOUT: return %.loc19_10
  215. // CHECK:STDOUT: }
  216. // CHECK:STDOUT:
  217. // CHECK:STDOUT: fn @Constant() -> %i32 {
  218. // CHECK:STDOUT: !entry:
  219. // CHECK:STDOUT: name_binding_decl {
  220. // CHECK:STDOUT: %v.patt: %i32 = binding_pattern v
  221. // CHECK:STDOUT: %.loc23_3.1: %i32 = var_pattern %v.patt
  222. // CHECK:STDOUT: }
  223. // CHECK:STDOUT: %v.var: ref %i32 = var v
  224. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [template = constants.%int_1.5b8]
  225. // CHECK:STDOUT: %impl.elem0: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  226. // CHECK:STDOUT: %bound_method: <bound method> = bound_method %int_1, %impl.elem0 [template = constants.%Convert.bound.ab5]
  227. // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %bound_method, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.70c]
  228. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %specific_fn(%int_1) [template = constants.%int_1.5d2]
  229. // CHECK:STDOUT: %.loc23_3.2: init %i32 = converted %int_1, %int.convert_checked [template = constants.%int_1.5d2]
  230. // CHECK:STDOUT: assign %v.var, %.loc23_3.2
  231. // CHECK:STDOUT: br !.loc23_13
  232. // CHECK:STDOUT:
  233. // CHECK:STDOUT: !.loc23_13:
  234. // CHECK:STDOUT: %true: bool = bool_literal true [template = constants.%true]
  235. // CHECK:STDOUT: if %true br !if.expr.then.loc23 else br !if.expr.else.loc23
  236. // CHECK:STDOUT:
  237. // CHECK:STDOUT: !if.expr.then.loc23:
  238. // CHECK:STDOUT: %int_32.loc23_23: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  239. // CHECK:STDOUT: %i32.loc23_23: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  240. // CHECK:STDOUT: br !if.expr.result.loc23(%i32.loc23_23)
  241. // CHECK:STDOUT:
  242. // CHECK:STDOUT: !if.expr.else.loc23:
  243. // CHECK:STDOUT: %int_32.loc23_32: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  244. // CHECK:STDOUT: %i32.loc23_32: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  245. // CHECK:STDOUT: %ptr.loc23: type = ptr_type %i32 [template = constants.%ptr]
  246. // CHECK:STDOUT: br !if.expr.result.loc23(%ptr.loc23)
  247. // CHECK:STDOUT:
  248. // CHECK:STDOUT: !if.expr.result.loc23:
  249. // CHECK:STDOUT: %.loc23_10: type = block_arg !if.expr.result.loc23 [template = constants.%i32]
  250. // CHECK:STDOUT: br !.loc23_7
  251. // CHECK:STDOUT:
  252. // CHECK:STDOUT: !.loc23_7:
  253. // CHECK:STDOUT: %v: ref %i32 = bind_name v, %v.var
  254. // CHECK:STDOUT: name_binding_decl {
  255. // CHECK:STDOUT: %w.patt: %ptr = binding_pattern w
  256. // CHECK:STDOUT: %.loc24_3: %ptr = var_pattern %w.patt
  257. // CHECK:STDOUT: }
  258. // CHECK:STDOUT: %w.var: ref %ptr = var w
  259. // CHECK:STDOUT: %v.ref: ref %i32 = name_ref v, %v
  260. // CHECK:STDOUT: %addr: %ptr = addr_of %v.ref
  261. // CHECK:STDOUT: assign %w.var, %addr
  262. // CHECK:STDOUT: br !.loc24_13
  263. // CHECK:STDOUT:
  264. // CHECK:STDOUT: !.loc24_13:
  265. // CHECK:STDOUT: %false: bool = bool_literal false [template = constants.%false]
  266. // CHECK:STDOUT: if %false br !if.expr.then.loc24 else br !if.expr.else.loc24
  267. // CHECK:STDOUT:
  268. // CHECK:STDOUT: !if.expr.then.loc24:
  269. // CHECK:STDOUT: %int_32.loc24_24: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  270. // CHECK:STDOUT: %i32.loc24_24: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  271. // CHECK:STDOUT: br !if.expr.result.loc24(%i32.loc24_24)
  272. // CHECK:STDOUT:
  273. // CHECK:STDOUT: !if.expr.else.loc24:
  274. // CHECK:STDOUT: %int_32.loc24_33: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  275. // CHECK:STDOUT: %i32.loc24_33: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  276. // CHECK:STDOUT: %ptr.loc24: type = ptr_type %i32 [template = constants.%ptr]
  277. // CHECK:STDOUT: br !if.expr.result.loc24(%ptr.loc24)
  278. // CHECK:STDOUT:
  279. // CHECK:STDOUT: !if.expr.result.loc24:
  280. // CHECK:STDOUT: %.loc24_10: type = block_arg !if.expr.result.loc24 [template = constants.%ptr]
  281. // CHECK:STDOUT: br !.loc24_7
  282. // CHECK:STDOUT:
  283. // CHECK:STDOUT: !.loc24_7:
  284. // CHECK:STDOUT: %w: ref %ptr = bind_name w, %w.var
  285. // CHECK:STDOUT: %w.ref: ref %ptr = name_ref w, %w
  286. // CHECK:STDOUT: %.loc25_11: %ptr = bind_value %w.ref
  287. // CHECK:STDOUT: %.loc25_10.1: ref %i32 = deref %.loc25_11
  288. // CHECK:STDOUT: %.loc25_10.2: %i32 = bind_value %.loc25_10.1
  289. // CHECK:STDOUT: return %.loc25_10.2
  290. // CHECK:STDOUT: }
  291. // CHECK:STDOUT:
  292. // CHECK:STDOUT: fn @PartiallyConstant(%t.param_patt: type) -> %i32 {
  293. // CHECK:STDOUT: !entry:
  294. // CHECK:STDOUT: name_binding_decl {
  295. // CHECK:STDOUT: %v.patt: %i32 = binding_pattern v
  296. // CHECK:STDOUT: %.loc29_3.1: %i32 = var_pattern %v.patt
  297. // CHECK:STDOUT: }
  298. // CHECK:STDOUT: %v.var: ref %i32 = var v
  299. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [template = constants.%int_1.5b8]
  300. // CHECK:STDOUT: %impl.elem0: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  301. // CHECK:STDOUT: %bound_method: <bound method> = bound_method %int_1, %impl.elem0 [template = constants.%Convert.bound.ab5]
  302. // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %bound_method, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.70c]
  303. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %specific_fn(%int_1) [template = constants.%int_1.5d2]
  304. // CHECK:STDOUT: %.loc29_3.2: init %i32 = converted %int_1, %int.convert_checked [template = constants.%int_1.5d2]
  305. // CHECK:STDOUT: assign %v.var, %.loc29_3.2
  306. // CHECK:STDOUT: br !.loc29_13
  307. // CHECK:STDOUT:
  308. // CHECK:STDOUT: !.loc29_13:
  309. // CHECK:STDOUT: %true: bool = bool_literal true [template = constants.%true]
  310. // CHECK:STDOUT: if %true br !if.expr.then.loc29 else br !if.expr.else.loc29
  311. // CHECK:STDOUT:
  312. // CHECK:STDOUT: !if.expr.then.loc29:
  313. // CHECK:STDOUT: %int_32.loc29: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  314. // CHECK:STDOUT: %i32.loc29: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  315. // CHECK:STDOUT: br !if.expr.result.loc29(%i32.loc29)
  316. // CHECK:STDOUT:
  317. // CHECK:STDOUT: !if.expr.else.loc29:
  318. // CHECK:STDOUT: %t.ref.loc29: type = name_ref t, %t
  319. // CHECK:STDOUT: br !if.expr.result.loc29(%t.ref.loc29)
  320. // CHECK:STDOUT:
  321. // CHECK:STDOUT: !if.expr.result.loc29:
  322. // CHECK:STDOUT: %.loc29_10: type = block_arg !if.expr.result.loc29 [template = constants.%i32]
  323. // CHECK:STDOUT: br !.loc29_7
  324. // CHECK:STDOUT:
  325. // CHECK:STDOUT: !.loc29_7:
  326. // CHECK:STDOUT: %v: ref %i32 = bind_name v, %v.var
  327. // CHECK:STDOUT: name_binding_decl {
  328. // CHECK:STDOUT: %w.patt: %ptr = binding_pattern w
  329. // CHECK:STDOUT: %.loc30_3: %ptr = var_pattern %w.patt
  330. // CHECK:STDOUT: }
  331. // CHECK:STDOUT: %w.var: ref %ptr = var w
  332. // CHECK:STDOUT: %v.ref: ref %i32 = name_ref v, %v
  333. // CHECK:STDOUT: %addr: %ptr = addr_of %v.ref
  334. // CHECK:STDOUT: assign %w.var, %addr
  335. // CHECK:STDOUT: br !.loc30_13
  336. // CHECK:STDOUT:
  337. // CHECK:STDOUT: !.loc30_13:
  338. // CHECK:STDOUT: %false: bool = bool_literal false [template = constants.%false]
  339. // CHECK:STDOUT: if %false br !if.expr.then.loc30 else br !if.expr.else.loc30
  340. // CHECK:STDOUT:
  341. // CHECK:STDOUT: !if.expr.then.loc30:
  342. // CHECK:STDOUT: %t.ref.loc30: type = name_ref t, %t
  343. // CHECK:STDOUT: br !if.expr.result.loc30(%t.ref.loc30)
  344. // CHECK:STDOUT:
  345. // CHECK:STDOUT: !if.expr.else.loc30:
  346. // CHECK:STDOUT: %int_32.loc30: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  347. // CHECK:STDOUT: %i32.loc30: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  348. // CHECK:STDOUT: %ptr: type = ptr_type %i32 [template = constants.%ptr]
  349. // CHECK:STDOUT: br !if.expr.result.loc30(%ptr)
  350. // CHECK:STDOUT:
  351. // CHECK:STDOUT: !if.expr.result.loc30:
  352. // CHECK:STDOUT: %.loc30_10: type = block_arg !if.expr.result.loc30 [template = constants.%ptr]
  353. // CHECK:STDOUT: br !.loc30_7
  354. // CHECK:STDOUT:
  355. // CHECK:STDOUT: !.loc30_7:
  356. // CHECK:STDOUT: %w: ref %ptr = bind_name w, %w.var
  357. // CHECK:STDOUT: %w.ref: ref %ptr = name_ref w, %w
  358. // CHECK:STDOUT: %.loc31_11: %ptr = bind_value %w.ref
  359. // CHECK:STDOUT: %.loc31_10.1: ref %i32 = deref %.loc31_11
  360. // CHECK:STDOUT: %.loc31_10.2: %i32 = bind_value %.loc31_10.1
  361. // CHECK:STDOUT: return %.loc31_10.2
  362. // CHECK:STDOUT: }
  363. // CHECK:STDOUT: