base_method_shadow.carbon 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. //
  5. // AUTOUPDATE
  6. base class A {
  7. fn F[addr self: Self*]();
  8. }
  9. base class B {
  10. extend base: A;
  11. fn F[addr self: Self*]();
  12. }
  13. class C {
  14. extend base: B;
  15. fn F[addr self: Self*]();
  16. }
  17. class D {
  18. extend base: B;
  19. }
  20. fn Call(a: A*, b: B*, c: C*, d: D*) {
  21. (*a).F();
  22. (*b).F();
  23. (*c).F();
  24. (*d).F();
  25. }
  26. // CHECK:STDOUT: --- base_method_shadow.carbon
  27. // CHECK:STDOUT:
  28. // CHECK:STDOUT: constants {
  29. // CHECK:STDOUT: %A: type = class_type @A [template]
  30. // CHECK:STDOUT: %.1: type = ptr_type A [template]
  31. // CHECK:STDOUT: %.2: type = struct_type {} [template]
  32. // CHECK:STDOUT: %B: type = class_type @B [template]
  33. // CHECK:STDOUT: %.3: type = tuple_type () [template]
  34. // CHECK:STDOUT: %.4: type = ptr_type {} [template]
  35. // CHECK:STDOUT: %.5: type = unbound_element_type B, A [template]
  36. // CHECK:STDOUT: %.6: type = ptr_type B [template]
  37. // CHECK:STDOUT: %.7: type = struct_type {.base: A} [template]
  38. // CHECK:STDOUT: %C: type = class_type @C [template]
  39. // CHECK:STDOUT: %.8: type = struct_type {.base: {}*} [template]
  40. // CHECK:STDOUT: %.9: type = ptr_type {.base: A} [template]
  41. // CHECK:STDOUT: %.10: type = unbound_element_type C, B [template]
  42. // CHECK:STDOUT: %.11: type = ptr_type C [template]
  43. // CHECK:STDOUT: %.12: type = struct_type {.base: B} [template]
  44. // CHECK:STDOUT: %D: type = class_type @D [template]
  45. // CHECK:STDOUT: %.13: type = unbound_element_type D, B [template]
  46. // CHECK:STDOUT: %.14: type = ptr_type D [template]
  47. // CHECK:STDOUT: %.15: type = struct_type {.base: {.base: A}*} [template]
  48. // CHECK:STDOUT: %.16: type = ptr_type {.base: B} [template]
  49. // CHECK:STDOUT: }
  50. // CHECK:STDOUT:
  51. // CHECK:STDOUT: file {
  52. // CHECK:STDOUT: package: <namespace> = namespace {
  53. // CHECK:STDOUT: .A = %A.decl
  54. // CHECK:STDOUT: .B = %B.decl
  55. // CHECK:STDOUT: .C = %C.decl
  56. // CHECK:STDOUT: .D = %D.decl
  57. // CHECK:STDOUT: .Call = %Call
  58. // CHECK:STDOUT: } [template]
  59. // CHECK:STDOUT: %A.decl = class_decl @A {} [template = constants.%A]
  60. // CHECK:STDOUT: %B.decl = class_decl @B {} [template = constants.%B]
  61. // CHECK:STDOUT: %C.decl = class_decl @C {} [template = constants.%C]
  62. // CHECK:STDOUT: %D.decl = class_decl @D {} [template = constants.%D]
  63. // CHECK:STDOUT: %Call: <function> = fn_decl @Call {
  64. // CHECK:STDOUT: %A.ref: type = name_ref A, %A.decl [template = constants.%A]
  65. // CHECK:STDOUT: %.loc25_13: type = ptr_type A [template = constants.%.1]
  66. // CHECK:STDOUT: %a.loc25_9.1: A* = param a
  67. // CHECK:STDOUT: @Call.%a: A* = bind_name a, %a.loc25_9.1
  68. // CHECK:STDOUT: %B.ref: type = name_ref B, %B.decl [template = constants.%B]
  69. // CHECK:STDOUT: %.loc25_20: type = ptr_type B [template = constants.%.6]
  70. // CHECK:STDOUT: %b.loc25_16.1: B* = param b
  71. // CHECK:STDOUT: @Call.%b: B* = bind_name b, %b.loc25_16.1
  72. // CHECK:STDOUT: %C.ref: type = name_ref C, %C.decl [template = constants.%C]
  73. // CHECK:STDOUT: %.loc25_27: type = ptr_type C [template = constants.%.11]
  74. // CHECK:STDOUT: %c.loc25_23.1: C* = param c
  75. // CHECK:STDOUT: @Call.%c: C* = bind_name c, %c.loc25_23.1
  76. // CHECK:STDOUT: %D.ref: type = name_ref D, %D.decl [template = constants.%D]
  77. // CHECK:STDOUT: %.loc25_34: type = ptr_type D [template = constants.%.14]
  78. // CHECK:STDOUT: %d.loc25_30.1: D* = param d
  79. // CHECK:STDOUT: @Call.%d: D* = bind_name d, %d.loc25_30.1
  80. // CHECK:STDOUT: } [template]
  81. // CHECK:STDOUT: }
  82. // CHECK:STDOUT:
  83. // CHECK:STDOUT: class @A {
  84. // CHECK:STDOUT: %F: <function> = fn_decl @F.1 {
  85. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%A [template = constants.%A]
  86. // CHECK:STDOUT: %.loc8_23: type = ptr_type A [template = constants.%.1]
  87. // CHECK:STDOUT: %self.loc8_13.1: A* = param self
  88. // CHECK:STDOUT: %self.loc8_13.3: A* = bind_name self, %self.loc8_13.1
  89. // CHECK:STDOUT: %.loc8_8: A* = addr_pattern %self.loc8_13.3
  90. // CHECK:STDOUT: } [template]
  91. // CHECK:STDOUT:
  92. // CHECK:STDOUT: !members:
  93. // CHECK:STDOUT: .Self = constants.%A
  94. // CHECK:STDOUT: .F = %F
  95. // CHECK:STDOUT: }
  96. // CHECK:STDOUT:
  97. // CHECK:STDOUT: class @B {
  98. // CHECK:STDOUT: %A.ref: type = name_ref A, file.%A.decl [template = constants.%A]
  99. // CHECK:STDOUT: %.loc12: <unbound element of class B> = base_decl A, element0 [template]
  100. // CHECK:STDOUT: %F: <function> = fn_decl @F.2 {
  101. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%B [template = constants.%B]
  102. // CHECK:STDOUT: %.loc13_23: type = ptr_type B [template = constants.%.6]
  103. // CHECK:STDOUT: %self.loc13_13.1: B* = param self
  104. // CHECK:STDOUT: %self.loc13_13.3: B* = bind_name self, %self.loc13_13.1
  105. // CHECK:STDOUT: %.loc13_8: B* = addr_pattern %self.loc13_13.3
  106. // CHECK:STDOUT: } [template]
  107. // CHECK:STDOUT:
  108. // CHECK:STDOUT: !members:
  109. // CHECK:STDOUT: .Self = constants.%B
  110. // CHECK:STDOUT: .base = %.loc12
  111. // CHECK:STDOUT: .F = %F
  112. // CHECK:STDOUT: extend name_scope1
  113. // CHECK:STDOUT: }
  114. // CHECK:STDOUT:
  115. // CHECK:STDOUT: class @C {
  116. // CHECK:STDOUT: %B.ref: type = name_ref B, file.%B.decl [template = constants.%B]
  117. // CHECK:STDOUT: %.loc17: <unbound element of class C> = base_decl B, element0 [template]
  118. // CHECK:STDOUT: %F: <function> = fn_decl @F.3 {
  119. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%C [template = constants.%C]
  120. // CHECK:STDOUT: %.loc18_23: type = ptr_type C [template = constants.%.11]
  121. // CHECK:STDOUT: %self.loc18_13.1: C* = param self
  122. // CHECK:STDOUT: %self.loc18_13.3: C* = bind_name self, %self.loc18_13.1
  123. // CHECK:STDOUT: %.loc18_8: C* = addr_pattern %self.loc18_13.3
  124. // CHECK:STDOUT: } [template]
  125. // CHECK:STDOUT:
  126. // CHECK:STDOUT: !members:
  127. // CHECK:STDOUT: .Self = constants.%C
  128. // CHECK:STDOUT: .base = %.loc17
  129. // CHECK:STDOUT: .F = %F
  130. // CHECK:STDOUT: extend name_scope2
  131. // CHECK:STDOUT: }
  132. // CHECK:STDOUT:
  133. // CHECK:STDOUT: class @D {
  134. // CHECK:STDOUT: %B.ref: type = name_ref B, file.%B.decl [template = constants.%B]
  135. // CHECK:STDOUT: %.loc22: <unbound element of class D> = base_decl B, element0 [template]
  136. // CHECK:STDOUT:
  137. // CHECK:STDOUT: !members:
  138. // CHECK:STDOUT: .Self = constants.%D
  139. // CHECK:STDOUT: .base = %.loc22
  140. // CHECK:STDOUT: extend name_scope2
  141. // CHECK:STDOUT: }
  142. // CHECK:STDOUT:
  143. // CHECK:STDOUT: fn @F.1[addr @A.%self.loc8_13.3: A*]();
  144. // CHECK:STDOUT:
  145. // CHECK:STDOUT: fn @F.2[addr @B.%self.loc13_13.3: B*]();
  146. // CHECK:STDOUT:
  147. // CHECK:STDOUT: fn @F.3[addr @C.%self.loc18_13.3: C*]();
  148. // CHECK:STDOUT:
  149. // CHECK:STDOUT: fn @Call(%a: A*, %b: B*, %c: C*, %d: D*) {
  150. // CHECK:STDOUT: !entry:
  151. // CHECK:STDOUT: %a.ref: A* = name_ref a, %a
  152. // CHECK:STDOUT: %.loc26_4.1: ref A = deref %a.ref
  153. // CHECK:STDOUT: %.loc26_7: <bound method> = bound_method %.loc26_4.1, @A.%F
  154. // CHECK:STDOUT: %.loc26_4.2: A* = addr_of %.loc26_4.1
  155. // CHECK:STDOUT: %.loc26_9: init () = call %.loc26_7(%.loc26_4.2)
  156. // CHECK:STDOUT: %b.ref: B* = name_ref b, %b
  157. // CHECK:STDOUT: %.loc27_4.1: ref B = deref %b.ref
  158. // CHECK:STDOUT: %.loc27_7: <bound method> = bound_method %.loc27_4.1, @B.%F
  159. // CHECK:STDOUT: %.loc27_4.2: B* = addr_of %.loc27_4.1
  160. // CHECK:STDOUT: %.loc27_9: init () = call %.loc27_7(%.loc27_4.2)
  161. // CHECK:STDOUT: %c.ref: C* = name_ref c, %c
  162. // CHECK:STDOUT: %.loc28_4.1: ref C = deref %c.ref
  163. // CHECK:STDOUT: %.loc28_7: <bound method> = bound_method %.loc28_4.1, @C.%F
  164. // CHECK:STDOUT: %.loc28_4.2: C* = addr_of %.loc28_4.1
  165. // CHECK:STDOUT: %.loc28_9: init () = call %.loc28_7(%.loc28_4.2)
  166. // CHECK:STDOUT: %d.ref: D* = name_ref d, %d
  167. // CHECK:STDOUT: %.loc29_4.1: ref D = deref %d.ref
  168. // CHECK:STDOUT: %.loc29_7: <bound method> = bound_method %.loc29_4.1, @B.%F
  169. // CHECK:STDOUT: %.loc29_4.2: D* = addr_of %.loc29_4.1
  170. // CHECK:STDOUT: %.loc29_9.1: ref D = deref %.loc29_4.2
  171. // CHECK:STDOUT: %.loc29_9.2: ref B = class_element_access %.loc29_9.1, element0
  172. // CHECK:STDOUT: %.loc29_9.3: B* = addr_of %.loc29_9.2
  173. // CHECK:STDOUT: %.loc29_4.3: B* = converted %.loc29_4.2, %.loc29_9.3
  174. // CHECK:STDOUT: %.loc29_9.4: init () = call %.loc29_7(%.loc29_4.3)
  175. // CHECK:STDOUT: return
  176. // CHECK:STDOUT: }
  177. // CHECK:STDOUT: