| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565 |
- // 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/struct/import.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/struct/import.carbon
- // --- implicit.carbon
- package Implicit;
- var a_ref: {.a: i32} = {.a = 0};
- var b_ref: {.a: {.b: i32, .c: (i32,)}, .d: i32} =
- {.a = {.b = 0, .c = (0,)}, .d = 0};
- class C(S:! {.a: i32, .b: i32}) {}
- fn F() -> C({.a = 1, .b = 2});
- // --- implicit.impl.carbon
- impl package Implicit;
- var a: {.a: i32} = a_ref;
- var b: {.a: {.b: i32, .c: (i32,)}, .d: i32} = b_ref;
- var c: C({.a = 1, .b = 2}) = F();
- // --- fail_bad_type.impl.carbon
- impl package Implicit;
- // CHECK:STDERR: fail_bad_type.impl.carbon:[[@LINE+10]]:14: ERROR: Missing value for field `a` in struct initialization.
- // CHECK:STDERR: var c_bad: C({.c = 1, .d = 2}) = F();
- // CHECK:STDERR: ^~~~~~~~~~~~~~~~
- // CHECK:STDERR: fail_bad_type.impl.carbon:[[@LINE-4]]:6: In import.
- // CHECK:STDERR: impl package Implicit;
- // CHECK:STDERR: ^~~~~~~
- // CHECK:STDERR: implicit.carbon:8:1: Initializing parameter 1 of function declared here.
- // CHECK:STDERR: class C(S:! {.a: i32, .b: i32}) {}
- // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- // CHECK:STDERR:
- var c_bad: C({.c = 1, .d = 2}) = F();
- // --- fail_bad_value.impl.carbon
- impl package Implicit;
- // CHECK:STDERR: fail_bad_value.impl.carbon:[[@LINE+3]]:1: ERROR: Cannot implicitly convert from `C` to `C`.
- // CHECK:STDERR: var c_bad: C({.a = 3, .b = 4}) = F();
- // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- var c_bad: C({.a = 3, .b = 4}) = F();
- // CHECK:STDOUT: --- implicit.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %Int32.type: type = fn_type @Int32 [template]
- // CHECK:STDOUT: %.1: type = tuple_type () [template]
- // CHECK:STDOUT: %Int32: %Int32.type = struct_value () [template]
- // CHECK:STDOUT: %.2: type = struct_type {.a: i32} [template]
- // CHECK:STDOUT: %.3: i32 = int_literal 0 [template]
- // CHECK:STDOUT: %struct.1: %.2 = struct_value (%.3) [template]
- // CHECK:STDOUT: %.4: type = tuple_type (type) [template]
- // CHECK:STDOUT: %.5: type = tuple_type (i32) [template]
- // CHECK:STDOUT: %.6: type = struct_type {.b: i32, .c: %.5} [template]
- // CHECK:STDOUT: %.7: type = struct_type {.a: %.6, .d: i32} [template]
- // CHECK:STDOUT: %.8: type = ptr_type %.6 [template]
- // CHECK:STDOUT: %.9: type = struct_type {.a: %.8, .d: i32} [template]
- // CHECK:STDOUT: %.10: type = ptr_type %.9 [template]
- // CHECK:STDOUT: %tuple: %.5 = tuple_value (%.3) [template]
- // CHECK:STDOUT: %struct.2: %.6 = struct_value (%.3, %tuple) [template]
- // CHECK:STDOUT: %struct.3: %.7 = struct_value (%struct.2, %.3) [template]
- // CHECK:STDOUT: %.11: type = struct_type {.a: i32, .b: i32} [template]
- // CHECK:STDOUT: %S: %.11 = bind_symbolic_name S 0 [symbolic]
- // CHECK:STDOUT: %C.type: type = generic_class_type @C [template]
- // CHECK:STDOUT: %C.1: %C.type = struct_value () [template]
- // CHECK:STDOUT: %C.2: type = class_type @C, @C(%S) [symbolic]
- // CHECK:STDOUT: %.12: type = struct_type {} [template]
- // CHECK:STDOUT: %.13: i32 = int_literal 1 [template]
- // CHECK:STDOUT: %.14: i32 = int_literal 2 [template]
- // CHECK:STDOUT: %.15: type = ptr_type %.11 [template]
- // CHECK:STDOUT: %struct.4: %.11 = struct_value (%.13, %.14) [template]
- // CHECK:STDOUT: %C.3: type = class_type @C, @C(%struct.4) [template]
- // CHECK:STDOUT: %F.type: type = fn_type @F [template]
- // CHECK:STDOUT: %F: %F.type = struct_value () [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: imports {
- // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
- // CHECK:STDOUT: .Int32 = %import_ref
- // CHECK:STDOUT: import Core//prelude
- // CHECK:STDOUT: import Core//prelude/operators
- // CHECK:STDOUT: import Core//prelude/types
- // CHECK:STDOUT: import Core//prelude/operators/arithmetic
- // CHECK:STDOUT: import Core//prelude/operators/bitwise
- // CHECK:STDOUT: import Core//prelude/operators/comparison
- // CHECK:STDOUT: import Core//prelude/types/bool
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %import_ref: %Int32.type = import_ref Core//prelude/types, inst+4, loaded [template = constants.%Int32]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .Core = imports.%Core
- // CHECK:STDOUT: .a_ref = %a_ref
- // CHECK:STDOUT: .b_ref = %b_ref
- // CHECK:STDOUT: .C = %C.decl
- // CHECK:STDOUT: .F = %F.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core.import = import Core
- // CHECK:STDOUT: %int.make_type_32.loc4: init type = call constants.%Int32() [template = i32]
- // CHECK:STDOUT: %.loc4_17.1: type = value_of_initializer %int.make_type_32.loc4 [template = i32]
- // CHECK:STDOUT: %.loc4_17.2: type = converted %int.make_type_32.loc4, %.loc4_17.1 [template = i32]
- // CHECK:STDOUT: %.loc4_20: type = struct_type {.a: i32} [template = constants.%.2]
- // CHECK:STDOUT: %a_ref.var: ref %.2 = var a_ref
- // CHECK:STDOUT: %a_ref: ref %.2 = bind_name a_ref, %a_ref.var
- // CHECK:STDOUT: %int.make_type_32.loc5_22: init type = call constants.%Int32() [template = i32]
- // CHECK:STDOUT: %.loc5_22.1: type = value_of_initializer %int.make_type_32.loc5_22 [template = i32]
- // CHECK:STDOUT: %.loc5_22.2: type = converted %int.make_type_32.loc5_22, %.loc5_22.1 [template = i32]
- // CHECK:STDOUT: %int.make_type_32.loc5_32: init type = call constants.%Int32() [template = i32]
- // CHECK:STDOUT: %.loc5_36.1: %.4 = tuple_literal (%int.make_type_32.loc5_32)
- // CHECK:STDOUT: %.loc5_36.2: type = value_of_initializer %int.make_type_32.loc5_32 [template = i32]
- // CHECK:STDOUT: %.loc5_36.3: type = converted %int.make_type_32.loc5_32, %.loc5_36.2 [template = i32]
- // CHECK:STDOUT: %.loc5_36.4: type = converted %.loc5_36.1, constants.%.5 [template = constants.%.5]
- // CHECK:STDOUT: %.loc5_37: type = struct_type {.b: i32, .c: %.5} [template = constants.%.6]
- // CHECK:STDOUT: %int.make_type_32.loc5_44: init type = call constants.%Int32() [template = i32]
- // CHECK:STDOUT: %.loc5_44.1: type = value_of_initializer %int.make_type_32.loc5_44 [template = i32]
- // CHECK:STDOUT: %.loc5_44.2: type = converted %int.make_type_32.loc5_44, %.loc5_44.1 [template = i32]
- // CHECK:STDOUT: %.loc5_47: type = struct_type {.a: %.6, .d: i32} [template = constants.%.7]
- // CHECK:STDOUT: %b_ref.var: ref %.7 = var b_ref
- // CHECK:STDOUT: %b_ref: ref %.7 = bind_name b_ref, %b_ref.var
- // CHECK:STDOUT: %C.decl: %C.type = class_decl @C [template = constants.%C.1] {
- // CHECK:STDOUT: %int.make_type_32.loc8_18: init type = call constants.%Int32() [template = i32]
- // CHECK:STDOUT: %.loc8_18.1: type = value_of_initializer %int.make_type_32.loc8_18 [template = i32]
- // CHECK:STDOUT: %.loc8_18.2: type = converted %int.make_type_32.loc8_18, %.loc8_18.1 [template = i32]
- // CHECK:STDOUT: %int.make_type_32.loc8_27: init type = call constants.%Int32() [template = i32]
- // CHECK:STDOUT: %.loc8_27.1: type = value_of_initializer %int.make_type_32.loc8_27 [template = i32]
- // CHECK:STDOUT: %.loc8_27.2: type = converted %int.make_type_32.loc8_27, %.loc8_27.1 [template = i32]
- // CHECK:STDOUT: %.loc8_30: type = struct_type {.a: i32, .b: i32} [template = constants.%.11]
- // CHECK:STDOUT: %S.loc8_9.1: %.11 = param S
- // CHECK:STDOUT: %S.loc8_9.2: %.11 = bind_symbolic_name S 0, %S.loc8_9.1 [symbolic = @C.%S (constants.%S)]
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {
- // CHECK:STDOUT: %C.ref: %C.type = name_ref C, %C.decl [template = constants.%C.1]
- // CHECK:STDOUT: %.loc9_19: i32 = int_literal 1 [template = constants.%.13]
- // CHECK:STDOUT: %.loc9_27: i32 = int_literal 2 [template = constants.%.14]
- // CHECK:STDOUT: %.loc9_28: %.11 = struct_literal (%.loc9_19, %.loc9_27)
- // CHECK:STDOUT: %struct: %.11 = struct_value (%.loc9_19, %.loc9_27) [template = constants.%struct.4]
- // CHECK:STDOUT: %.loc9_12.1: %.11 = converted %.loc9_28, %struct [template = constants.%struct.4]
- // CHECK:STDOUT: %.loc9_12.2: init type = call %C.ref(%.loc9_12.1) [template = constants.%C.3]
- // CHECK:STDOUT: %.loc9_29.1: type = value_of_initializer %.loc9_12.2 [template = constants.%C.3]
- // CHECK:STDOUT: %.loc9_29.2: type = converted %.loc9_12.2, %.loc9_29.1 [template = constants.%C.3]
- // CHECK:STDOUT: @F.%return: ref %C.3 = var <return slot>
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic class @C(file.%S.loc8_9.2: %.11) {
- // CHECK:STDOUT: %S: %.11 = bind_symbolic_name S 0 [symbolic = %S (constants.%S)]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT:
- // CHECK:STDOUT: class {
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%C.2
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @Int32() -> type = "int.make_type_32";
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @F() -> %C.3;
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @__global_init() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %.loc4_30: i32 = int_literal 0 [template = constants.%.3]
- // CHECK:STDOUT: %.loc4_31.1: %.2 = struct_literal (%.loc4_30)
- // CHECK:STDOUT: %.loc4_31.2: init %.2 = struct_init (%.loc4_30) to file.%a_ref.var [template = constants.%struct.1]
- // CHECK:STDOUT: %.loc4_32: init %.2 = converted %.loc4_31.1, %.loc4_31.2 [template = constants.%struct.1]
- // CHECK:STDOUT: assign file.%a_ref.var, %.loc4_32
- // CHECK:STDOUT: %.loc6_17: i32 = int_literal 0 [template = constants.%.3]
- // CHECK:STDOUT: %.loc6_26: i32 = int_literal 0 [template = constants.%.3]
- // CHECK:STDOUT: %.loc6_28.1: %.5 = tuple_literal (%.loc6_26)
- // CHECK:STDOUT: %.loc6_29.1: %.6 = struct_literal (%.loc6_17, %.loc6_28.1)
- // CHECK:STDOUT: %.loc6_37: i32 = int_literal 0 [template = constants.%.3]
- // CHECK:STDOUT: %.loc6_38.1: %.7 = struct_literal (%.loc6_29.1, %.loc6_37)
- // CHECK:STDOUT: %.loc6_38.2: ref %.6 = struct_access file.%b_ref.var, element0
- // CHECK:STDOUT: %.loc6_29.2: ref i32 = struct_access %.loc6_38.2, element0
- // CHECK:STDOUT: %.loc6_29.3: init i32 = initialize_from %.loc6_17 to %.loc6_29.2 [template = constants.%.3]
- // CHECK:STDOUT: %.loc6_29.4: ref %.5 = struct_access %.loc6_38.2, element1
- // CHECK:STDOUT: %.loc6_28.2: init %.5 = tuple_init (%.loc6_26) to %.loc6_29.4 [template = constants.%tuple]
- // CHECK:STDOUT: %.loc6_29.5: init %.5 = converted %.loc6_28.1, %.loc6_28.2 [template = constants.%tuple]
- // CHECK:STDOUT: %.loc6_29.6: init %.5 = initialize_from %.loc6_29.5 to %.loc6_29.4 [template = constants.%tuple]
- // CHECK:STDOUT: %.loc6_29.7: init %.6 = struct_init (%.loc6_29.3, %.loc6_29.6) to %.loc6_38.2 [template = constants.%struct.2]
- // CHECK:STDOUT: %.loc6_38.3: init %.6 = converted %.loc6_29.1, %.loc6_29.7 [template = constants.%struct.2]
- // CHECK:STDOUT: %.loc6_38.4: ref i32 = struct_access file.%b_ref.var, element1
- // CHECK:STDOUT: %.loc6_38.5: init i32 = initialize_from %.loc6_37 to %.loc6_38.4 [template = constants.%.3]
- // CHECK:STDOUT: %.loc6_38.6: init %.7 = struct_init (%.loc6_38.3, %.loc6_38.5) to file.%b_ref.var [template = constants.%struct.3]
- // CHECK:STDOUT: %.loc6_39: init %.7 = converted %.loc6_38.1, %.loc6_38.6 [template = constants.%struct.3]
- // CHECK:STDOUT: assign file.%b_ref.var, %.loc6_39
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @C(constants.%S) {
- // CHECK:STDOUT: %S => constants.%S
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @C(constants.%struct.4) {
- // CHECK:STDOUT: %S => constants.%struct.4
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: --- implicit.impl.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %Int32.type: type = fn_type @Int32 [template]
- // CHECK:STDOUT: %.1: type = tuple_type () [template]
- // CHECK:STDOUT: %Int32: %Int32.type = struct_value () [template]
- // CHECK:STDOUT: %.2: type = struct_type {.a: i32} [template]
- // CHECK:STDOUT: %.3: type = tuple_type (type) [template]
- // CHECK:STDOUT: %.4: type = tuple_type (i32) [template]
- // CHECK:STDOUT: %.5: type = struct_type {.b: i32, .c: %.4} [template]
- // CHECK:STDOUT: %.6: type = struct_type {.a: %.5, .d: i32} [template]
- // CHECK:STDOUT: %.7: type = ptr_type %.5 [template]
- // CHECK:STDOUT: %.8: type = struct_type {.a: %.7, .d: i32} [template]
- // CHECK:STDOUT: %.9: type = ptr_type %.8 [template]
- // CHECK:STDOUT: %C.type: type = generic_class_type @C [template]
- // CHECK:STDOUT: %C.1: %C.type = struct_value () [template]
- // CHECK:STDOUT: %.10: type = struct_type {} [template]
- // CHECK:STDOUT: %.11: type = struct_type {.a: i32, .b: i32} [template]
- // CHECK:STDOUT: %S: %.11 = bind_symbolic_name S 0 [symbolic]
- // CHECK:STDOUT: %C.2: type = class_type @C, @C(%S) [symbolic]
- // CHECK:STDOUT: %.12: i32 = int_literal 1 [template]
- // CHECK:STDOUT: %.13: i32 = int_literal 2 [template]
- // CHECK:STDOUT: %.14: type = ptr_type %.11 [template]
- // CHECK:STDOUT: %struct: %.11 = struct_value (%.12, %.13) [template]
- // CHECK:STDOUT: %C.3: type = class_type @C, @C(%struct) [template]
- // CHECK:STDOUT: %.15: type = ptr_type %.10 [template]
- // CHECK:STDOUT: %F.type: type = fn_type @F [template]
- // CHECK:STDOUT: %F: %F.type = struct_value () [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: imports {
- // CHECK:STDOUT: %import_ref.1: ref %.2 = import_ref Implicit//default, inst+17, loaded
- // CHECK:STDOUT: %import_ref.2: ref %.6 = import_ref Implicit//default, inst+57, loaded
- // CHECK:STDOUT: %import_ref.3: %C.type = import_ref Implicit//default, inst+99, loaded [template = constants.%C.1]
- // CHECK:STDOUT: %import_ref.4: %F.type = import_ref Implicit//default, inst+122, loaded [template = constants.%F]
- // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
- // CHECK:STDOUT: .Int32 = %import_ref.5
- // CHECK:STDOUT: import Core//prelude
- // CHECK:STDOUT: import Core//prelude/operators
- // CHECK:STDOUT: import Core//prelude/types
- // CHECK:STDOUT: import Core//prelude/operators/arithmetic
- // CHECK:STDOUT: import Core//prelude/operators/bitwise
- // CHECK:STDOUT: import Core//prelude/operators/comparison
- // CHECK:STDOUT: import Core//prelude/types/bool
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %import_ref.5: %Int32.type = import_ref Core//prelude/types, inst+4, loaded [template = constants.%Int32]
- // CHECK:STDOUT: %import_ref.6 = import_ref Implicit//default, inst+103, unloaded
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .a_ref = imports.%import_ref.1
- // CHECK:STDOUT: .b_ref = imports.%import_ref.2
- // CHECK:STDOUT: .C = imports.%import_ref.3
- // CHECK:STDOUT: .F = imports.%import_ref.4
- // CHECK:STDOUT: .Core = imports.%Core
- // CHECK:STDOUT: .a = %a
- // CHECK:STDOUT: .b = %b
- // CHECK:STDOUT: .c = %c
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Implicit.import = import Implicit
- // CHECK:STDOUT: %default.import = import <invalid>
- // CHECK:STDOUT: %Core.import = import Core
- // CHECK:STDOUT: %int.make_type_32.loc4: init type = call constants.%Int32() [template = i32]
- // CHECK:STDOUT: %.loc4_13.1: type = value_of_initializer %int.make_type_32.loc4 [template = i32]
- // CHECK:STDOUT: %.loc4_13.2: type = converted %int.make_type_32.loc4, %.loc4_13.1 [template = i32]
- // CHECK:STDOUT: %.loc4_16: type = struct_type {.a: i32} [template = constants.%.2]
- // CHECK:STDOUT: %a.var: ref %.2 = var a
- // CHECK:STDOUT: %a: ref %.2 = bind_name a, %a.var
- // CHECK:STDOUT: %int.make_type_32.loc5_18: init type = call constants.%Int32() [template = i32]
- // CHECK:STDOUT: %.loc5_18.1: type = value_of_initializer %int.make_type_32.loc5_18 [template = i32]
- // CHECK:STDOUT: %.loc5_18.2: type = converted %int.make_type_32.loc5_18, %.loc5_18.1 [template = i32]
- // CHECK:STDOUT: %int.make_type_32.loc5_28: init type = call constants.%Int32() [template = i32]
- // CHECK:STDOUT: %.loc5_32.1: %.3 = tuple_literal (%int.make_type_32.loc5_28)
- // CHECK:STDOUT: %.loc5_32.2: type = value_of_initializer %int.make_type_32.loc5_28 [template = i32]
- // CHECK:STDOUT: %.loc5_32.3: type = converted %int.make_type_32.loc5_28, %.loc5_32.2 [template = i32]
- // CHECK:STDOUT: %.loc5_32.4: type = converted %.loc5_32.1, constants.%.4 [template = constants.%.4]
- // CHECK:STDOUT: %.loc5_33: type = struct_type {.b: i32, .c: %.4} [template = constants.%.5]
- // CHECK:STDOUT: %int.make_type_32.loc5_40: init type = call constants.%Int32() [template = i32]
- // CHECK:STDOUT: %.loc5_40.1: type = value_of_initializer %int.make_type_32.loc5_40 [template = i32]
- // CHECK:STDOUT: %.loc5_40.2: type = converted %int.make_type_32.loc5_40, %.loc5_40.1 [template = i32]
- // CHECK:STDOUT: %.loc5_43: type = struct_type {.a: %.5, .d: i32} [template = constants.%.6]
- // CHECK:STDOUT: %b.var: ref %.6 = var b
- // CHECK:STDOUT: %b: ref %.6 = bind_name b, %b.var
- // CHECK:STDOUT: %C.ref: %C.type = name_ref C, imports.%import_ref.3 [template = constants.%C.1]
- // CHECK:STDOUT: %.loc6_16: i32 = int_literal 1 [template = constants.%.12]
- // CHECK:STDOUT: %.loc6_24: i32 = int_literal 2 [template = constants.%.13]
- // CHECK:STDOUT: %.loc6_25: %.11 = struct_literal (%.loc6_16, %.loc6_24)
- // CHECK:STDOUT: %struct: %.11 = struct_value (%.loc6_16, %.loc6_24) [template = constants.%struct]
- // CHECK:STDOUT: %.loc6_9.1: %.11 = converted %.loc6_25, %struct [template = constants.%struct]
- // CHECK:STDOUT: %.loc6_9.2: init type = call %C.ref(%.loc6_9.1) [template = constants.%C.3]
- // CHECK:STDOUT: %.loc6_26.1: type = value_of_initializer %.loc6_9.2 [template = constants.%C.3]
- // CHECK:STDOUT: %.loc6_26.2: type = converted %.loc6_9.2, %.loc6_26.1 [template = constants.%C.3]
- // CHECK:STDOUT: %c.var: ref %C.3 = var c
- // CHECK:STDOUT: %c: ref %C.3 = bind_name c, %c.var
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic class @C(constants.%S: %.11) {
- // CHECK:STDOUT: %S: %.11 = bind_symbolic_name S 0 [symbolic = %S (constants.%S)]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT:
- // CHECK:STDOUT: class {
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = imports.%import_ref.6
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @Int32() -> type = "int.make_type_32";
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @F() -> %C.3;
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @__global_init() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %a_ref.ref: ref %.2 = name_ref a_ref, imports.%import_ref.1
- // CHECK:STDOUT: %.loc4_20.1: ref i32 = struct_access %a_ref.ref, element0
- // CHECK:STDOUT: %.loc4_20.2: i32 = bind_value %.loc4_20.1
- // CHECK:STDOUT: %.loc4_20.3: init %.2 = struct_init (%.loc4_20.2) to file.%a.var
- // CHECK:STDOUT: %.loc4_25: init %.2 = converted %a_ref.ref, %.loc4_20.3
- // CHECK:STDOUT: assign file.%a.var, %.loc4_25
- // CHECK:STDOUT: %b_ref.ref: ref %.6 = name_ref b_ref, imports.%import_ref.2
- // CHECK:STDOUT: %.loc5_47.1: ref %.5 = struct_access %b_ref.ref, element0
- // CHECK:STDOUT: %.loc5_47.2: ref i32 = struct_access %.loc5_47.1, element0
- // CHECK:STDOUT: %.loc5_47.3: i32 = bind_value %.loc5_47.2
- // CHECK:STDOUT: %.loc5_47.4: ref %.5 = struct_access file.%b.var, element0
- // CHECK:STDOUT: %.loc5_47.5: ref i32 = struct_access %.loc5_47.4, element0
- // CHECK:STDOUT: %.loc5_47.6: init i32 = initialize_from %.loc5_47.3 to %.loc5_47.5
- // CHECK:STDOUT: %.loc5_47.7: ref %.4 = struct_access %.loc5_47.1, element1
- // CHECK:STDOUT: %.loc5_47.8: ref i32 = tuple_access %.loc5_47.7, element0
- // CHECK:STDOUT: %.loc5_47.9: i32 = bind_value %.loc5_47.8
- // CHECK:STDOUT: %.loc5_47.10: ref %.4 = struct_access %.loc5_47.4, element1
- // CHECK:STDOUT: %.loc5_47.11: init %.4 = tuple_init (%.loc5_47.9) to %.loc5_47.10
- // CHECK:STDOUT: %.loc5_47.12: init %.4 = converted %.loc5_47.7, %.loc5_47.11
- // CHECK:STDOUT: %.loc5_47.13: init %.4 = initialize_from %.loc5_47.12 to %.loc5_47.10
- // CHECK:STDOUT: %.loc5_47.14: init %.5 = struct_init (%.loc5_47.6, %.loc5_47.13) to %.loc5_47.4
- // CHECK:STDOUT: %.loc5_47.15: init %.5 = converted %.loc5_47.1, %.loc5_47.14
- // CHECK:STDOUT: %.loc5_47.16: ref i32 = struct_access %b_ref.ref, element1
- // CHECK:STDOUT: %.loc5_47.17: i32 = bind_value %.loc5_47.16
- // CHECK:STDOUT: %.loc5_47.18: ref i32 = struct_access file.%b.var, element1
- // CHECK:STDOUT: %.loc5_47.19: init i32 = initialize_from %.loc5_47.17 to %.loc5_47.18
- // CHECK:STDOUT: %.loc5_47.20: init %.6 = struct_init (%.loc5_47.15, %.loc5_47.19) to file.%b.var
- // CHECK:STDOUT: %.loc5_52: init %.6 = converted %b_ref.ref, %.loc5_47.20
- // CHECK:STDOUT: assign file.%b.var, %.loc5_52
- // CHECK:STDOUT: %F.ref: %F.type = name_ref F, imports.%import_ref.4 [template = constants.%F]
- // CHECK:STDOUT: %.loc6: ref %C.3 = splice_block file.%c.var {}
- // CHECK:STDOUT: %F.call: init %C.3 = call %F.ref() to %.loc6
- // CHECK:STDOUT: assign file.%c.var, %F.call
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @C(constants.%S) {
- // CHECK:STDOUT: %S => constants.%S
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @C(constants.%struct) {
- // CHECK:STDOUT: %S => constants.%struct
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: --- fail_bad_type.impl.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %C.type: type = generic_class_type @C [template]
- // CHECK:STDOUT: %.1: type = tuple_type () [template]
- // CHECK:STDOUT: %C.1: %C.type = struct_value () [template]
- // CHECK:STDOUT: %.2: type = struct_type {} [template]
- // CHECK:STDOUT: %.3: type = struct_type {.a: i32, .b: i32} [template]
- // CHECK:STDOUT: %S: %.3 = bind_symbolic_name S 0 [symbolic]
- // CHECK:STDOUT: %C.2: type = class_type @C, @C(%S) [symbolic]
- // CHECK:STDOUT: %.4: i32 = int_literal 1 [template]
- // CHECK:STDOUT: %.5: i32 = int_literal 2 [template]
- // CHECK:STDOUT: %.6: type = struct_type {.c: i32, .d: i32} [template]
- // CHECK:STDOUT: %.7: type = ptr_type %.3 [template]
- // CHECK:STDOUT: %F.type: type = fn_type @F [template]
- // CHECK:STDOUT: %F: %F.type = struct_value () [template]
- // CHECK:STDOUT: %struct: %.3 = struct_value (%.4, %.5) [template]
- // CHECK:STDOUT: %C.3: type = class_type @C, @C(%struct) [template]
- // CHECK:STDOUT: %.8: type = ptr_type %.2 [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: imports {
- // CHECK:STDOUT: %import_ref.1 = import_ref Implicit//default, inst+17, unloaded
- // CHECK:STDOUT: %import_ref.2 = import_ref Implicit//default, inst+57, unloaded
- // CHECK:STDOUT: %import_ref.3: %C.type = import_ref Implicit//default, inst+99, loaded [template = constants.%C.1]
- // CHECK:STDOUT: %import_ref.4: %F.type = import_ref Implicit//default, inst+122, loaded [template = constants.%F]
- // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
- // CHECK:STDOUT: import Core//prelude
- // CHECK:STDOUT: import Core//prelude/operators
- // CHECK:STDOUT: import Core//prelude/types
- // CHECK:STDOUT: import Core//prelude/operators/arithmetic
- // CHECK:STDOUT: import Core//prelude/operators/bitwise
- // CHECK:STDOUT: import Core//prelude/operators/comparison
- // CHECK:STDOUT: import Core//prelude/types/bool
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %import_ref.5 = import_ref Implicit//default, inst+103, unloaded
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .a_ref = imports.%import_ref.1
- // CHECK:STDOUT: .b_ref = imports.%import_ref.2
- // CHECK:STDOUT: .C = imports.%import_ref.3
- // CHECK:STDOUT: .F = imports.%import_ref.4
- // CHECK:STDOUT: .Core = imports.%Core
- // CHECK:STDOUT: .c_bad = %c_bad
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Implicit.import = import Implicit
- // CHECK:STDOUT: %default.import = import <invalid>
- // CHECK:STDOUT: %Core.import = import Core
- // CHECK:STDOUT: %C.ref: %C.type = name_ref C, imports.%import_ref.3 [template = constants.%C.1]
- // CHECK:STDOUT: %.loc13_20: i32 = int_literal 1 [template = constants.%.4]
- // CHECK:STDOUT: %.loc13_28: i32 = int_literal 2 [template = constants.%.5]
- // CHECK:STDOUT: %.loc13_29: %.6 = struct_literal (%.loc13_20, %.loc13_28)
- // CHECK:STDOUT: %.loc13_13: init type = call %C.ref(<invalid>) [template = <error>]
- // CHECK:STDOUT: %.loc13_30.1: type = value_of_initializer %.loc13_13 [template = <error>]
- // CHECK:STDOUT: %.loc13_30.2: type = converted %.loc13_13, %.loc13_30.1 [template = <error>]
- // CHECK:STDOUT: %c_bad.var: ref <error> = var c_bad
- // CHECK:STDOUT: %c_bad: ref <error> = bind_name c_bad, %c_bad.var
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic class @C(constants.%S: %.3) {
- // CHECK:STDOUT: %S: %.3 = bind_symbolic_name S 0 [symbolic = %S (constants.%S)]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT:
- // CHECK:STDOUT: class {
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = imports.%import_ref.5
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @F() -> %C.3;
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @__global_init() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %F.ref: %F.type = name_ref F, imports.%import_ref.4 [template = constants.%F]
- // CHECK:STDOUT: %.loc13: ref %C.3 = temporary_storage
- // CHECK:STDOUT: %F.call: init %C.3 = call %F.ref() to %.loc13
- // CHECK:STDOUT: assign file.%c_bad.var, <error>
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @C(constants.%S) {
- // CHECK:STDOUT: %S => constants.%S
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @C(constants.%struct) {
- // CHECK:STDOUT: %S => constants.%struct
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: --- fail_bad_value.impl.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %C.type: type = generic_class_type @C [template]
- // CHECK:STDOUT: %.1: type = tuple_type () [template]
- // CHECK:STDOUT: %C.1: %C.type = struct_value () [template]
- // CHECK:STDOUT: %.2: type = struct_type {} [template]
- // CHECK:STDOUT: %.3: type = struct_type {.a: i32, .b: i32} [template]
- // CHECK:STDOUT: %S: %.3 = bind_symbolic_name S 0 [symbolic]
- // CHECK:STDOUT: %C.2: type = class_type @C, @C(%S) [symbolic]
- // CHECK:STDOUT: %.4: i32 = int_literal 3 [template]
- // CHECK:STDOUT: %.5: i32 = int_literal 4 [template]
- // CHECK:STDOUT: %.6: type = ptr_type %.3 [template]
- // CHECK:STDOUT: %struct.1: %.3 = struct_value (%.4, %.5) [template]
- // CHECK:STDOUT: %C.3: type = class_type @C, @C(%struct.1) [template]
- // CHECK:STDOUT: %.7: type = ptr_type %.2 [template]
- // CHECK:STDOUT: %F.type: type = fn_type @F [template]
- // CHECK:STDOUT: %F: %F.type = struct_value () [template]
- // CHECK:STDOUT: %.8: i32 = int_literal 2 [template]
- // CHECK:STDOUT: %.9: i32 = int_literal 1 [template]
- // CHECK:STDOUT: %struct.2: %.3 = struct_value (%.9, %.8) [template]
- // CHECK:STDOUT: %C.4: type = class_type @C, @C(%struct.2) [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: imports {
- // CHECK:STDOUT: %import_ref.1 = import_ref Implicit//default, inst+17, unloaded
- // CHECK:STDOUT: %import_ref.2 = import_ref Implicit//default, inst+57, unloaded
- // CHECK:STDOUT: %import_ref.3: %C.type = import_ref Implicit//default, inst+99, loaded [template = constants.%C.1]
- // CHECK:STDOUT: %import_ref.4: %F.type = import_ref Implicit//default, inst+122, loaded [template = constants.%F]
- // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
- // CHECK:STDOUT: import Core//prelude
- // CHECK:STDOUT: import Core//prelude/operators
- // CHECK:STDOUT: import Core//prelude/types
- // CHECK:STDOUT: import Core//prelude/operators/arithmetic
- // CHECK:STDOUT: import Core//prelude/operators/bitwise
- // CHECK:STDOUT: import Core//prelude/operators/comparison
- // CHECK:STDOUT: import Core//prelude/types/bool
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %import_ref.5 = import_ref Implicit//default, inst+103, unloaded
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .a_ref = imports.%import_ref.1
- // CHECK:STDOUT: .b_ref = imports.%import_ref.2
- // CHECK:STDOUT: .C = imports.%import_ref.3
- // CHECK:STDOUT: .F = imports.%import_ref.4
- // CHECK:STDOUT: .Core = imports.%Core
- // CHECK:STDOUT: .c_bad = %c_bad
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Implicit.import = import Implicit
- // CHECK:STDOUT: %default.import = import <invalid>
- // CHECK:STDOUT: %Core.import = import Core
- // CHECK:STDOUT: %C.ref: %C.type = name_ref C, imports.%import_ref.3 [template = constants.%C.1]
- // CHECK:STDOUT: %.loc6_20: i32 = int_literal 3 [template = constants.%.4]
- // CHECK:STDOUT: %.loc6_28: i32 = int_literal 4 [template = constants.%.5]
- // CHECK:STDOUT: %.loc6_29: %.3 = struct_literal (%.loc6_20, %.loc6_28)
- // CHECK:STDOUT: %struct: %.3 = struct_value (%.loc6_20, %.loc6_28) [template = constants.%struct.1]
- // CHECK:STDOUT: %.loc6_13.1: %.3 = converted %.loc6_29, %struct [template = constants.%struct.1]
- // CHECK:STDOUT: %.loc6_13.2: init type = call %C.ref(%.loc6_13.1) [template = constants.%C.3]
- // CHECK:STDOUT: %.loc6_30.1: type = value_of_initializer %.loc6_13.2 [template = constants.%C.3]
- // CHECK:STDOUT: %.loc6_30.2: type = converted %.loc6_13.2, %.loc6_30.1 [template = constants.%C.3]
- // CHECK:STDOUT: %c_bad.var: ref %C.3 = var c_bad
- // CHECK:STDOUT: %c_bad: ref %C.3 = bind_name c_bad, %c_bad.var
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic class @C(constants.%S: %.3) {
- // CHECK:STDOUT: %S: %.3 = bind_symbolic_name S 0 [symbolic = %S (constants.%S)]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT:
- // CHECK:STDOUT: class {
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = imports.%import_ref.5
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @F() -> %C.4;
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @__global_init() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %F.ref: %F.type = name_ref F, imports.%import_ref.4 [template = constants.%F]
- // CHECK:STDOUT: %.loc6: ref %C.4 = temporary_storage
- // CHECK:STDOUT: %F.call: init %C.4 = call %F.ref() to %.loc6
- // CHECK:STDOUT: assign file.%c_bad.var, <error>
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @C(constants.%S) {
- // CHECK:STDOUT: %S => constants.%S
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @C(constants.%struct.1) {
- // CHECK:STDOUT: %S => constants.%struct.1
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @C(constants.%struct.2) {
- // CHECK:STDOUT: %S => constants.%struct.2
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
|