| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- // AUTOUPDATE
- // TIP: To test this file alone, run:
- // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/if_expr/constant_condition.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/if_expr/constant_condition.carbon
- fn A() -> i32 { return 1; }
- fn B() -> i32 { return 2; }
- fn F() -> i32 {
- return if true then A() else B();
- }
- fn G() -> i32 {
- return if false then A() else B();
- }
- fn Constant() -> i32 {
- var v: if true then i32 else i32* = 1;
- var w: if false then i32 else i32* = &v;
- return *w;
- }
- fn PartiallyConstant(t: type) -> i32 {
- var v: if true then i32 else t = 1;
- var w: if false then t else i32* = &v;
- return *w;
- }
- // CHECK:STDOUT: --- constant_condition.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template]
- // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [template]
- // CHECK:STDOUT: %A.type: type = fn_type @A [template]
- // CHECK:STDOUT: %A: %A.type = struct_value () [template]
- // CHECK:STDOUT: %int_1.5b8: Core.IntLiteral = int_value 1 [template]
- // CHECK:STDOUT: %ImplicitAs.type.205: type = facet_type <@ImplicitAs, @ImplicitAs(%i32)> [template]
- // CHECK:STDOUT: %Convert.type.1b6: type = fn_type @Convert.1, @ImplicitAs(%i32) [template]
- // CHECK:STDOUT: %impl_witness.d39: <witness> = impl_witness (imports.%Core.import_ref.a5b), @impl.1(%int_32) [template]
- // CHECK:STDOUT: %Convert.type.035: type = fn_type @Convert.2, @impl.1(%int_32) [template]
- // CHECK:STDOUT: %Convert.956: %Convert.type.035 = struct_value () [template]
- // CHECK:STDOUT: %ImplicitAs.facet: %ImplicitAs.type.205 = facet_value Core.IntLiteral, %impl_witness.d39 [template]
- // CHECK:STDOUT: %.a0b: type = fn_type_with_self_type %Convert.type.1b6, %ImplicitAs.facet [template]
- // CHECK:STDOUT: %Convert.bound.ab5: <bound method> = bound_method %int_1.5b8, %Convert.956 [template]
- // CHECK:STDOUT: %Convert.specific_fn.70c: <specific function> = specific_function %Convert.bound.ab5, @Convert.2(%int_32) [template]
- // CHECK:STDOUT: %int_1.5d2: %i32 = int_value 1 [template]
- // CHECK:STDOUT: %B.type: type = fn_type @B [template]
- // CHECK:STDOUT: %B: %B.type = struct_value () [template]
- // CHECK:STDOUT: %int_2.ecc: Core.IntLiteral = int_value 2 [template]
- // CHECK:STDOUT: %Convert.bound.ef9: <bound method> = bound_method %int_2.ecc, %Convert.956 [template]
- // CHECK:STDOUT: %Convert.specific_fn.787: <specific function> = specific_function %Convert.bound.ef9, @Convert.2(%int_32) [template]
- // CHECK:STDOUT: %int_2.ef8: %i32 = int_value 2 [template]
- // CHECK:STDOUT: %F.type: type = fn_type @F [template]
- // CHECK:STDOUT: %F: %F.type = struct_value () [template]
- // CHECK:STDOUT: %true: bool = bool_literal true [template]
- // CHECK:STDOUT: %G.type: type = fn_type @G [template]
- // CHECK:STDOUT: %G: %G.type = struct_value () [template]
- // CHECK:STDOUT: %false: bool = bool_literal false [template]
- // CHECK:STDOUT: %Constant.type: type = fn_type @Constant [template]
- // CHECK:STDOUT: %Constant: %Constant.type = struct_value () [template]
- // CHECK:STDOUT: %ptr: type = ptr_type %i32 [template]
- // CHECK:STDOUT: %PartiallyConstant.type: type = fn_type @PartiallyConstant [template]
- // CHECK:STDOUT: %PartiallyConstant: %PartiallyConstant.type = struct_value () [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: imports {
- // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
- // CHECK:STDOUT: .Int = %Core.Int
- // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
- // CHECK:STDOUT: import Core//prelude
- // CHECK:STDOUT: import Core//prelude/...
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .Core = imports.%Core
- // CHECK:STDOUT: .A = %A.decl
- // CHECK:STDOUT: .B = %B.decl
- // CHECK:STDOUT: .F = %F.decl
- // CHECK:STDOUT: .G = %G.decl
- // CHECK:STDOUT: .Constant = %Constant.decl
- // CHECK:STDOUT: .PartiallyConstant = %PartiallyConstant.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core.import = import Core
- // CHECK:STDOUT: %A.decl: %A.type = fn_decl @A [template = constants.%A] {
- // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
- // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param0
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template = constants.%int_32]
- // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
- // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param0
- // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %B.decl: %B.type = fn_decl @B [template = constants.%B] {
- // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
- // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param0
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template = constants.%int_32]
- // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
- // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param0
- // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {
- // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
- // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param0
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template = constants.%int_32]
- // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
- // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param0
- // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %G.decl: %G.type = fn_decl @G [template = constants.%G] {
- // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
- // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param0
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template = constants.%int_32]
- // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
- // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param0
- // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Constant.decl: %Constant.type = fn_decl @Constant [template = constants.%Constant] {
- // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
- // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param0
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %int_32.loc22: Core.IntLiteral = int_value 32 [template = constants.%int_32]
- // CHECK:STDOUT: %i32.loc22: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
- // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param0
- // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %PartiallyConstant.decl: %PartiallyConstant.type = fn_decl @PartiallyConstant [template = constants.%PartiallyConstant] {
- // CHECK:STDOUT: %t.patt: type = binding_pattern t
- // CHECK:STDOUT: %t.param_patt: type = value_param_pattern %t.patt, runtime_param0
- // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
- // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param1
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %int_32.loc28: Core.IntLiteral = int_value 32 [template = constants.%int_32]
- // CHECK:STDOUT: %i32.loc28: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
- // CHECK:STDOUT: %t.param: type = value_param runtime_param0
- // CHECK:STDOUT: %t: type = bind_name t, %t.param
- // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param1
- // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @A() -> %i32 {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [template = constants.%int_1.5b8]
- // CHECK:STDOUT: %impl.elem0: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
- // CHECK:STDOUT: %bound_method: <bound method> = bound_method %int_1, %impl.elem0 [template = constants.%Convert.bound.ab5]
- // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %bound_method, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.70c]
- // CHECK:STDOUT: %int.convert_checked: init %i32 = call %specific_fn(%int_1) [template = constants.%int_1.5d2]
- // CHECK:STDOUT: %.loc11_25.1: %i32 = value_of_initializer %int.convert_checked [template = constants.%int_1.5d2]
- // CHECK:STDOUT: %.loc11_25.2: %i32 = converted %int_1, %.loc11_25.1 [template = constants.%int_1.5d2]
- // CHECK:STDOUT: return %.loc11_25.2
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @B() -> %i32 {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %int_2: Core.IntLiteral = int_value 2 [template = constants.%int_2.ecc]
- // CHECK:STDOUT: %impl.elem0: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
- // CHECK:STDOUT: %bound_method: <bound method> = bound_method %int_2, %impl.elem0 [template = constants.%Convert.bound.ef9]
- // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %bound_method, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.787]
- // CHECK:STDOUT: %int.convert_checked: init %i32 = call %specific_fn(%int_2) [template = constants.%int_2.ef8]
- // CHECK:STDOUT: %.loc12_25.1: %i32 = value_of_initializer %int.convert_checked [template = constants.%int_2.ef8]
- // CHECK:STDOUT: %.loc12_25.2: %i32 = converted %int_2, %.loc12_25.1 [template = constants.%int_2.ef8]
- // CHECK:STDOUT: return %.loc12_25.2
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @F() -> %i32 {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %true: bool = bool_literal true [template = constants.%true]
- // CHECK:STDOUT: if %true br !if.expr.then else br !if.expr.else
- // CHECK:STDOUT:
- // CHECK:STDOUT: !if.expr.then:
- // CHECK:STDOUT: %A.ref: %A.type = name_ref A, file.%A.decl [template = constants.%A]
- // CHECK:STDOUT: %A.call: init %i32 = call %A.ref()
- // CHECK:STDOUT: %.loc15_25.1: %i32 = value_of_initializer %A.call
- // CHECK:STDOUT: %.loc15_25.2: %i32 = converted %A.call, %.loc15_25.1
- // CHECK:STDOUT: br !if.expr.result(%.loc15_25.2)
- // CHECK:STDOUT:
- // CHECK:STDOUT: !if.expr.else:
- // CHECK:STDOUT: %B.ref: %B.type = name_ref B, file.%B.decl [template = constants.%B]
- // CHECK:STDOUT: %B.call: init %i32 = call %B.ref()
- // CHECK:STDOUT: %.loc15_27.1: %i32 = value_of_initializer %B.call
- // CHECK:STDOUT: %.loc15_27.2: %i32 = converted %B.call, %.loc15_27.1
- // CHECK:STDOUT: br !if.expr.result(%.loc15_27.2)
- // CHECK:STDOUT:
- // CHECK:STDOUT: !if.expr.result:
- // CHECK:STDOUT: %.loc15_10: %i32 = block_arg !if.expr.result
- // CHECK:STDOUT: return %.loc15_10
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @G() -> %i32 {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %false: bool = bool_literal false [template = constants.%false]
- // CHECK:STDOUT: if %false br !if.expr.then else br !if.expr.else
- // CHECK:STDOUT:
- // CHECK:STDOUT: !if.expr.then:
- // CHECK:STDOUT: %A.ref: %A.type = name_ref A, file.%A.decl [template = constants.%A]
- // CHECK:STDOUT: %A.call: init %i32 = call %A.ref()
- // CHECK:STDOUT: %.loc19_26.1: %i32 = value_of_initializer %A.call
- // CHECK:STDOUT: %.loc19_26.2: %i32 = converted %A.call, %.loc19_26.1
- // CHECK:STDOUT: br !if.expr.result(%.loc19_26.2)
- // CHECK:STDOUT:
- // CHECK:STDOUT: !if.expr.else:
- // CHECK:STDOUT: %B.ref: %B.type = name_ref B, file.%B.decl [template = constants.%B]
- // CHECK:STDOUT: %B.call: init %i32 = call %B.ref()
- // CHECK:STDOUT: %.loc19_28.1: %i32 = value_of_initializer %B.call
- // CHECK:STDOUT: %.loc19_28.2: %i32 = converted %B.call, %.loc19_28.1
- // CHECK:STDOUT: br !if.expr.result(%.loc19_28.2)
- // CHECK:STDOUT:
- // CHECK:STDOUT: !if.expr.result:
- // CHECK:STDOUT: %.loc19_10: %i32 = block_arg !if.expr.result
- // CHECK:STDOUT: return %.loc19_10
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @Constant() -> %i32 {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: name_binding_decl {
- // CHECK:STDOUT: %v.patt: %i32 = binding_pattern v
- // CHECK:STDOUT: %.loc23_3.1: %i32 = var_pattern %v.patt
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %v.var: ref %i32 = var v
- // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [template = constants.%int_1.5b8]
- // CHECK:STDOUT: %impl.elem0: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
- // CHECK:STDOUT: %bound_method: <bound method> = bound_method %int_1, %impl.elem0 [template = constants.%Convert.bound.ab5]
- // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %bound_method, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.70c]
- // CHECK:STDOUT: %int.convert_checked: init %i32 = call %specific_fn(%int_1) [template = constants.%int_1.5d2]
- // CHECK:STDOUT: %.loc23_3.2: init %i32 = converted %int_1, %int.convert_checked [template = constants.%int_1.5d2]
- // CHECK:STDOUT: assign %v.var, %.loc23_3.2
- // CHECK:STDOUT: br !.loc23_13
- // CHECK:STDOUT:
- // CHECK:STDOUT: !.loc23_13:
- // CHECK:STDOUT: %true: bool = bool_literal true [template = constants.%true]
- // CHECK:STDOUT: if %true br !if.expr.then.loc23 else br !if.expr.else.loc23
- // CHECK:STDOUT:
- // CHECK:STDOUT: !if.expr.then.loc23:
- // CHECK:STDOUT: %int_32.loc23_23: Core.IntLiteral = int_value 32 [template = constants.%int_32]
- // CHECK:STDOUT: %i32.loc23_23: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
- // CHECK:STDOUT: br !if.expr.result.loc23(%i32.loc23_23)
- // CHECK:STDOUT:
- // CHECK:STDOUT: !if.expr.else.loc23:
- // CHECK:STDOUT: %int_32.loc23_32: Core.IntLiteral = int_value 32 [template = constants.%int_32]
- // CHECK:STDOUT: %i32.loc23_32: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
- // CHECK:STDOUT: %ptr.loc23: type = ptr_type %i32 [template = constants.%ptr]
- // CHECK:STDOUT: br !if.expr.result.loc23(%ptr.loc23)
- // CHECK:STDOUT:
- // CHECK:STDOUT: !if.expr.result.loc23:
- // CHECK:STDOUT: %.loc23_10: type = block_arg !if.expr.result.loc23 [template = constants.%i32]
- // CHECK:STDOUT: br !.loc23_7
- // CHECK:STDOUT:
- // CHECK:STDOUT: !.loc23_7:
- // CHECK:STDOUT: %v: ref %i32 = bind_name v, %v.var
- // CHECK:STDOUT: name_binding_decl {
- // CHECK:STDOUT: %w.patt: %ptr = binding_pattern w
- // CHECK:STDOUT: %.loc24_3: %ptr = var_pattern %w.patt
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %w.var: ref %ptr = var w
- // CHECK:STDOUT: %v.ref: ref %i32 = name_ref v, %v
- // CHECK:STDOUT: %addr: %ptr = addr_of %v.ref
- // CHECK:STDOUT: assign %w.var, %addr
- // CHECK:STDOUT: br !.loc24_13
- // CHECK:STDOUT:
- // CHECK:STDOUT: !.loc24_13:
- // CHECK:STDOUT: %false: bool = bool_literal false [template = constants.%false]
- // CHECK:STDOUT: if %false br !if.expr.then.loc24 else br !if.expr.else.loc24
- // CHECK:STDOUT:
- // CHECK:STDOUT: !if.expr.then.loc24:
- // CHECK:STDOUT: %int_32.loc24_24: Core.IntLiteral = int_value 32 [template = constants.%int_32]
- // CHECK:STDOUT: %i32.loc24_24: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
- // CHECK:STDOUT: br !if.expr.result.loc24(%i32.loc24_24)
- // CHECK:STDOUT:
- // CHECK:STDOUT: !if.expr.else.loc24:
- // CHECK:STDOUT: %int_32.loc24_33: Core.IntLiteral = int_value 32 [template = constants.%int_32]
- // CHECK:STDOUT: %i32.loc24_33: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
- // CHECK:STDOUT: %ptr.loc24: type = ptr_type %i32 [template = constants.%ptr]
- // CHECK:STDOUT: br !if.expr.result.loc24(%ptr.loc24)
- // CHECK:STDOUT:
- // CHECK:STDOUT: !if.expr.result.loc24:
- // CHECK:STDOUT: %.loc24_10: type = block_arg !if.expr.result.loc24 [template = constants.%ptr]
- // CHECK:STDOUT: br !.loc24_7
- // CHECK:STDOUT:
- // CHECK:STDOUT: !.loc24_7:
- // CHECK:STDOUT: %w: ref %ptr = bind_name w, %w.var
- // CHECK:STDOUT: %w.ref: ref %ptr = name_ref w, %w
- // CHECK:STDOUT: %.loc25_11: %ptr = bind_value %w.ref
- // CHECK:STDOUT: %.loc25_10.1: ref %i32 = deref %.loc25_11
- // CHECK:STDOUT: %.loc25_10.2: %i32 = bind_value %.loc25_10.1
- // CHECK:STDOUT: return %.loc25_10.2
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @PartiallyConstant(%t.param_patt: type) -> %i32 {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: name_binding_decl {
- // CHECK:STDOUT: %v.patt: %i32 = binding_pattern v
- // CHECK:STDOUT: %.loc29_3.1: %i32 = var_pattern %v.patt
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %v.var: ref %i32 = var v
- // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [template = constants.%int_1.5b8]
- // CHECK:STDOUT: %impl.elem0: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
- // CHECK:STDOUT: %bound_method: <bound method> = bound_method %int_1, %impl.elem0 [template = constants.%Convert.bound.ab5]
- // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %bound_method, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.70c]
- // CHECK:STDOUT: %int.convert_checked: init %i32 = call %specific_fn(%int_1) [template = constants.%int_1.5d2]
- // CHECK:STDOUT: %.loc29_3.2: init %i32 = converted %int_1, %int.convert_checked [template = constants.%int_1.5d2]
- // CHECK:STDOUT: assign %v.var, %.loc29_3.2
- // CHECK:STDOUT: br !.loc29_13
- // CHECK:STDOUT:
- // CHECK:STDOUT: !.loc29_13:
- // CHECK:STDOUT: %true: bool = bool_literal true [template = constants.%true]
- // CHECK:STDOUT: if %true br !if.expr.then.loc29 else br !if.expr.else.loc29
- // CHECK:STDOUT:
- // CHECK:STDOUT: !if.expr.then.loc29:
- // CHECK:STDOUT: %int_32.loc29: Core.IntLiteral = int_value 32 [template = constants.%int_32]
- // CHECK:STDOUT: %i32.loc29: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
- // CHECK:STDOUT: br !if.expr.result.loc29(%i32.loc29)
- // CHECK:STDOUT:
- // CHECK:STDOUT: !if.expr.else.loc29:
- // CHECK:STDOUT: %t.ref.loc29: type = name_ref t, %t
- // CHECK:STDOUT: br !if.expr.result.loc29(%t.ref.loc29)
- // CHECK:STDOUT:
- // CHECK:STDOUT: !if.expr.result.loc29:
- // CHECK:STDOUT: %.loc29_10: type = block_arg !if.expr.result.loc29 [template = constants.%i32]
- // CHECK:STDOUT: br !.loc29_7
- // CHECK:STDOUT:
- // CHECK:STDOUT: !.loc29_7:
- // CHECK:STDOUT: %v: ref %i32 = bind_name v, %v.var
- // CHECK:STDOUT: name_binding_decl {
- // CHECK:STDOUT: %w.patt: %ptr = binding_pattern w
- // CHECK:STDOUT: %.loc30_3: %ptr = var_pattern %w.patt
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %w.var: ref %ptr = var w
- // CHECK:STDOUT: %v.ref: ref %i32 = name_ref v, %v
- // CHECK:STDOUT: %addr: %ptr = addr_of %v.ref
- // CHECK:STDOUT: assign %w.var, %addr
- // CHECK:STDOUT: br !.loc30_13
- // CHECK:STDOUT:
- // CHECK:STDOUT: !.loc30_13:
- // CHECK:STDOUT: %false: bool = bool_literal false [template = constants.%false]
- // CHECK:STDOUT: if %false br !if.expr.then.loc30 else br !if.expr.else.loc30
- // CHECK:STDOUT:
- // CHECK:STDOUT: !if.expr.then.loc30:
- // CHECK:STDOUT: %t.ref.loc30: type = name_ref t, %t
- // CHECK:STDOUT: br !if.expr.result.loc30(%t.ref.loc30)
- // CHECK:STDOUT:
- // CHECK:STDOUT: !if.expr.else.loc30:
- // CHECK:STDOUT: %int_32.loc30: Core.IntLiteral = int_value 32 [template = constants.%int_32]
- // CHECK:STDOUT: %i32.loc30: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
- // CHECK:STDOUT: %ptr: type = ptr_type %i32 [template = constants.%ptr]
- // CHECK:STDOUT: br !if.expr.result.loc30(%ptr)
- // CHECK:STDOUT:
- // CHECK:STDOUT: !if.expr.result.loc30:
- // CHECK:STDOUT: %.loc30_10: type = block_arg !if.expr.result.loc30 [template = constants.%ptr]
- // CHECK:STDOUT: br !.loc30_7
- // CHECK:STDOUT:
- // CHECK:STDOUT: !.loc30_7:
- // CHECK:STDOUT: %w: ref %ptr = bind_name w, %w.var
- // CHECK:STDOUT: %w.ref: ref %ptr = name_ref w, %w
- // CHECK:STDOUT: %.loc31_11: %ptr = bind_value %w.ref
- // CHECK:STDOUT: %.loc31_10.1: ref %i32 = deref %.loc31_11
- // CHECK:STDOUT: %.loc31_10.2: %i32 = bind_value %.loc31_10.1
- // CHECK:STDOUT: return %.loc31_10.2
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
|