// 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 base class A { fn F[addr self: Self*](); } base class B { extend base: A; fn F[addr self: Self*](); } class C { extend base: B; fn F[addr self: Self*](); } class D { extend base: B; } fn Call(a: A*, b: B*, c: C*, d: D*) { (*a).F(); (*b).F(); (*c).F(); (*d).F(); } // CHECK:STDOUT: --- base_method_shadow.carbon // CHECK:STDOUT: // CHECK:STDOUT: constants { // CHECK:STDOUT: %A: type = class_type @A [template] // CHECK:STDOUT: %.1: type = ptr_type A [template] // CHECK:STDOUT: %.2: type = struct_type {} [template] // CHECK:STDOUT: %B: type = class_type @B [template] // CHECK:STDOUT: %.3: type = tuple_type () [template] // CHECK:STDOUT: %.4: type = ptr_type {} [template] // CHECK:STDOUT: %.5: type = unbound_element_type B, A [template] // CHECK:STDOUT: %.6: type = ptr_type B [template] // CHECK:STDOUT: %.7: type = struct_type {.base: A} [template] // CHECK:STDOUT: %C: type = class_type @C [template] // CHECK:STDOUT: %.8: type = struct_type {.base: {}*} [template] // CHECK:STDOUT: %.9: type = ptr_type {.base: A} [template] // CHECK:STDOUT: %.10: type = unbound_element_type C, B [template] // CHECK:STDOUT: %.11: type = ptr_type C [template] // CHECK:STDOUT: %.12: type = struct_type {.base: B} [template] // CHECK:STDOUT: %D: type = class_type @D [template] // CHECK:STDOUT: %.13: type = unbound_element_type D, B [template] // CHECK:STDOUT: %.14: type = ptr_type D [template] // CHECK:STDOUT: %.15: type = struct_type {.base: {.base: A}*} [template] // CHECK:STDOUT: %.16: type = ptr_type {.base: B} [template] // CHECK:STDOUT: } // CHECK:STDOUT: // CHECK:STDOUT: file { // CHECK:STDOUT: package: = namespace {.A = %A.decl, .B = %B.decl, .C = %C.decl, .D = %D.decl, .Call = %Call} [template] // CHECK:STDOUT: %A.decl = class_decl @A, () // CHECK:STDOUT: %B.decl = class_decl @B, () // CHECK:STDOUT: %C.decl = class_decl @C, () // CHECK:STDOUT: %D.decl = class_decl @D, () // CHECK:STDOUT: %Call: = fn_decl @Call [template] // CHECK:STDOUT: } // CHECK:STDOUT: // CHECK:STDOUT: class @A { // CHECK:STDOUT: %F: = fn_decl @F.1 [template] // CHECK:STDOUT: // CHECK:STDOUT: !members: // CHECK:STDOUT: .F = %F // CHECK:STDOUT: } // CHECK:STDOUT: // CHECK:STDOUT: class @B { // CHECK:STDOUT: %A.ref: type = name_ref A, constants.%A [template = constants.%A] // CHECK:STDOUT: %.loc12: = base_decl A, element0 [template] // CHECK:STDOUT: %F: = fn_decl @F.2 [template] // CHECK:STDOUT: // CHECK:STDOUT: !members: // CHECK:STDOUT: .base = %.loc12 // CHECK:STDOUT: .F = %F // CHECK:STDOUT: extend name_scope1 // CHECK:STDOUT: } // CHECK:STDOUT: // CHECK:STDOUT: class @C { // CHECK:STDOUT: %B.ref: type = name_ref B, constants.%B [template = constants.%B] // CHECK:STDOUT: %.loc17: = base_decl B, element0 [template] // CHECK:STDOUT: %F: = fn_decl @F.3 [template] // CHECK:STDOUT: // CHECK:STDOUT: !members: // CHECK:STDOUT: .base = %.loc17 // CHECK:STDOUT: .F = %F // CHECK:STDOUT: extend name_scope2 // CHECK:STDOUT: } // CHECK:STDOUT: // CHECK:STDOUT: class @D { // CHECK:STDOUT: %B.ref: type = name_ref B, constants.%B [template = constants.%B] // CHECK:STDOUT: %.loc22: = base_decl B, element0 [template] // CHECK:STDOUT: // CHECK:STDOUT: !members: // CHECK:STDOUT: .base = %.loc22 // CHECK:STDOUT: extend name_scope2 // CHECK:STDOUT: } // CHECK:STDOUT: // CHECK:STDOUT: fn @F.1[addr %self: A*](); // CHECK:STDOUT: // CHECK:STDOUT: fn @F.2[addr %self: B*](); // CHECK:STDOUT: // CHECK:STDOUT: fn @F.3[addr %self: C*](); // CHECK:STDOUT: // CHECK:STDOUT: fn @Call(%a: A*, %b: B*, %c: C*, %d: D*) { // CHECK:STDOUT: !entry: // CHECK:STDOUT: %a.ref: A* = name_ref a, %a // CHECK:STDOUT: %.loc26_4.1: ref A = deref %a.ref // CHECK:STDOUT: %.loc26_7: = bound_method %.loc26_4.1, @A.%F // CHECK:STDOUT: %.loc26_4.2: A* = addr_of %.loc26_4.1 // CHECK:STDOUT: %.loc26_9: init () = call %.loc26_7(%.loc26_4.2) // CHECK:STDOUT: %b.ref: B* = name_ref b, %b // CHECK:STDOUT: %.loc27_4.1: ref B = deref %b.ref // CHECK:STDOUT: %.loc27_7: = bound_method %.loc27_4.1, @B.%F // CHECK:STDOUT: %.loc27_4.2: B* = addr_of %.loc27_4.1 // CHECK:STDOUT: %.loc27_9: init () = call %.loc27_7(%.loc27_4.2) // CHECK:STDOUT: %c.ref: C* = name_ref c, %c // CHECK:STDOUT: %.loc28_4.1: ref C = deref %c.ref // CHECK:STDOUT: %.loc28_7: = bound_method %.loc28_4.1, @C.%F // CHECK:STDOUT: %.loc28_4.2: C* = addr_of %.loc28_4.1 // CHECK:STDOUT: %.loc28_9: init () = call %.loc28_7(%.loc28_4.2) // CHECK:STDOUT: %d.ref: D* = name_ref d, %d // CHECK:STDOUT: %.loc29_4.1: ref D = deref %d.ref // CHECK:STDOUT: %.loc29_7: = bound_method %.loc29_4.1, @B.%F // CHECK:STDOUT: %.loc29_4.2: D* = addr_of %.loc29_4.1 // CHECK:STDOUT: %.loc29_9.1: ref D = deref %.loc29_4.2 // CHECK:STDOUT: %.loc29_9.2: ref B = class_element_access %.loc29_9.1, element0 // CHECK:STDOUT: %.loc29_9.3: B* = addr_of %.loc29_9.2 // CHECK:STDOUT: %.loc29_4.3: B* = converted %.loc29_4.2, %.loc29_9.3 // CHECK:STDOUT: %.loc29_9.4: init () = call %.loc29_7(%.loc29_4.3) // CHECK:STDOUT: return // CHECK:STDOUT: } // CHECK:STDOUT: