generic_method.carbon 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. // TIP: To test this file alone, run:
  7. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/class/generic_method.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/class/generic_method.carbon
  10. class Class(T:! type) {
  11. var a: T;
  12. fn F[self: Self](n: T);
  13. }
  14. fn Class(T:! type).F[self: Self](n: T) {}
  15. // CHECK:STDOUT: --- generic_method.carbon
  16. // CHECK:STDOUT:
  17. // CHECK:STDOUT: constants {
  18. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic]
  19. // CHECK:STDOUT: %T.patt: type = symbolic_binding_pattern T, 0 [symbolic]
  20. // CHECK:STDOUT: %Class.type: type = generic_class_type @Class [template]
  21. // CHECK:STDOUT: %Class.1: %Class.type = struct_value () [template]
  22. // CHECK:STDOUT: %Class.2: type = class_type @Class, @Class(%T) [symbolic]
  23. // CHECK:STDOUT: %.1: type = unbound_element_type %Class.2, %T [symbolic]
  24. // CHECK:STDOUT: %F.type: type = fn_type @F, @Class(%T) [symbolic]
  25. // CHECK:STDOUT: %F: %F.type = struct_value () [symbolic]
  26. // CHECK:STDOUT: %.2: type = struct_type {.a: %T} [symbolic]
  27. // CHECK:STDOUT: %.3: <witness> = complete_type_witness %.2 [symbolic]
  28. // CHECK:STDOUT: }
  29. // CHECK:STDOUT:
  30. // CHECK:STDOUT: imports {
  31. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  32. // CHECK:STDOUT: import Core//prelude
  33. // CHECK:STDOUT: import Core//prelude/...
  34. // CHECK:STDOUT: }
  35. // CHECK:STDOUT: }
  36. // CHECK:STDOUT:
  37. // CHECK:STDOUT: file {
  38. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  39. // CHECK:STDOUT: .Core = imports.%Core
  40. // CHECK:STDOUT: .Class = %Class.decl
  41. // CHECK:STDOUT: }
  42. // CHECK:STDOUT: %Core.import = import Core
  43. // CHECK:STDOUT: %Class.decl: %Class.type = class_decl @Class [template = constants.%Class.1] {
  44. // CHECK:STDOUT: %T.patt.loc11_13.1: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc11_13.2 (constants.%T.patt)]
  45. // CHECK:STDOUT: %T.param_patt: type = value_param_pattern %T.patt.loc11_13.1, runtime_param<invalid> [symbolic = %T.patt.loc11_13.2 (constants.%T.patt)]
  46. // CHECK:STDOUT: } {
  47. // CHECK:STDOUT: %T.param: type = value_param runtime_param<invalid>
  48. // CHECK:STDOUT: %T.loc11_13.1: type = bind_symbolic_name T, 0, %T.param [symbolic = %T.loc11_13.2 (constants.%T)]
  49. // CHECK:STDOUT: }
  50. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [symbolic = constants.%F] {
  51. // CHECK:STDOUT: %self.patt: %Class.2 = binding_pattern self
  52. // CHECK:STDOUT: %self.param_patt: %Class.2 = value_param_pattern %self.patt, runtime_param0
  53. // CHECK:STDOUT: %n.patt: %T = binding_pattern n
  54. // CHECK:STDOUT: %n.param_patt: %T = value_param_pattern %n.patt, runtime_param1
  55. // CHECK:STDOUT: } {
  56. // CHECK:STDOUT: %T.param: type = value_param runtime_param<invalid>
  57. // CHECK:STDOUT: %T.loc16: type = bind_symbolic_name T, 0, %T.param [symbolic = constants.%T]
  58. // CHECK:STDOUT: %.loc16: type = specific_constant constants.%Class.2, @Class(constants.%T) [symbolic = constants.%Class.2]
  59. // CHECK:STDOUT: %Self.ref.loc16: type = name_ref Self, %.loc16 [symbolic = constants.%Class.2]
  60. // CHECK:STDOUT: %T.ref.loc16: type = name_ref T, %T.loc16 [symbolic = constants.%T]
  61. // CHECK:STDOUT: %self.param.loc16: %Class.2 = value_param runtime_param0
  62. // CHECK:STDOUT: %self.loc16: %Class.2 = bind_name self, %self.param.loc16
  63. // CHECK:STDOUT: %n.param.loc16: %T = value_param runtime_param1
  64. // CHECK:STDOUT: %n.loc16: %T = bind_name n, %n.param.loc16
  65. // CHECK:STDOUT: }
  66. // CHECK:STDOUT: }
  67. // CHECK:STDOUT:
  68. // CHECK:STDOUT: generic class @Class(%T.loc11_13.1: type) {
  69. // CHECK:STDOUT: %T.loc11_13.2: type = bind_symbolic_name T, 0 [symbolic = %T.loc11_13.2 (constants.%T)]
  70. // CHECK:STDOUT: %T.patt.loc11_13.2: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc11_13.2 (constants.%T.patt)]
  71. // CHECK:STDOUT:
  72. // CHECK:STDOUT: !definition:
  73. // CHECK:STDOUT: %Class: type = class_type @Class, @Class(%T.loc11_13.2) [symbolic = %Class (constants.%Class.2)]
  74. // CHECK:STDOUT: %.loc12_8.2: type = unbound_element_type @Class.%Class (%Class.2), @Class.%T.loc11_13.2 (%T) [symbolic = %.loc12_8.2 (constants.%.1)]
  75. // CHECK:STDOUT: %F.type: type = fn_type @F, @Class(%T.loc11_13.2) [symbolic = %F.type (constants.%F.type)]
  76. // CHECK:STDOUT: %F: @Class.%F.type (%F.type) = struct_value () [symbolic = %F (constants.%F)]
  77. // CHECK:STDOUT: %.loc14_1.2: type = struct_type {.a: @Class.%T.loc11_13.2 (%T)} [symbolic = %.loc14_1.2 (constants.%.2)]
  78. // CHECK:STDOUT: %.loc14_1.3: <witness> = complete_type_witness @Class.%.loc14_1.2 (%.2) [symbolic = %.loc14_1.3 (constants.%.3)]
  79. // CHECK:STDOUT:
  80. // CHECK:STDOUT: class {
  81. // CHECK:STDOUT: %T.ref: type = name_ref T, %T.loc11_13.1 [symbolic = %T.loc11_13.2 (constants.%T)]
  82. // CHECK:STDOUT: %.loc12_8.1: @Class.%.loc12_8.2 (%.1) = field_decl a, element0 [template]
  83. // CHECK:STDOUT: %F.decl: @Class.%F.type (%F.type) = fn_decl @F [symbolic = @Class.%F (constants.%F)] {
  84. // CHECK:STDOUT: %self.patt: %Class.2 = binding_pattern self
  85. // CHECK:STDOUT: %self.param_patt: %Class.2 = value_param_pattern %self.patt, runtime_param0
  86. // CHECK:STDOUT: %n.patt: %T = binding_pattern n
  87. // CHECK:STDOUT: %n.param_patt: %T = value_param_pattern %n.patt, runtime_param1
  88. // CHECK:STDOUT: } {
  89. // CHECK:STDOUT: %.loc13: type = specific_constant constants.%Class.2, @Class(constants.%T) [symbolic = %Class (constants.%Class.2)]
  90. // CHECK:STDOUT: %Self.ref.loc13: type = name_ref Self, %.loc13 [symbolic = %Class (constants.%Class.2)]
  91. // CHECK:STDOUT: %T.ref.loc13: type = name_ref T, @Class.%T.loc11_13.1 [symbolic = %T.loc13 (constants.%T)]
  92. // CHECK:STDOUT: %self.param.loc13: @F.%Class (%Class.2) = value_param runtime_param0
  93. // CHECK:STDOUT: %self.loc13: @F.%Class (%Class.2) = bind_name self, %self.param.loc13
  94. // CHECK:STDOUT: %n.param.loc13: @F.%T.loc13 (%T) = value_param runtime_param1
  95. // CHECK:STDOUT: %n.loc13: @F.%T.loc13 (%T) = bind_name n, %n.param.loc13
  96. // CHECK:STDOUT: }
  97. // CHECK:STDOUT: %.loc14_1.1: <witness> = complete_type_witness %.2 [symbolic = %.loc14_1.3 (constants.%.3)]
  98. // CHECK:STDOUT:
  99. // CHECK:STDOUT: !members:
  100. // CHECK:STDOUT: .Self = constants.%Class.2
  101. // CHECK:STDOUT: .a = %.loc12_8.1
  102. // CHECK:STDOUT: .F = %F.decl
  103. // CHECK:STDOUT: }
  104. // CHECK:STDOUT: }
  105. // CHECK:STDOUT:
  106. // CHECK:STDOUT: generic fn @F(@Class.%T.loc11_13.1: type) {
  107. // CHECK:STDOUT: %T.loc13: type = bind_symbolic_name T, 0 [symbolic = %T.loc13 (constants.%T)]
  108. // CHECK:STDOUT: %Class: type = class_type @Class, @Class(%T.loc13) [symbolic = %Class (constants.%Class.2)]
  109. // CHECK:STDOUT:
  110. // CHECK:STDOUT: !definition:
  111. // CHECK:STDOUT:
  112. // CHECK:STDOUT: fn[%self.param_patt: %Class.2](%n.param_patt: %T) {
  113. // CHECK:STDOUT: !entry:
  114. // CHECK:STDOUT: return
  115. // CHECK:STDOUT: }
  116. // CHECK:STDOUT: }
  117. // CHECK:STDOUT:
  118. // CHECK:STDOUT: specific @Class(constants.%T) {
  119. // CHECK:STDOUT: %T.loc11_13.2 => constants.%T
  120. // CHECK:STDOUT: %T.patt.loc11_13.2 => constants.%T
  121. // CHECK:STDOUT:
  122. // CHECK:STDOUT: !definition:
  123. // CHECK:STDOUT: %Class => constants.%Class.2
  124. // CHECK:STDOUT: %.loc12_8.2 => constants.%.1
  125. // CHECK:STDOUT: %F.type => constants.%F.type
  126. // CHECK:STDOUT: %F => constants.%F
  127. // CHECK:STDOUT: %.loc14_1.2 => constants.%.2
  128. // CHECK:STDOUT: %.loc14_1.3 => constants.%.3
  129. // CHECK:STDOUT: }
  130. // CHECK:STDOUT:
  131. // CHECK:STDOUT: specific @Class(@F.%T.loc13) {
  132. // CHECK:STDOUT: %T.loc11_13.2 => constants.%T
  133. // CHECK:STDOUT: %T.patt.loc11_13.2 => constants.%T
  134. // CHECK:STDOUT: }
  135. // CHECK:STDOUT:
  136. // CHECK:STDOUT: specific @F(constants.%T) {
  137. // CHECK:STDOUT: %T.loc13 => constants.%T
  138. // CHECK:STDOUT: %Class => constants.%Class.2
  139. // CHECK:STDOUT: }
  140. // CHECK:STDOUT:
  141. // CHECK:STDOUT: specific @Class(%T.loc11_13.2) {
  142. // CHECK:STDOUT: %T.loc11_13.2 => constants.%T
  143. // CHECK:STDOUT: %T.patt.loc11_13.2 => constants.%T
  144. // CHECK:STDOUT: }
  145. // CHECK:STDOUT: