extend_impl.carbon 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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. // TODO: Add ranges and switch to "--dump-sem-ir-ranges=only".
  6. // EXTRA-ARGS: --dump-sem-ir-ranges=if-present
  7. //
  8. // AUTOUPDATE
  9. // TIP: To test this file alone, run:
  10. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/impl/extend_impl.carbon
  11. // TIP: To dump output, run:
  12. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/impl/extend_impl.carbon
  13. interface HasF {
  14. fn F();
  15. }
  16. class C {
  17. extend impl as HasF {
  18. fn F() {}
  19. }
  20. }
  21. fn G(c: C) {
  22. C.F();
  23. c.F();
  24. }
  25. // CHECK:STDOUT: --- extend_impl.carbon
  26. // CHECK:STDOUT:
  27. // CHECK:STDOUT: constants {
  28. // CHECK:STDOUT: %HasF.type: type = facet_type <@HasF> [concrete]
  29. // CHECK:STDOUT: %Self: %HasF.type = bind_symbolic_name Self, 0 [symbolic]
  30. // CHECK:STDOUT: %F.type.b7b: type = fn_type @F.1 [concrete]
  31. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  32. // CHECK:STDOUT: %F.f50: %F.type.b7b = struct_value () [concrete]
  33. // CHECK:STDOUT: %HasF.assoc_type: type = assoc_entity_type @HasF [concrete]
  34. // CHECK:STDOUT: %assoc0: %HasF.assoc_type = assoc_entity element0, @HasF.%F.decl [concrete]
  35. // CHECK:STDOUT: %C: type = class_type @C [concrete]
  36. // CHECK:STDOUT: %HasF.impl_witness: <witness> = impl_witness @C.%HasF.impl_witness_table [concrete]
  37. // CHECK:STDOUT: %F.type.a65: type = fn_type @F.2 [concrete]
  38. // CHECK:STDOUT: %F.ad8: %F.type.a65 = struct_value () [concrete]
  39. // CHECK:STDOUT: %HasF.facet: %HasF.type = facet_value %C, (%HasF.impl_witness) [concrete]
  40. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  41. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete]
  42. // CHECK:STDOUT: %pattern_type: type = pattern_type %C [concrete]
  43. // CHECK:STDOUT: %G.type: type = fn_type @G [concrete]
  44. // CHECK:STDOUT: %G: %G.type = struct_value () [concrete]
  45. // CHECK:STDOUT: %.a44: type = fn_type_with_self_type %F.type.b7b, %HasF.facet [concrete]
  46. // CHECK:STDOUT: }
  47. // CHECK:STDOUT:
  48. // CHECK:STDOUT: imports {
  49. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  50. // CHECK:STDOUT: import Core//prelude
  51. // CHECK:STDOUT: import Core//prelude/...
  52. // CHECK:STDOUT: }
  53. // CHECK:STDOUT: }
  54. // CHECK:STDOUT:
  55. // CHECK:STDOUT: file {
  56. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  57. // CHECK:STDOUT: .Core = imports.%Core
  58. // CHECK:STDOUT: .HasF = %HasF.decl
  59. // CHECK:STDOUT: .C = %C.decl
  60. // CHECK:STDOUT: .G = %G.decl
  61. // CHECK:STDOUT: }
  62. // CHECK:STDOUT: %Core.import = import Core
  63. // CHECK:STDOUT: %HasF.decl: type = interface_decl @HasF [concrete = constants.%HasF.type] {} {}
  64. // CHECK:STDOUT: %C.decl: type = class_decl @C [concrete = constants.%C] {} {}
  65. // CHECK:STDOUT: %G.decl: %G.type = fn_decl @G [concrete = constants.%G] {
  66. // CHECK:STDOUT: %c.patt: %pattern_type = binding_pattern c [concrete]
  67. // CHECK:STDOUT: %c.param_patt: %pattern_type = value_param_pattern %c.patt, call_param0 [concrete]
  68. // CHECK:STDOUT: } {
  69. // CHECK:STDOUT: %c.param: %C = value_param call_param0
  70. // CHECK:STDOUT: %C.ref.loc24: type = name_ref C, file.%C.decl [concrete = constants.%C]
  71. // CHECK:STDOUT: %c: %C = bind_name c, %c.param
  72. // CHECK:STDOUT: }
  73. // CHECK:STDOUT: }
  74. // CHECK:STDOUT:
  75. // CHECK:STDOUT: interface @HasF {
  76. // CHECK:STDOUT: %Self: %HasF.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self]
  77. // CHECK:STDOUT: %F.decl: %F.type.b7b = fn_decl @F.1 [concrete = constants.%F.f50] {} {}
  78. // CHECK:STDOUT: %assoc0: %HasF.assoc_type = assoc_entity element0, %F.decl [concrete = constants.%assoc0]
  79. // CHECK:STDOUT:
  80. // CHECK:STDOUT: !members:
  81. // CHECK:STDOUT: .Self = %Self
  82. // CHECK:STDOUT: .F = %assoc0
  83. // CHECK:STDOUT: witness = (%F.decl)
  84. // CHECK:STDOUT: }
  85. // CHECK:STDOUT:
  86. // CHECK:STDOUT: impl @impl: %Self.ref as %HasF.ref {
  87. // CHECK:STDOUT: %F.decl: %F.type.a65 = fn_decl @F.2 [concrete = constants.%F.ad8] {} {}
  88. // CHECK:STDOUT:
  89. // CHECK:STDOUT: !members:
  90. // CHECK:STDOUT: .F = %F.decl
  91. // CHECK:STDOUT: witness = @C.%HasF.impl_witness
  92. // CHECK:STDOUT: }
  93. // CHECK:STDOUT:
  94. // CHECK:STDOUT: class @C {
  95. // CHECK:STDOUT: impl_decl @impl [concrete] {} {
  96. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%C [concrete = constants.%C]
  97. // CHECK:STDOUT: %HasF.ref: type = name_ref HasF, file.%HasF.decl [concrete = constants.%HasF.type]
  98. // CHECK:STDOUT: }
  99. // CHECK:STDOUT: %HasF.impl_witness_table = impl_witness_table (@impl.%F.decl), @impl [concrete]
  100. // CHECK:STDOUT: %HasF.impl_witness: <witness> = impl_witness %HasF.impl_witness_table [concrete = constants.%HasF.impl_witness]
  101. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete = constants.%empty_struct_type]
  102. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type]
  103. // CHECK:STDOUT: complete_type_witness = %complete_type
  104. // CHECK:STDOUT:
  105. // CHECK:STDOUT: !members:
  106. // CHECK:STDOUT: .Self = constants.%C
  107. // CHECK:STDOUT: .HasF = <poisoned>
  108. // CHECK:STDOUT: .F = <poisoned>
  109. // CHECK:STDOUT: extend @impl.%HasF.ref
  110. // CHECK:STDOUT: }
  111. // CHECK:STDOUT:
  112. // CHECK:STDOUT: generic fn @F.1(@HasF.%Self: %HasF.type) {
  113. // CHECK:STDOUT: fn();
  114. // CHECK:STDOUT: }
  115. // CHECK:STDOUT:
  116. // CHECK:STDOUT: fn @F.2() {
  117. // CHECK:STDOUT: !entry:
  118. // CHECK:STDOUT: return
  119. // CHECK:STDOUT: }
  120. // CHECK:STDOUT:
  121. // CHECK:STDOUT: fn @G(%c.param: %C) {
  122. // CHECK:STDOUT: !entry:
  123. // CHECK:STDOUT: %C.ref.loc25: type = name_ref C, file.%C.decl [concrete = constants.%C]
  124. // CHECK:STDOUT: %F.ref.loc25: %HasF.assoc_type = name_ref F, @HasF.%assoc0 [concrete = constants.%assoc0]
  125. // CHECK:STDOUT: %impl.elem0.loc25: %.a44 = impl_witness_access constants.%HasF.impl_witness, element0 [concrete = constants.%F.ad8]
  126. // CHECK:STDOUT: %F.call.loc25: init %empty_tuple.type = call %impl.elem0.loc25()
  127. // CHECK:STDOUT: %c.ref: %C = name_ref c, %c
  128. // CHECK:STDOUT: %F.ref.loc26: %HasF.assoc_type = name_ref F, @HasF.%assoc0 [concrete = constants.%assoc0]
  129. // CHECK:STDOUT: %impl.elem0.loc26: %.a44 = impl_witness_access constants.%HasF.impl_witness, element0 [concrete = constants.%F.ad8]
  130. // CHECK:STDOUT: %F.call.loc26: init %empty_tuple.type = call %impl.elem0.loc26()
  131. // CHECK:STDOUT: return
  132. // CHECK:STDOUT: }
  133. // CHECK:STDOUT:
  134. // CHECK:STDOUT: specific @F.1(constants.%Self) {}
  135. // CHECK:STDOUT:
  136. // CHECK:STDOUT: specific @F.1(constants.%HasF.facet) {}
  137. // CHECK:STDOUT: