// 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/tuple/nested_tuple.carbon // TIP: To dump output, run: // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/tuple/nested_tuple.carbon var x: ((i32, i32), i32) = ((12, 76), 6); // CHECK:STDOUT: --- nested_tuple.carbon // CHECK:STDOUT: // CHECK:STDOUT: constants { // CHECK:STDOUT: %.1: Core.IntLiteral = int_value 32 [template] // CHECK:STDOUT: %Int.type: type = fn_type @Int [template] // CHECK:STDOUT: %Int: %Int.type = struct_value () [template] // CHECK:STDOUT: %i32: type = int_type signed, %.1 [template] // CHECK:STDOUT: %tuple.type.1: type = tuple_type (type, type) [template] // CHECK:STDOUT: %tuple.type.2: type = tuple_type (%tuple.type.1, type) [template] // CHECK:STDOUT: %tuple.type.3: type = tuple_type (%i32, %i32) [template] // CHECK:STDOUT: %tuple.type.4: type = tuple_type (%tuple.type.3, %i32) [template] // CHECK:STDOUT: %.4: Core.IntLiteral = int_value 12 [template] // CHECK:STDOUT: %.5: Core.IntLiteral = int_value 76 [template] // CHECK:STDOUT: %tuple.type.6: type = tuple_type (Core.IntLiteral, Core.IntLiteral) [template] // CHECK:STDOUT: %.6: Core.IntLiteral = int_value 6 [template] // CHECK:STDOUT: %tuple.type.7: type = tuple_type (%tuple.type.6, Core.IntLiteral) [template] // CHECK:STDOUT: %Convert.type.2: type = fn_type @Convert.1, @ImplicitAs(%i32) [template] // CHECK:STDOUT: %Convert.type.14: type = fn_type @Convert.2, @impl.1(%.1) [template] // CHECK:STDOUT: %Convert.14: %Convert.type.14 = struct_value () [template] // CHECK:STDOUT: %.26: = interface_witness (%Convert.14) [template] // CHECK:STDOUT: %.27: = bound_method %.4, %Convert.14 [template] // CHECK:STDOUT: %.28: = specific_function %.27, @Convert.2(%.1) [template] // CHECK:STDOUT: %.29: %i32 = int_value 12 [template] // CHECK:STDOUT: %.30: = bound_method %.5, %Convert.14 [template] // CHECK:STDOUT: %.31: = specific_function %.30, @Convert.2(%.1) [template] // CHECK:STDOUT: %.32: %i32 = int_value 76 [template] // CHECK:STDOUT: %tuple.1: %tuple.type.3 = tuple_value (%.29, %.32) [template] // CHECK:STDOUT: %.33: = bound_method %.6, %Convert.14 [template] // CHECK:STDOUT: %.34: = specific_function %.33, @Convert.2(%.1) [template] // CHECK:STDOUT: %.35: %i32 = int_value 6 [template] // CHECK:STDOUT: %tuple.2: %tuple.type.4 = tuple_value (%tuple.1, %.35) [template] // CHECK:STDOUT: } // CHECK:STDOUT: // CHECK:STDOUT: imports { // CHECK:STDOUT: %Core: = namespace file.%Core.import, [template] { // CHECK:STDOUT: .Int = %import_ref.1 // CHECK:STDOUT: .ImplicitAs = %import_ref.2 // CHECK:STDOUT: import Core//prelude // CHECK:STDOUT: import Core//prelude/... // CHECK:STDOUT: } // CHECK:STDOUT: } // CHECK:STDOUT: // CHECK:STDOUT: file { // CHECK:STDOUT: package: = namespace [template] { // CHECK:STDOUT: .Core = imports.%Core // CHECK:STDOUT: .x = %x // CHECK:STDOUT: } // CHECK:STDOUT: %Core.import = import Core // CHECK:STDOUT: %.loc11_10: Core.IntLiteral = int_value 32 [template = constants.%.1] // CHECK:STDOUT: %int.make_type_signed.loc11_10: init type = call constants.%Int(%.loc11_10) [template = constants.%i32] // CHECK:STDOUT: %.loc11_15: Core.IntLiteral = int_value 32 [template = constants.%.1] // CHECK:STDOUT: %int.make_type_signed.loc11_15: init type = call constants.%Int(%.loc11_15) [template = constants.%i32] // CHECK:STDOUT: %.loc11_18: %tuple.type.1 = tuple_literal (%int.make_type_signed.loc11_10, %int.make_type_signed.loc11_15) // CHECK:STDOUT: %.loc11_21: Core.IntLiteral = int_value 32 [template = constants.%.1] // CHECK:STDOUT: %int.make_type_signed.loc11_21: init type = call constants.%Int(%.loc11_21) [template = constants.%i32] // CHECK:STDOUT: %.loc11_24.1: %tuple.type.2 = tuple_literal (%.loc11_18, %int.make_type_signed.loc11_21) // CHECK:STDOUT: %.loc11_24.2: type = value_of_initializer %int.make_type_signed.loc11_10 [template = constants.%i32] // CHECK:STDOUT: %.loc11_24.3: type = converted %int.make_type_signed.loc11_10, %.loc11_24.2 [template = constants.%i32] // CHECK:STDOUT: %.loc11_24.4: type = value_of_initializer %int.make_type_signed.loc11_15 [template = constants.%i32] // CHECK:STDOUT: %.loc11_24.5: type = converted %int.make_type_signed.loc11_15, %.loc11_24.4 [template = constants.%i32] // CHECK:STDOUT: %.loc11_24.6: type = converted %.loc11_18, constants.%tuple.type.3 [template = constants.%tuple.type.3] // CHECK:STDOUT: %.loc11_24.7: type = value_of_initializer %int.make_type_signed.loc11_21 [template = constants.%i32] // CHECK:STDOUT: %.loc11_24.8: type = converted %int.make_type_signed.loc11_21, %.loc11_24.7 [template = constants.%i32] // CHECK:STDOUT: %.loc11_24.9: type = converted %.loc11_24.1, constants.%tuple.type.4 [template = constants.%tuple.type.4] // CHECK:STDOUT: %x.var: ref %tuple.type.4 = var x // CHECK:STDOUT: %x: ref %tuple.type.4 = bind_name x, %x.var // CHECK:STDOUT: } // CHECK:STDOUT: // CHECK:STDOUT: fn @__global_init() { // CHECK:STDOUT: !entry: // CHECK:STDOUT: %.loc11_30: Core.IntLiteral = int_value 12 [template = constants.%.4] // CHECK:STDOUT: %.loc11_34: Core.IntLiteral = int_value 76 [template = constants.%.5] // CHECK:STDOUT: %.loc11_36.1: %tuple.type.6 = tuple_literal (%.loc11_30, %.loc11_34) // CHECK:STDOUT: %.loc11_39: Core.IntLiteral = int_value 6 [template = constants.%.6] // CHECK:STDOUT: %.loc11_40.1: %tuple.type.7 = tuple_literal (%.loc11_36.1, %.loc11_39) // CHECK:STDOUT: %.loc11_36.2: %Convert.type.2 = interface_witness_access constants.%.26, element0 [template = constants.%Convert.14] // CHECK:STDOUT: %.loc11_36.3: = bound_method %.loc11_30, %.loc11_36.2 [template = constants.%.27] // CHECK:STDOUT: %.loc11_36.4: = specific_function %.loc11_36.3, @Convert.2(constants.%.1) [template = constants.%.28] // CHECK:STDOUT: %int.convert_checked.loc11_36.1: init %i32 = call %.loc11_36.4(%.loc11_30) [template = constants.%.29] // CHECK:STDOUT: %.loc11_36.5: init %i32 = converted %.loc11_30, %int.convert_checked.loc11_36.1 [template = constants.%.29] // CHECK:STDOUT: %.loc11_40.2: ref %tuple.type.3 = tuple_access file.%x.var, element0 // CHECK:STDOUT: %.loc11_36.6: ref %i32 = tuple_access %.loc11_40.2, element0 // CHECK:STDOUT: %.loc11_36.7: init %i32 = initialize_from %.loc11_36.5 to %.loc11_36.6 [template = constants.%.29] // CHECK:STDOUT: %.loc11_36.8: %Convert.type.2 = interface_witness_access constants.%.26, element0 [template = constants.%Convert.14] // CHECK:STDOUT: %.loc11_36.9: = bound_method %.loc11_34, %.loc11_36.8 [template = constants.%.30] // CHECK:STDOUT: %.loc11_36.10: = specific_function %.loc11_36.9, @Convert.2(constants.%.1) [template = constants.%.31] // CHECK:STDOUT: %int.convert_checked.loc11_36.2: init %i32 = call %.loc11_36.10(%.loc11_34) [template = constants.%.32] // CHECK:STDOUT: %.loc11_36.11: init %i32 = converted %.loc11_34, %int.convert_checked.loc11_36.2 [template = constants.%.32] // CHECK:STDOUT: %.loc11_36.12: ref %i32 = tuple_access %.loc11_40.2, element1 // CHECK:STDOUT: %.loc11_36.13: init %i32 = initialize_from %.loc11_36.11 to %.loc11_36.12 [template = constants.%.32] // CHECK:STDOUT: %.loc11_36.14: init %tuple.type.3 = tuple_init (%.loc11_36.7, %.loc11_36.13) to %.loc11_40.2 [template = constants.%tuple.1] // CHECK:STDOUT: %.loc11_40.3: init %tuple.type.3 = converted %.loc11_36.1, %.loc11_36.14 [template = constants.%tuple.1] // CHECK:STDOUT: %.loc11_40.4: %Convert.type.2 = interface_witness_access constants.%.26, element0 [template = constants.%Convert.14] // CHECK:STDOUT: %.loc11_40.5: = bound_method %.loc11_39, %.loc11_40.4 [template = constants.%.33] // CHECK:STDOUT: %.loc11_40.6: = specific_function %.loc11_40.5, @Convert.2(constants.%.1) [template = constants.%.34] // CHECK:STDOUT: %int.convert_checked.loc11_40: init %i32 = call %.loc11_40.6(%.loc11_39) [template = constants.%.35] // CHECK:STDOUT: %.loc11_40.7: init %i32 = converted %.loc11_39, %int.convert_checked.loc11_40 [template = constants.%.35] // CHECK:STDOUT: %.loc11_40.8: ref %i32 = tuple_access file.%x.var, element1 // CHECK:STDOUT: %.loc11_40.9: init %i32 = initialize_from %.loc11_40.7 to %.loc11_40.8 [template = constants.%.35] // CHECK:STDOUT: %.loc11_40.10: init %tuple.type.4 = tuple_init (%.loc11_40.3, %.loc11_40.9) to file.%x.var [template = constants.%tuple.2] // CHECK:STDOUT: %.loc11_41: init %tuple.type.4 = converted %.loc11_40.1, %.loc11_40.10 [template = constants.%tuple.2] // CHECK:STDOUT: assign file.%x.var, %.loc11_41 // CHECK:STDOUT: return // CHECK:STDOUT: } // CHECK:STDOUT: