constant_condition.carbon 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  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: %.1: Core.IntLiteral = int_value 32 [template]
  32. // CHECK:STDOUT: %Int.type: type = fn_type @Int [template]
  33. // CHECK:STDOUT: %Int: %Int.type = struct_value () [template]
  34. // CHECK:STDOUT: %i32: type = int_type signed, %.1 [template]
  35. // CHECK:STDOUT: %A.type: type = fn_type @A [template]
  36. // CHECK:STDOUT: %A: %A.type = struct_value () [template]
  37. // CHECK:STDOUT: %.2: Core.IntLiteral = int_value 1 [template]
  38. // CHECK:STDOUT: %Convert.type.2: type = fn_type @Convert.1, @ImplicitAs(%i32) [template]
  39. // CHECK:STDOUT: %Convert.type.14: type = fn_type @Convert.2, @impl.1(%.1) [template]
  40. // CHECK:STDOUT: %Convert.14: %Convert.type.14 = struct_value () [template]
  41. // CHECK:STDOUT: %.22: <witness> = interface_witness (%Convert.14) [template]
  42. // CHECK:STDOUT: %.23: <bound method> = bound_method %.2, %Convert.14 [template]
  43. // CHECK:STDOUT: %.24: <specific function> = specific_function %.23, @Convert.2(%.1) [template]
  44. // CHECK:STDOUT: %.25: %i32 = int_value 1 [template]
  45. // CHECK:STDOUT: %B.type: type = fn_type @B [template]
  46. // CHECK:STDOUT: %B: %B.type = struct_value () [template]
  47. // CHECK:STDOUT: %.26: Core.IntLiteral = int_value 2 [template]
  48. // CHECK:STDOUT: %.27: <bound method> = bound_method %.26, %Convert.14 [template]
  49. // CHECK:STDOUT: %.28: <specific function> = specific_function %.27, @Convert.2(%.1) [template]
  50. // CHECK:STDOUT: %.29: %i32 = int_value 2 [template]
  51. // CHECK:STDOUT: %F.type: type = fn_type @F [template]
  52. // CHECK:STDOUT: %F: %F.type = struct_value () [template]
  53. // CHECK:STDOUT: %.30: bool = bool_literal true [template]
  54. // CHECK:STDOUT: %G.type: type = fn_type @G [template]
  55. // CHECK:STDOUT: %G: %G.type = struct_value () [template]
  56. // CHECK:STDOUT: %.31: bool = bool_literal false [template]
  57. // CHECK:STDOUT: %Constant.type: type = fn_type @Constant [template]
  58. // CHECK:STDOUT: %Constant: %Constant.type = struct_value () [template]
  59. // CHECK:STDOUT: %.32: type = ptr_type %i32 [template]
  60. // CHECK:STDOUT: %PartiallyConstant.type: type = fn_type @PartiallyConstant [template]
  61. // CHECK:STDOUT: %PartiallyConstant: %PartiallyConstant.type = struct_value () [template]
  62. // CHECK:STDOUT: }
  63. // CHECK:STDOUT:
  64. // CHECK:STDOUT: imports {
  65. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  66. // CHECK:STDOUT: .Int = %import_ref.1
  67. // CHECK:STDOUT: .ImplicitAs = %import_ref.2
  68. // CHECK:STDOUT: import Core//prelude
  69. // CHECK:STDOUT: import Core//prelude/...
  70. // CHECK:STDOUT: }
  71. // CHECK:STDOUT: }
  72. // CHECK:STDOUT:
  73. // CHECK:STDOUT: file {
  74. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  75. // CHECK:STDOUT: .Core = imports.%Core
  76. // CHECK:STDOUT: .A = %A.decl
  77. // CHECK:STDOUT: .B = %B.decl
  78. // CHECK:STDOUT: .F = %F.decl
  79. // CHECK:STDOUT: .G = %G.decl
  80. // CHECK:STDOUT: .Constant = %Constant.decl
  81. // CHECK:STDOUT: .PartiallyConstant = %PartiallyConstant.decl
  82. // CHECK:STDOUT: }
  83. // CHECK:STDOUT: %Core.import = import Core
  84. // CHECK:STDOUT: %A.decl: %A.type = fn_decl @A [template = constants.%A] {
  85. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  86. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param0
  87. // CHECK:STDOUT: } {
  88. // CHECK:STDOUT: %.loc11_11.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  89. // CHECK:STDOUT: %int.make_type_signed: init type = call constants.%Int(%.loc11_11.1) [template = constants.%i32]
  90. // CHECK:STDOUT: %.loc11_11.2: type = value_of_initializer %int.make_type_signed [template = constants.%i32]
  91. // CHECK:STDOUT: %.loc11_11.3: type = converted %int.make_type_signed, %.loc11_11.2 [template = constants.%i32]
  92. // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param0
  93. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  94. // CHECK:STDOUT: }
  95. // CHECK:STDOUT: %B.decl: %B.type = fn_decl @B [template = constants.%B] {
  96. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  97. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param0
  98. // CHECK:STDOUT: } {
  99. // CHECK:STDOUT: %.loc12_11.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  100. // CHECK:STDOUT: %int.make_type_signed: init type = call constants.%Int(%.loc12_11.1) [template = constants.%i32]
  101. // CHECK:STDOUT: %.loc12_11.2: type = value_of_initializer %int.make_type_signed [template = constants.%i32]
  102. // CHECK:STDOUT: %.loc12_11.3: type = converted %int.make_type_signed, %.loc12_11.2 [template = constants.%i32]
  103. // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param0
  104. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  105. // CHECK:STDOUT: }
  106. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {
  107. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  108. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param0
  109. // CHECK:STDOUT: } {
  110. // CHECK:STDOUT: %.loc14_11.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  111. // CHECK:STDOUT: %int.make_type_signed: init type = call constants.%Int(%.loc14_11.1) [template = constants.%i32]
  112. // CHECK:STDOUT: %.loc14_11.2: type = value_of_initializer %int.make_type_signed [template = constants.%i32]
  113. // CHECK:STDOUT: %.loc14_11.3: type = converted %int.make_type_signed, %.loc14_11.2 [template = constants.%i32]
  114. // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param0
  115. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  116. // CHECK:STDOUT: }
  117. // CHECK:STDOUT: %G.decl: %G.type = fn_decl @G [template = constants.%G] {
  118. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  119. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param0
  120. // CHECK:STDOUT: } {
  121. // CHECK:STDOUT: %.loc18_11.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  122. // CHECK:STDOUT: %int.make_type_signed: init type = call constants.%Int(%.loc18_11.1) [template = constants.%i32]
  123. // CHECK:STDOUT: %.loc18_11.2: type = value_of_initializer %int.make_type_signed [template = constants.%i32]
  124. // CHECK:STDOUT: %.loc18_11.3: type = converted %int.make_type_signed, %.loc18_11.2 [template = constants.%i32]
  125. // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param0
  126. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  127. // CHECK:STDOUT: }
  128. // CHECK:STDOUT: %Constant.decl: %Constant.type = fn_decl @Constant [template = constants.%Constant] {
  129. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  130. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param0
  131. // CHECK:STDOUT: } {
  132. // CHECK:STDOUT: %.loc22_18.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  133. // CHECK:STDOUT: %int.make_type_signed.loc22: init type = call constants.%Int(%.loc22_18.1) [template = constants.%i32]
  134. // CHECK:STDOUT: %.loc22_18.2: type = value_of_initializer %int.make_type_signed.loc22 [template = constants.%i32]
  135. // CHECK:STDOUT: %.loc22_18.3: type = converted %int.make_type_signed.loc22, %.loc22_18.2 [template = constants.%i32]
  136. // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param0
  137. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  138. // CHECK:STDOUT: }
  139. // CHECK:STDOUT: %PartiallyConstant.decl: %PartiallyConstant.type = fn_decl @PartiallyConstant [template = constants.%PartiallyConstant] {
  140. // CHECK:STDOUT: %t.patt: type = binding_pattern t
  141. // CHECK:STDOUT: %t.param_patt: type = value_param_pattern %t.patt, runtime_param0
  142. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  143. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param1
  144. // CHECK:STDOUT: } {
  145. // CHECK:STDOUT: %.loc28_34.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  146. // CHECK:STDOUT: %int.make_type_signed.loc28: init type = call constants.%Int(%.loc28_34.1) [template = constants.%i32]
  147. // CHECK:STDOUT: %.loc28_34.2: type = value_of_initializer %int.make_type_signed.loc28 [template = constants.%i32]
  148. // CHECK:STDOUT: %.loc28_34.3: type = converted %int.make_type_signed.loc28, %.loc28_34.2 [template = constants.%i32]
  149. // CHECK:STDOUT: %t.param: type = value_param runtime_param0
  150. // CHECK:STDOUT: %t: type = bind_name t, %t.param
  151. // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param1
  152. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  153. // CHECK:STDOUT: }
  154. // CHECK:STDOUT: }
  155. // CHECK:STDOUT:
  156. // CHECK:STDOUT: fn @A() -> %i32 {
  157. // CHECK:STDOUT: !entry:
  158. // CHECK:STDOUT: %.loc11_24: Core.IntLiteral = int_value 1 [template = constants.%.2]
  159. // CHECK:STDOUT: %.loc11_25.1: %Convert.type.2 = interface_witness_access constants.%.22, element0 [template = constants.%Convert.14]
  160. // CHECK:STDOUT: %.loc11_25.2: <bound method> = bound_method %.loc11_24, %.loc11_25.1 [template = constants.%.23]
  161. // CHECK:STDOUT: %.loc11_25.3: <specific function> = specific_function %.loc11_25.2, @Convert.2(constants.%.1) [template = constants.%.24]
  162. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %.loc11_25.3(%.loc11_24) [template = constants.%.25]
  163. // CHECK:STDOUT: %.loc11_25.4: %i32 = value_of_initializer %int.convert_checked [template = constants.%.25]
  164. // CHECK:STDOUT: %.loc11_25.5: %i32 = converted %.loc11_24, %.loc11_25.4 [template = constants.%.25]
  165. // CHECK:STDOUT: return %.loc11_25.5
  166. // CHECK:STDOUT: }
  167. // CHECK:STDOUT:
  168. // CHECK:STDOUT: fn @B() -> %i32 {
  169. // CHECK:STDOUT: !entry:
  170. // CHECK:STDOUT: %.loc12_24: Core.IntLiteral = int_value 2 [template = constants.%.26]
  171. // CHECK:STDOUT: %.loc12_25.1: %Convert.type.2 = interface_witness_access constants.%.22, element0 [template = constants.%Convert.14]
  172. // CHECK:STDOUT: %.loc12_25.2: <bound method> = bound_method %.loc12_24, %.loc12_25.1 [template = constants.%.27]
  173. // CHECK:STDOUT: %.loc12_25.3: <specific function> = specific_function %.loc12_25.2, @Convert.2(constants.%.1) [template = constants.%.28]
  174. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %.loc12_25.3(%.loc12_24) [template = constants.%.29]
  175. // CHECK:STDOUT: %.loc12_25.4: %i32 = value_of_initializer %int.convert_checked [template = constants.%.29]
  176. // CHECK:STDOUT: %.loc12_25.5: %i32 = converted %.loc12_24, %.loc12_25.4 [template = constants.%.29]
  177. // CHECK:STDOUT: return %.loc12_25.5
  178. // CHECK:STDOUT: }
  179. // CHECK:STDOUT:
  180. // CHECK:STDOUT: fn @F() -> %i32 {
  181. // CHECK:STDOUT: !entry:
  182. // CHECK:STDOUT: %.loc15_13: bool = bool_literal true [template = constants.%.30]
  183. // CHECK:STDOUT: if %.loc15_13 br !if.expr.then else br !if.expr.else
  184. // CHECK:STDOUT:
  185. // CHECK:STDOUT: !if.expr.then:
  186. // CHECK:STDOUT: %A.ref: %A.type = name_ref A, file.%A.decl [template = constants.%A]
  187. // CHECK:STDOUT: %A.call: init %i32 = call %A.ref()
  188. // CHECK:STDOUT: %.loc15_24.1: %i32 = value_of_initializer %A.call
  189. // CHECK:STDOUT: %.loc15_24.2: %i32 = converted %A.call, %.loc15_24.1
  190. // CHECK:STDOUT: br !if.expr.result(%.loc15_24.2)
  191. // CHECK:STDOUT:
  192. // CHECK:STDOUT: !if.expr.else:
  193. // CHECK:STDOUT: %B.ref: %B.type = name_ref B, file.%B.decl [template = constants.%B]
  194. // CHECK:STDOUT: %B.call: init %i32 = call %B.ref()
  195. // CHECK:STDOUT: %.loc15_27.1: %i32 = value_of_initializer %B.call
  196. // CHECK:STDOUT: %.loc15_27.2: %i32 = converted %B.call, %.loc15_27.1
  197. // CHECK:STDOUT: br !if.expr.result(%.loc15_27.2)
  198. // CHECK:STDOUT:
  199. // CHECK:STDOUT: !if.expr.result:
  200. // CHECK:STDOUT: %.loc15_10: %i32 = block_arg !if.expr.result
  201. // CHECK:STDOUT: return %.loc15_10
  202. // CHECK:STDOUT: }
  203. // CHECK:STDOUT:
  204. // CHECK:STDOUT: fn @G() -> %i32 {
  205. // CHECK:STDOUT: !entry:
  206. // CHECK:STDOUT: %.loc19_13: bool = bool_literal false [template = constants.%.31]
  207. // CHECK:STDOUT: if %.loc19_13 br !if.expr.then else br !if.expr.else
  208. // CHECK:STDOUT:
  209. // CHECK:STDOUT: !if.expr.then:
  210. // CHECK:STDOUT: %A.ref: %A.type = name_ref A, file.%A.decl [template = constants.%A]
  211. // CHECK:STDOUT: %A.call: init %i32 = call %A.ref()
  212. // CHECK:STDOUT: %.loc19_25.1: %i32 = value_of_initializer %A.call
  213. // CHECK:STDOUT: %.loc19_25.2: %i32 = converted %A.call, %.loc19_25.1
  214. // CHECK:STDOUT: br !if.expr.result(%.loc19_25.2)
  215. // CHECK:STDOUT:
  216. // CHECK:STDOUT: !if.expr.else:
  217. // CHECK:STDOUT: %B.ref: %B.type = name_ref B, file.%B.decl [template = constants.%B]
  218. // CHECK:STDOUT: %B.call: init %i32 = call %B.ref()
  219. // CHECK:STDOUT: %.loc19_28.1: %i32 = value_of_initializer %B.call
  220. // CHECK:STDOUT: %.loc19_28.2: %i32 = converted %B.call, %.loc19_28.1
  221. // CHECK:STDOUT: br !if.expr.result(%.loc19_28.2)
  222. // CHECK:STDOUT:
  223. // CHECK:STDOUT: !if.expr.result:
  224. // CHECK:STDOUT: %.loc19_10: %i32 = block_arg !if.expr.result
  225. // CHECK:STDOUT: return %.loc19_10
  226. // CHECK:STDOUT: }
  227. // CHECK:STDOUT:
  228. // CHECK:STDOUT: fn @Constant() -> %i32 {
  229. // CHECK:STDOUT: !entry:
  230. // CHECK:STDOUT: %.loc23_13: bool = bool_literal true [template = constants.%.30]
  231. // CHECK:STDOUT: if %.loc23_13 br !if.expr.then.loc23 else br !if.expr.else.loc23
  232. // CHECK:STDOUT:
  233. // CHECK:STDOUT: !if.expr.then.loc23:
  234. // CHECK:STDOUT: %.loc23_23.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  235. // CHECK:STDOUT: %int.make_type_signed.loc23_23: init type = call constants.%Int(%.loc23_23.1) [template = constants.%i32]
  236. // CHECK:STDOUT: %.loc23_23.2: type = value_of_initializer %int.make_type_signed.loc23_23 [template = constants.%i32]
  237. // CHECK:STDOUT: %.loc23_23.3: type = converted %int.make_type_signed.loc23_23, %.loc23_23.2 [template = constants.%i32]
  238. // CHECK:STDOUT: br !if.expr.result.loc23(%.loc23_23.3)
  239. // CHECK:STDOUT:
  240. // CHECK:STDOUT: !if.expr.else.loc23:
  241. // CHECK:STDOUT: %.loc23_32: Core.IntLiteral = int_value 32 [template = constants.%.1]
  242. // CHECK:STDOUT: %int.make_type_signed.loc23_32: init type = call constants.%Int(%.loc23_32) [template = constants.%i32]
  243. // CHECK:STDOUT: %.loc23_35.1: type = value_of_initializer %int.make_type_signed.loc23_32 [template = constants.%i32]
  244. // CHECK:STDOUT: %.loc23_35.2: type = converted %int.make_type_signed.loc23_32, %.loc23_35.1 [template = constants.%i32]
  245. // CHECK:STDOUT: %.loc23_35.3: type = ptr_type %i32 [template = constants.%.32]
  246. // CHECK:STDOUT: br !if.expr.result.loc23(%.loc23_35.3)
  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: %v.var: ref %i32 = var v
  251. // CHECK:STDOUT: %v: ref %i32 = bind_name v, %v.var
  252. // CHECK:STDOUT: %.loc23_39: Core.IntLiteral = int_value 1 [template = constants.%.2]
  253. // CHECK:STDOUT: %.loc23_40.1: %Convert.type.2 = interface_witness_access constants.%.22, element0 [template = constants.%Convert.14]
  254. // CHECK:STDOUT: %.loc23_40.2: <bound method> = bound_method %.loc23_39, %.loc23_40.1 [template = constants.%.23]
  255. // CHECK:STDOUT: %.loc23_40.3: <specific function> = specific_function %.loc23_40.2, @Convert.2(constants.%.1) [template = constants.%.24]
  256. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %.loc23_40.3(%.loc23_39) [template = constants.%.25]
  257. // CHECK:STDOUT: %.loc23_40.4: init %i32 = converted %.loc23_39, %int.convert_checked [template = constants.%.25]
  258. // CHECK:STDOUT: assign %v.var, %.loc23_40.4
  259. // CHECK:STDOUT: %.loc24_13: bool = bool_literal false [template = constants.%.31]
  260. // CHECK:STDOUT: if %.loc24_13 br !if.expr.then.loc24 else br !if.expr.else.loc24
  261. // CHECK:STDOUT:
  262. // CHECK:STDOUT: !if.expr.then.loc24:
  263. // CHECK:STDOUT: %.loc24_24.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  264. // CHECK:STDOUT: %int.make_type_signed.loc24_24: init type = call constants.%Int(%.loc24_24.1) [template = constants.%i32]
  265. // CHECK:STDOUT: %.loc24_24.2: type = value_of_initializer %int.make_type_signed.loc24_24 [template = constants.%i32]
  266. // CHECK:STDOUT: %.loc24_24.3: type = converted %int.make_type_signed.loc24_24, %.loc24_24.2 [template = constants.%i32]
  267. // CHECK:STDOUT: br !if.expr.result.loc24(%.loc24_24.3)
  268. // CHECK:STDOUT:
  269. // CHECK:STDOUT: !if.expr.else.loc24:
  270. // CHECK:STDOUT: %.loc24_33: Core.IntLiteral = int_value 32 [template = constants.%.1]
  271. // CHECK:STDOUT: %int.make_type_signed.loc24_33: init type = call constants.%Int(%.loc24_33) [template = constants.%i32]
  272. // CHECK:STDOUT: %.loc24_36.1: type = value_of_initializer %int.make_type_signed.loc24_33 [template = constants.%i32]
  273. // CHECK:STDOUT: %.loc24_36.2: type = converted %int.make_type_signed.loc24_33, %.loc24_36.1 [template = constants.%i32]
  274. // CHECK:STDOUT: %.loc24_36.3: type = ptr_type %i32 [template = constants.%.32]
  275. // CHECK:STDOUT: br !if.expr.result.loc24(%.loc24_36.3)
  276. // CHECK:STDOUT:
  277. // CHECK:STDOUT: !if.expr.result.loc24:
  278. // CHECK:STDOUT: %.loc24_10: type = block_arg !if.expr.result.loc24 [template = constants.%.32]
  279. // CHECK:STDOUT: %w.var: ref %.32 = var w
  280. // CHECK:STDOUT: %w: ref %.32 = bind_name w, %w.var
  281. // CHECK:STDOUT: %v.ref: ref %i32 = name_ref v, %v
  282. // CHECK:STDOUT: %.loc24_40: %.32 = addr_of %v.ref
  283. // CHECK:STDOUT: assign %w.var, %.loc24_40
  284. // CHECK:STDOUT: %w.ref: ref %.32 = name_ref w, %w
  285. // CHECK:STDOUT: %.loc25_11: %.32 = bind_value %w.ref
  286. // CHECK:STDOUT: %.loc25_10.1: ref %i32 = deref %.loc25_11
  287. // CHECK:STDOUT: %.loc25_10.2: %i32 = bind_value %.loc25_10.1
  288. // CHECK:STDOUT: return %.loc25_10.2
  289. // CHECK:STDOUT: }
  290. // CHECK:STDOUT:
  291. // CHECK:STDOUT: fn @PartiallyConstant(%t.param_patt: type) -> %i32 {
  292. // CHECK:STDOUT: !entry:
  293. // CHECK:STDOUT: %.loc29_13: bool = bool_literal true [template = constants.%.30]
  294. // CHECK:STDOUT: if %.loc29_13 br !if.expr.then.loc29 else br !if.expr.else.loc29
  295. // CHECK:STDOUT:
  296. // CHECK:STDOUT: !if.expr.then.loc29:
  297. // CHECK:STDOUT: %.loc29_23.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  298. // CHECK:STDOUT: %int.make_type_signed.loc29: init type = call constants.%Int(%.loc29_23.1) [template = constants.%i32]
  299. // CHECK:STDOUT: %.loc29_23.2: type = value_of_initializer %int.make_type_signed.loc29 [template = constants.%i32]
  300. // CHECK:STDOUT: %.loc29_23.3: type = converted %int.make_type_signed.loc29, %.loc29_23.2 [template = constants.%i32]
  301. // CHECK:STDOUT: br !if.expr.result.loc29(%.loc29_23.3)
  302. // CHECK:STDOUT:
  303. // CHECK:STDOUT: !if.expr.else.loc29:
  304. // CHECK:STDOUT: %t.ref.loc29: type = name_ref t, %t
  305. // CHECK:STDOUT: br !if.expr.result.loc29(%t.ref.loc29)
  306. // CHECK:STDOUT:
  307. // CHECK:STDOUT: !if.expr.result.loc29:
  308. // CHECK:STDOUT: %.loc29_10: type = block_arg !if.expr.result.loc29 [template = constants.%i32]
  309. // CHECK:STDOUT: %v.var: ref %i32 = var v
  310. // CHECK:STDOUT: %v: ref %i32 = bind_name v, %v.var
  311. // CHECK:STDOUT: %.loc29_36: Core.IntLiteral = int_value 1 [template = constants.%.2]
  312. // CHECK:STDOUT: %.loc29_37.1: %Convert.type.2 = interface_witness_access constants.%.22, element0 [template = constants.%Convert.14]
  313. // CHECK:STDOUT: %.loc29_37.2: <bound method> = bound_method %.loc29_36, %.loc29_37.1 [template = constants.%.23]
  314. // CHECK:STDOUT: %.loc29_37.3: <specific function> = specific_function %.loc29_37.2, @Convert.2(constants.%.1) [template = constants.%.24]
  315. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %.loc29_37.3(%.loc29_36) [template = constants.%.25]
  316. // CHECK:STDOUT: %.loc29_37.4: init %i32 = converted %.loc29_36, %int.convert_checked [template = constants.%.25]
  317. // CHECK:STDOUT: assign %v.var, %.loc29_37.4
  318. // CHECK:STDOUT: %.loc30_13: bool = bool_literal false [template = constants.%.31]
  319. // CHECK:STDOUT: if %.loc30_13 br !if.expr.then.loc30 else br !if.expr.else.loc30
  320. // CHECK:STDOUT:
  321. // CHECK:STDOUT: !if.expr.then.loc30:
  322. // CHECK:STDOUT: %t.ref.loc30: type = name_ref t, %t
  323. // CHECK:STDOUT: br !if.expr.result.loc30(%t.ref.loc30)
  324. // CHECK:STDOUT:
  325. // CHECK:STDOUT: !if.expr.else.loc30:
  326. // CHECK:STDOUT: %.loc30_31: Core.IntLiteral = int_value 32 [template = constants.%.1]
  327. // CHECK:STDOUT: %int.make_type_signed.loc30: init type = call constants.%Int(%.loc30_31) [template = constants.%i32]
  328. // CHECK:STDOUT: %.loc30_34.1: type = value_of_initializer %int.make_type_signed.loc30 [template = constants.%i32]
  329. // CHECK:STDOUT: %.loc30_34.2: type = converted %int.make_type_signed.loc30, %.loc30_34.1 [template = constants.%i32]
  330. // CHECK:STDOUT: %.loc30_34.3: type = ptr_type %i32 [template = constants.%.32]
  331. // CHECK:STDOUT: br !if.expr.result.loc30(%.loc30_34.3)
  332. // CHECK:STDOUT:
  333. // CHECK:STDOUT: !if.expr.result.loc30:
  334. // CHECK:STDOUT: %.loc30_10: type = block_arg !if.expr.result.loc30 [template = constants.%.32]
  335. // CHECK:STDOUT: %w.var: ref %.32 = var w
  336. // CHECK:STDOUT: %w: ref %.32 = bind_name w, %w.var
  337. // CHECK:STDOUT: %v.ref: ref %i32 = name_ref v, %v
  338. // CHECK:STDOUT: %.loc30_38: %.32 = addr_of %v.ref
  339. // CHECK:STDOUT: assign %w.var, %.loc30_38
  340. // CHECK:STDOUT: %w.ref: ref %.32 = name_ref w, %w
  341. // CHECK:STDOUT: %.loc31_11: %.32 = bind_value %w.ref
  342. // CHECK:STDOUT: %.loc31_10.1: ref %i32 = deref %.loc31_11
  343. // CHECK:STDOUT: %.loc31_10.2: %i32 = bind_value %.loc31_10.1
  344. // CHECK:STDOUT: return %.loc31_10.2
  345. // CHECK:STDOUT: }
  346. // CHECK:STDOUT: