base_method.carbon 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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 Base {
  7. var a: i32;
  8. fn F[addr self: Self*]();
  9. }
  10. fn Base.F[addr self: Base*]() {
  11. (*self).a = 1;
  12. }
  13. class Derived {
  14. extend base: Base;
  15. }
  16. fn Call(p: Derived*) {
  17. (*p).F();
  18. }
  19. // CHECK:STDOUT: --- base_method.carbon
  20. // CHECK:STDOUT:
  21. // CHECK:STDOUT: constants {
  22. // CHECK:STDOUT: %Base: type = class_type @Base [template]
  23. // CHECK:STDOUT: %.1: type = unbound_element_type Base, i32 [template]
  24. // CHECK:STDOUT: %.2: type = ptr_type Base [template]
  25. // CHECK:STDOUT: %.3: type = struct_type {.a: i32} [template]
  26. // CHECK:STDOUT: %.4: type = ptr_type {.a: i32} [template]
  27. // CHECK:STDOUT: %.5: i32 = int_literal 1 [template]
  28. // CHECK:STDOUT: %Derived: type = class_type @Derived [template]
  29. // CHECK:STDOUT: %.6: type = unbound_element_type Derived, Base [template]
  30. // CHECK:STDOUT: %.7: type = struct_type {.base: Base} [template]
  31. // CHECK:STDOUT: %.8: type = ptr_type Derived [template]
  32. // CHECK:STDOUT: %.9: type = struct_type {.base: {.a: i32}*} [template]
  33. // CHECK:STDOUT: %.10: type = ptr_type {.base: Base} [template]
  34. // CHECK:STDOUT: %.11: type = tuple_type () [template]
  35. // CHECK:STDOUT: }
  36. // CHECK:STDOUT:
  37. // CHECK:STDOUT: file {
  38. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  39. // CHECK:STDOUT: .Core = %Core
  40. // CHECK:STDOUT: .Base = %Base.decl
  41. // CHECK:STDOUT: .Derived = %Derived.decl
  42. // CHECK:STDOUT: .Call = %Call
  43. // CHECK:STDOUT: }
  44. // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
  45. // CHECK:STDOUT: %Base.decl: type = class_decl @Base [template = constants.%Base] {}
  46. // CHECK:STDOUT: %F: <function> = fn_decl @F [template] {
  47. // CHECK:STDOUT: %Base.ref: type = name_ref Base, %Base.decl [template = constants.%Base]
  48. // CHECK:STDOUT: %.loc13_26: type = ptr_type Base [template = constants.%.2]
  49. // CHECK:STDOUT: %self.loc13_16.1: Base* = param self
  50. // CHECK:STDOUT: @F.%self: Base* = bind_name self, %self.loc13_16.1
  51. // CHECK:STDOUT: @F.%.loc13: Base* = addr_pattern @F.%self
  52. // CHECK:STDOUT: }
  53. // CHECK:STDOUT: %Derived.decl: type = class_decl @Derived [template = constants.%Derived] {}
  54. // CHECK:STDOUT: %Call: <function> = fn_decl @Call [template] {
  55. // CHECK:STDOUT: %Derived.ref: type = name_ref Derived, %Derived.decl [template = constants.%Derived]
  56. // CHECK:STDOUT: %.loc21: type = ptr_type Derived [template = constants.%.8]
  57. // CHECK:STDOUT: %p.loc21_9.1: Derived* = param p
  58. // CHECK:STDOUT: @Call.%p: Derived* = bind_name p, %p.loc21_9.1
  59. // CHECK:STDOUT: }
  60. // CHECK:STDOUT: }
  61. // CHECK:STDOUT:
  62. // CHECK:STDOUT: class @Base {
  63. // CHECK:STDOUT: %.loc8: <unbound element of class Base> = field_decl a, element0 [template]
  64. // CHECK:STDOUT: %F: <function> = fn_decl @F [template] {
  65. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%Base [template = constants.%Base]
  66. // CHECK:STDOUT: %.loc10_23: type = ptr_type Base [template = constants.%.2]
  67. // CHECK:STDOUT: %self.loc10_13.1: Base* = param self
  68. // CHECK:STDOUT: %self.loc10_13.3: Base* = bind_name self, %self.loc10_13.1
  69. // CHECK:STDOUT: %.loc10_8: Base* = addr_pattern %self.loc10_13.3
  70. // CHECK:STDOUT: }
  71. // CHECK:STDOUT:
  72. // CHECK:STDOUT: !members:
  73. // CHECK:STDOUT: .Self = constants.%Base
  74. // CHECK:STDOUT: .a = %.loc8
  75. // CHECK:STDOUT: .F = %F
  76. // CHECK:STDOUT: }
  77. // CHECK:STDOUT:
  78. // CHECK:STDOUT: class @Derived {
  79. // CHECK:STDOUT: %Base.ref: type = name_ref Base, file.%Base.decl [template = constants.%Base]
  80. // CHECK:STDOUT: %.loc18: <unbound element of class Derived> = base_decl Base, element0 [template]
  81. // CHECK:STDOUT:
  82. // CHECK:STDOUT: !members:
  83. // CHECK:STDOUT: .Self = constants.%Derived
  84. // CHECK:STDOUT: .base = %.loc18
  85. // CHECK:STDOUT: extend name_scope2
  86. // CHECK:STDOUT: }
  87. // CHECK:STDOUT:
  88. // CHECK:STDOUT: fn @F[addr %self: Base*]() {
  89. // CHECK:STDOUT: !entry:
  90. // CHECK:STDOUT: %self.ref: Base* = name_ref self, %self
  91. // CHECK:STDOUT: %.loc14_4: ref Base = deref %self.ref
  92. // CHECK:STDOUT: %a.ref: <unbound element of class Base> = name_ref a, @Base.%.loc8 [template = @Base.%.loc8]
  93. // CHECK:STDOUT: %.loc14_10: ref i32 = class_element_access %.loc14_4, element0
  94. // CHECK:STDOUT: %.loc14_15: i32 = int_literal 1 [template = constants.%.5]
  95. // CHECK:STDOUT: assign %.loc14_10, %.loc14_15
  96. // CHECK:STDOUT: return
  97. // CHECK:STDOUT: }
  98. // CHECK:STDOUT:
  99. // CHECK:STDOUT: fn @Call(%p: Derived*) {
  100. // CHECK:STDOUT: !entry:
  101. // CHECK:STDOUT: %p.ref: Derived* = name_ref p, %p
  102. // CHECK:STDOUT: %.loc22_4.1: ref Derived = deref %p.ref
  103. // CHECK:STDOUT: %F.ref: <function> = name_ref F, @Base.%F [template = @Base.%F]
  104. // CHECK:STDOUT: %.loc22_7: <bound method> = bound_method %.loc22_4.1, %F.ref
  105. // CHECK:STDOUT: %.loc22_4.2: Derived* = addr_of %.loc22_4.1
  106. // CHECK:STDOUT: %.loc22_9.1: ref Derived = deref %.loc22_4.2
  107. // CHECK:STDOUT: %.loc22_9.2: ref Base = class_element_access %.loc22_9.1, element0
  108. // CHECK:STDOUT: %.loc22_9.3: Base* = addr_of %.loc22_9.2
  109. // CHECK:STDOUT: %.loc22_4.3: Base* = converted %.loc22_4.2, %.loc22_9.3
  110. // CHECK:STDOUT: %.loc22_9.4: init () = call %.loc22_7(%.loc22_4.3)
  111. // CHECK:STDOUT: return
  112. // CHECK:STDOUT: }
  113. // CHECK:STDOUT: