base_method.carbon 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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 {.Base = %Base.decl, .Derived = %Derived.decl, .Call = %Call} [template]
  39. // CHECK:STDOUT: %Base.decl = class_decl @Base, () [template = constants.%Base]
  40. // CHECK:STDOUT: %F: <function> = fn_decl @F [template]
  41. // CHECK:STDOUT: %Derived.decl = class_decl @Derived, () [template = constants.%Derived]
  42. // CHECK:STDOUT: %Call: <function> = fn_decl @Call [template]
  43. // CHECK:STDOUT: }
  44. // CHECK:STDOUT:
  45. // CHECK:STDOUT: class @Base {
  46. // CHECK:STDOUT: %.loc8: <unbound element of class Base> = field_decl a, element0 [template]
  47. // CHECK:STDOUT: %F: <function> = fn_decl @F [template]
  48. // CHECK:STDOUT:
  49. // CHECK:STDOUT: !members:
  50. // CHECK:STDOUT: .a = %.loc8
  51. // CHECK:STDOUT: .F = %F
  52. // CHECK:STDOUT: }
  53. // CHECK:STDOUT:
  54. // CHECK:STDOUT: class @Derived {
  55. // CHECK:STDOUT: %Base.ref: type = name_ref Base, file.%Base.decl [template = constants.%Base]
  56. // CHECK:STDOUT: %.loc18: <unbound element of class Derived> = base_decl Base, element0 [template]
  57. // CHECK:STDOUT:
  58. // CHECK:STDOUT: !members:
  59. // CHECK:STDOUT: .base = %.loc18
  60. // CHECK:STDOUT: extend name_scope1
  61. // CHECK:STDOUT: }
  62. // CHECK:STDOUT:
  63. // CHECK:STDOUT: fn @F[addr %self: Base*]() {
  64. // CHECK:STDOUT: !entry:
  65. // CHECK:STDOUT: %self.ref: Base* = name_ref self, %self
  66. // CHECK:STDOUT: %.loc14_4: ref Base = deref %self.ref
  67. // CHECK:STDOUT: %.loc14_10: ref i32 = class_element_access %.loc14_4, element0
  68. // CHECK:STDOUT: %.loc14_15: i32 = int_literal 1 [template = constants.%.5]
  69. // CHECK:STDOUT: assign %.loc14_10, %.loc14_15
  70. // CHECK:STDOUT: return
  71. // CHECK:STDOUT: }
  72. // CHECK:STDOUT:
  73. // CHECK:STDOUT: fn @Call(%p: Derived*) {
  74. // CHECK:STDOUT: !entry:
  75. // CHECK:STDOUT: %p.ref: Derived* = name_ref p, %p
  76. // CHECK:STDOUT: %.loc22_4.1: ref Derived = deref %p.ref
  77. // CHECK:STDOUT: %.loc22_7: <bound method> = bound_method %.loc22_4.1, @Base.%F
  78. // CHECK:STDOUT: %.loc22_4.2: Derived* = addr_of %.loc22_4.1
  79. // CHECK:STDOUT: %.loc22_9.1: ref Derived = deref %.loc22_4.2
  80. // CHECK:STDOUT: %.loc22_9.2: ref Base = class_element_access %.loc22_9.1, element0
  81. // CHECK:STDOUT: %.loc22_9.3: Base* = addr_of %.loc22_9.2
  82. // CHECK:STDOUT: %.loc22_4.3: Base* = converted %.loc22_4.2, %.loc22_9.3
  83. // CHECK:STDOUT: %.loc22_9.4: init () = call %.loc22_7(%.loc22_4.3)
  84. // CHECK:STDOUT: return
  85. // CHECK:STDOUT: }
  86. // CHECK:STDOUT: