| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- // 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/class/self.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/class/self.carbon
- // --- self.carbon
- library "[[@TEST_NAME]]";
- class Class {
- fn F[self: Self]() -> i32;
- fn G[addr self: Self*]() -> i32;
- var n: i32;
- }
- fn Class.F[self: Self]() -> i32 {
- return self.n;
- }
- fn Class.G[addr self: Self*]() -> i32 {
- return (*self).n;
- }
- // --- fail_return_self_value.carbon
- library "[[@TEST_NAME]]";
- class Class {
- // CHECK:STDERR: fail_return_self_value.carbon:[[@LINE+6]]:25: error: cannot implicitly convert from `Class` to `type` [ImplicitAsConversionFailure]
- // CHECK:STDERR: fn F[self: Self]() -> self;
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_return_self_value.carbon:[[@LINE+3]]:25: note: type `Class` does not implement interface `ImplicitAs(type)` [MissingImplInMemberAccessNote]
- // CHECK:STDERR: fn F[self: Self]() -> self;
- // CHECK:STDERR: ^~~~
- fn F[self: Self]() -> self;
- }
- // CHECK:STDOUT: --- self.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %Class: type = class_type @Class [template]
- // 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: %F.type: type = fn_type @F [template]
- // CHECK:STDOUT: %F: %F.type = struct_value () [template]
- // CHECK:STDOUT: %.2: type = ptr_type %Class [template]
- // CHECK:STDOUT: %G.type: type = fn_type @G [template]
- // CHECK:STDOUT: %G: %G.type = struct_value () [template]
- // CHECK:STDOUT: %.3: type = unbound_element_type %Class, %i32 [template]
- // CHECK:STDOUT: %.4: type = struct_type {.n: %i32} [template]
- // CHECK:STDOUT: %.5: <witness> = complete_type_witness %.4 [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: imports {
- // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
- // CHECK:STDOUT: .Int = %import_ref
- // 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: .Class = %Class.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core.import = import Core
- // CHECK:STDOUT: %Class.decl: type = class_decl @Class [template = constants.%Class] {} {}
- // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {
- // CHECK:STDOUT: %self.patt: %Class = binding_pattern self
- // CHECK:STDOUT: %self.param_patt: %Class = value_param_pattern %self.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: %Self.ref.loc11: type = name_ref Self, constants.%Class [template = constants.%Class]
- // CHECK:STDOUT: %.loc11_29.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
- // CHECK:STDOUT: %int.make_type_signed.loc11: init type = call constants.%Int(%.loc11_29.1) [template = constants.%i32]
- // CHECK:STDOUT: %.loc11_29.2: type = value_of_initializer %int.make_type_signed.loc11 [template = constants.%i32]
- // CHECK:STDOUT: %.loc11_29.3: type = converted %int.make_type_signed.loc11, %.loc11_29.2 [template = constants.%i32]
- // CHECK:STDOUT: %self.param.loc11: %Class = value_param runtime_param0
- // CHECK:STDOUT: %self.loc11: %Class = bind_name self, %self.param.loc11
- // CHECK:STDOUT: %return.param.loc11: ref %i32 = out_param runtime_param1
- // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param.loc11
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %G.decl: %G.type = fn_decl @G [template = constants.%G] {
- // CHECK:STDOUT: %self.patt: %.2 = binding_pattern self
- // CHECK:STDOUT: %self.param_patt: %.2 = value_param_pattern %self.patt, runtime_param0
- // CHECK:STDOUT: %.loc15_12: auto = addr_pattern %self.param_patt
- // 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: %Self.ref.loc15: type = name_ref Self, constants.%Class [template = constants.%Class]
- // CHECK:STDOUT: %.loc15_27: type = ptr_type %Class [template = constants.%.2]
- // CHECK:STDOUT: %.loc15_35.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
- // CHECK:STDOUT: %int.make_type_signed.loc15: init type = call constants.%Int(%.loc15_35.1) [template = constants.%i32]
- // CHECK:STDOUT: %.loc15_35.2: type = value_of_initializer %int.make_type_signed.loc15 [template = constants.%i32]
- // CHECK:STDOUT: %.loc15_35.3: type = converted %int.make_type_signed.loc15, %.loc15_35.2 [template = constants.%i32]
- // CHECK:STDOUT: %self.param.loc15: %.2 = value_param runtime_param0
- // CHECK:STDOUT: %self.loc15: %.2 = bind_name self, %self.param.loc15
- // CHECK:STDOUT: %return.param.loc15: ref %i32 = out_param runtime_param1
- // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param.loc15
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @Class {
- // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {
- // CHECK:STDOUT: %self.patt: %Class = binding_pattern self
- // CHECK:STDOUT: %self.param_patt: %Class = value_param_pattern %self.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: %Self.ref.loc5: type = name_ref Self, constants.%Class [template = constants.%Class]
- // CHECK:STDOUT: %.loc5_25.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
- // CHECK:STDOUT: %int.make_type_signed.loc5: init type = call constants.%Int(%.loc5_25.1) [template = constants.%i32]
- // CHECK:STDOUT: %.loc5_25.2: type = value_of_initializer %int.make_type_signed.loc5 [template = constants.%i32]
- // CHECK:STDOUT: %.loc5_25.3: type = converted %int.make_type_signed.loc5, %.loc5_25.2 [template = constants.%i32]
- // CHECK:STDOUT: %self.param.loc5: %Class = value_param runtime_param0
- // CHECK:STDOUT: %self.loc5: %Class = bind_name self, %self.param.loc5
- // CHECK:STDOUT: %return.param.loc5: ref %i32 = out_param runtime_param1
- // CHECK:STDOUT: %.loc5_22: ref %i32 = return_slot %return.param.loc5
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %G.decl: %G.type = fn_decl @G [template = constants.%G] {
- // CHECK:STDOUT: %self.patt: %.2 = binding_pattern self
- // CHECK:STDOUT: %self.param_patt: %.2 = value_param_pattern %self.patt, runtime_param0
- // CHECK:STDOUT: %.loc15_12: auto = addr_pattern %self.param_patt
- // 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: %Self.ref.loc6: type = name_ref Self, constants.%Class [template = constants.%Class]
- // CHECK:STDOUT: %.loc6_23: type = ptr_type %Class [template = constants.%.2]
- // CHECK:STDOUT: %.loc6_31.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
- // CHECK:STDOUT: %int.make_type_signed.loc6: init type = call constants.%Int(%.loc6_31.1) [template = constants.%i32]
- // CHECK:STDOUT: %.loc6_31.2: type = value_of_initializer %int.make_type_signed.loc6 [template = constants.%i32]
- // CHECK:STDOUT: %.loc6_31.3: type = converted %int.make_type_signed.loc6, %.loc6_31.2 [template = constants.%i32]
- // CHECK:STDOUT: %self.param.loc6: %.2 = value_param runtime_param0
- // CHECK:STDOUT: %self.loc6: %.2 = bind_name self, %self.param.loc6
- // CHECK:STDOUT: %return.param.loc6: ref %i32 = out_param runtime_param1
- // CHECK:STDOUT: %.loc6_28: ref %i32 = return_slot %return.param.loc6
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %.loc8_10.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
- // CHECK:STDOUT: %int.make_type_signed: init type = call constants.%Int(%.loc8_10.1) [template = constants.%i32]
- // CHECK:STDOUT: %.loc8_10.2: type = value_of_initializer %int.make_type_signed [template = constants.%i32]
- // CHECK:STDOUT: %.loc8_10.3: type = converted %int.make_type_signed, %.loc8_10.2 [template = constants.%i32]
- // CHECK:STDOUT: %.loc8_8: %.3 = field_decl n, element0 [template]
- // CHECK:STDOUT: %.loc9: <witness> = complete_type_witness %.4 [template = constants.%.5]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%Class
- // CHECK:STDOUT: .F = %F.decl
- // CHECK:STDOUT: .G = %G.decl
- // CHECK:STDOUT: .n = %.loc8_8
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @F[%self.param_patt: %Class]() -> %i32 {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %self.ref: %Class = name_ref self, %self.loc11
- // CHECK:STDOUT: %n.ref: %.3 = name_ref n, @Class.%.loc8_8 [template = @Class.%.loc8_8]
- // CHECK:STDOUT: %.loc12_14.1: ref %i32 = class_element_access %self.ref, element0
- // CHECK:STDOUT: %.loc12_14.2: %i32 = bind_value %.loc12_14.1
- // CHECK:STDOUT: return %.loc12_14.2
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @G[addr %self.param_patt: %.2]() -> %i32 {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %self.ref: %.2 = name_ref self, %self.loc15
- // CHECK:STDOUT: %.loc16_11: ref %Class = deref %self.ref
- // CHECK:STDOUT: %n.ref: %.3 = name_ref n, @Class.%.loc8_8 [template = @Class.%.loc8_8]
- // CHECK:STDOUT: %.loc16_17.1: ref %i32 = class_element_access %.loc16_11, element0
- // CHECK:STDOUT: %.loc16_17.2: %i32 = bind_value %.loc16_17.1
- // CHECK:STDOUT: return %.loc16_17.2
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: --- fail_return_self_value.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %Class: type = class_type @Class [template]
- // CHECK:STDOUT: %F.type: type = fn_type @F [template]
- // CHECK:STDOUT: %F: %F.type = struct_value () [template]
- // CHECK:STDOUT: %.20: type = struct_type {} [template]
- // CHECK:STDOUT: %.21: <witness> = complete_type_witness %.20 [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: imports {
- // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
- // CHECK:STDOUT: .ImplicitAs = %import_ref.1
- // 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: .Class = %Class.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core.import = import Core
- // CHECK:STDOUT: %Class.decl: type = class_decl @Class [template = constants.%Class] {} {}
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @Class {
- // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {
- // CHECK:STDOUT: %self.patt: %Class = binding_pattern self
- // CHECK:STDOUT: %self.param_patt: %Class = value_param_pattern %self.patt, runtime_param0
- // CHECK:STDOUT: %return.patt: <error> = return_slot_pattern
- // CHECK:STDOUT: %return.param_patt: <error> = out_param_pattern %return.patt, runtime_param1
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%Class [template = constants.%Class]
- // CHECK:STDOUT: %self.ref: %Class = name_ref self, %self
- // CHECK:STDOUT: %.loc11: type = converted %self.ref, <error> [template = <error>]
- // CHECK:STDOUT: %self.param: %Class = value_param runtime_param0
- // CHECK:STDOUT: %self: %Class = bind_name self, %self.param
- // CHECK:STDOUT: %return.param: ref <error> = out_param runtime_param1
- // CHECK:STDOUT: %return: ref <error> = return_slot %return.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %.loc12: <witness> = complete_type_witness %.20 [template = constants.%.21]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%Class
- // CHECK:STDOUT: .F = %F.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @F[%self.param_patt: %Class]() -> <error>;
- // CHECK:STDOUT:
|