basic.carbon 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  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/basic.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/class/generic/basic.carbon
  10. class Class(T:! type) {
  11. fn GetAddr[addr self: Self*]() -> T* {
  12. return &self->k;
  13. }
  14. // TODO: Should this work? T is not necessarily copyable.
  15. fn GetValue[self: Self]() -> T {
  16. return self.k;
  17. }
  18. var k: T;
  19. }
  20. class Declaration(T:! type);
  21. // CHECK:STDOUT: --- basic.carbon
  22. // CHECK:STDOUT:
  23. // CHECK:STDOUT: constants {
  24. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic]
  25. // CHECK:STDOUT: %T.patt: type = symbolic_binding_pattern T, 0 [symbolic]
  26. // CHECK:STDOUT: %Class.type: type = generic_class_type @Class [template]
  27. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [template]
  28. // CHECK:STDOUT: %Class.1: %Class.type = struct_value () [template]
  29. // CHECK:STDOUT: %Class.2: type = class_type @Class, @Class(%T) [symbolic]
  30. // CHECK:STDOUT: %.1: type = ptr_type %Class.2 [symbolic]
  31. // CHECK:STDOUT: %.2: type = ptr_type %T [symbolic]
  32. // CHECK:STDOUT: %GetAddr.type: type = fn_type @GetAddr, @Class(%T) [symbolic]
  33. // CHECK:STDOUT: %GetAddr: %GetAddr.type = struct_value () [symbolic]
  34. // CHECK:STDOUT: %GetValue.type: type = fn_type @GetValue, @Class(%T) [symbolic]
  35. // CHECK:STDOUT: %GetValue: %GetValue.type = struct_value () [symbolic]
  36. // CHECK:STDOUT: %.3: type = unbound_element_type %Class.2, %T [symbolic]
  37. // CHECK:STDOUT: %.4: type = struct_type {.k: %T} [symbolic]
  38. // CHECK:STDOUT: %.5: <witness> = complete_type_witness %.4 [symbolic]
  39. // CHECK:STDOUT: %.6: type = ptr_type %.4 [symbolic]
  40. // CHECK:STDOUT: %Declaration.type: type = generic_class_type @Declaration [template]
  41. // CHECK:STDOUT: %Declaration.1: %Declaration.type = struct_value () [template]
  42. // CHECK:STDOUT: %Declaration.2: type = class_type @Declaration, @Declaration(%T) [symbolic]
  43. // CHECK:STDOUT: }
  44. // CHECK:STDOUT:
  45. // CHECK:STDOUT: imports {
  46. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  47. // CHECK:STDOUT: import Core//prelude
  48. // CHECK:STDOUT: import Core//prelude/...
  49. // CHECK:STDOUT: }
  50. // CHECK:STDOUT: }
  51. // CHECK:STDOUT:
  52. // CHECK:STDOUT: file {
  53. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  54. // CHECK:STDOUT: .Core = imports.%Core
  55. // CHECK:STDOUT: .Class = %Class.decl
  56. // CHECK:STDOUT: .Declaration = %Declaration.decl
  57. // CHECK:STDOUT: }
  58. // CHECK:STDOUT: %Core.import = import Core
  59. // CHECK:STDOUT: %Class.decl: %Class.type = class_decl @Class [template = constants.%Class.1] {
  60. // CHECK:STDOUT: %T.patt.loc11_13.1: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc11_13.2 (constants.%T.patt)]
  61. // 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)]
  62. // CHECK:STDOUT: } {
  63. // CHECK:STDOUT: %T.param: type = value_param runtime_param<invalid>
  64. // CHECK:STDOUT: %T.loc11_13.1: type = bind_symbolic_name T, 0, %T.param [symbolic = %T.loc11_13.2 (constants.%T)]
  65. // CHECK:STDOUT: }
  66. // CHECK:STDOUT: %Declaration.decl: %Declaration.type = class_decl @Declaration [template = constants.%Declaration.1] {
  67. // CHECK:STDOUT: %T.patt.loc24_19.1: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc24_19.2 (constants.%T.patt)]
  68. // CHECK:STDOUT: %T.param_patt: type = value_param_pattern %T.patt.loc24_19.1, runtime_param<invalid> [symbolic = %T.patt.loc24_19.2 (constants.%T.patt)]
  69. // CHECK:STDOUT: } {
  70. // CHECK:STDOUT: %T.param: type = value_param runtime_param<invalid>
  71. // CHECK:STDOUT: %T.loc24_19.1: type = bind_symbolic_name T, 0, %T.param [symbolic = %T.loc24_19.2 (constants.%T)]
  72. // CHECK:STDOUT: }
  73. // CHECK:STDOUT: }
  74. // CHECK:STDOUT:
  75. // CHECK:STDOUT: generic class @Class(%T.loc11_13.1: type) {
  76. // CHECK:STDOUT: %T.loc11_13.2: type = bind_symbolic_name T, 0 [symbolic = %T.loc11_13.2 (constants.%T)]
  77. // CHECK:STDOUT: %T.patt.loc11_13.2: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc11_13.2 (constants.%T.patt)]
  78. // CHECK:STDOUT:
  79. // CHECK:STDOUT: !definition:
  80. // CHECK:STDOUT: %GetAddr.type: type = fn_type @GetAddr, @Class(%T.loc11_13.2) [symbolic = %GetAddr.type (constants.%GetAddr.type)]
  81. // CHECK:STDOUT: %GetAddr: @Class.%GetAddr.type (%GetAddr.type) = struct_value () [symbolic = %GetAddr (constants.%GetAddr)]
  82. // CHECK:STDOUT: %GetValue.type: type = fn_type @GetValue, @Class(%T.loc11_13.2) [symbolic = %GetValue.type (constants.%GetValue.type)]
  83. // CHECK:STDOUT: %GetValue: @Class.%GetValue.type (%GetValue.type) = struct_value () [symbolic = %GetValue (constants.%GetValue)]
  84. // CHECK:STDOUT: %Class: type = class_type @Class, @Class(%T.loc11_13.2) [symbolic = %Class (constants.%Class.2)]
  85. // CHECK:STDOUT: %.loc21_8.2: type = unbound_element_type @Class.%Class (%Class.2), @Class.%T.loc11_13.2 (%T) [symbolic = %.loc21_8.2 (constants.%.3)]
  86. // CHECK:STDOUT: %.loc22_1.2: type = struct_type {.k: @Class.%T.loc11_13.2 (%T)} [symbolic = %.loc22_1.2 (constants.%.4)]
  87. // CHECK:STDOUT: %.loc22_1.3: <witness> = complete_type_witness @Class.%.loc22_1.2 (%.4) [symbolic = %.loc22_1.3 (constants.%.5)]
  88. // CHECK:STDOUT:
  89. // CHECK:STDOUT: class {
  90. // CHECK:STDOUT: %GetAddr.decl: @Class.%GetAddr.type (%GetAddr.type) = fn_decl @GetAddr [symbolic = @Class.%GetAddr (constants.%GetAddr)] {
  91. // CHECK:STDOUT: %self.patt: @GetAddr.%.loc12_29.1 (%.1) = binding_pattern self
  92. // CHECK:STDOUT: %self.param_patt: @GetAddr.%.loc12_29.1 (%.1) = value_param_pattern %self.patt, runtime_param0
  93. // CHECK:STDOUT: %.loc12_14: auto = addr_pattern %self.param_patt
  94. // CHECK:STDOUT: %return.patt: @GetAddr.%.loc12_38.1 (%.2) = return_slot_pattern
  95. // CHECK:STDOUT: %return.param_patt: @GetAddr.%.loc12_38.1 (%.2) = out_param_pattern %return.patt, runtime_param1
  96. // CHECK:STDOUT: } {
  97. // CHECK:STDOUT: %.loc12_25: type = specific_constant constants.%Class.2, @Class(constants.%T) [symbolic = %Class (constants.%Class.2)]
  98. // CHECK:STDOUT: %Self.ref: type = name_ref Self, %.loc12_25 [symbolic = %Class (constants.%Class.2)]
  99. // CHECK:STDOUT: %.loc12_29.2: type = ptr_type %Class.2 [symbolic = %.loc12_29.1 (constants.%.1)]
  100. // CHECK:STDOUT: %T.ref: type = name_ref T, @Class.%T.loc11_13.1 [symbolic = %T (constants.%T)]
  101. // CHECK:STDOUT: %.loc12_38.2: type = ptr_type %T [symbolic = %.loc12_38.1 (constants.%.2)]
  102. // CHECK:STDOUT: %self.param: @GetAddr.%.loc12_29.1 (%.1) = value_param runtime_param0
  103. // CHECK:STDOUT: %self: @GetAddr.%.loc12_29.1 (%.1) = bind_name self, %self.param
  104. // CHECK:STDOUT: %return.param: ref @GetAddr.%.loc12_38.1 (%.2) = out_param runtime_param1
  105. // CHECK:STDOUT: %return: ref @GetAddr.%.loc12_38.1 (%.2) = return_slot %return.param
  106. // CHECK:STDOUT: }
  107. // CHECK:STDOUT: %GetValue.decl: @Class.%GetValue.type (%GetValue.type) = fn_decl @GetValue [symbolic = @Class.%GetValue (constants.%GetValue)] {
  108. // CHECK:STDOUT: %self.patt: @GetValue.%Class (%Class.2) = binding_pattern self
  109. // CHECK:STDOUT: %self.param_patt: @GetValue.%Class (%Class.2) = value_param_pattern %self.patt, runtime_param0
  110. // CHECK:STDOUT: %return.patt: @GetValue.%T (%T) = return_slot_pattern
  111. // CHECK:STDOUT: %return.param_patt: @GetValue.%T (%T) = out_param_pattern %return.patt, runtime_param1
  112. // CHECK:STDOUT: } {
  113. // CHECK:STDOUT: %.loc17: type = specific_constant constants.%Class.2, @Class(constants.%T) [symbolic = %Class (constants.%Class.2)]
  114. // CHECK:STDOUT: %Self.ref: type = name_ref Self, %.loc17 [symbolic = %Class (constants.%Class.2)]
  115. // CHECK:STDOUT: %T.ref: type = name_ref T, @Class.%T.loc11_13.1 [symbolic = %T (constants.%T)]
  116. // CHECK:STDOUT: %self.param: @GetValue.%Class (%Class.2) = value_param runtime_param0
  117. // CHECK:STDOUT: %self: @GetValue.%Class (%Class.2) = bind_name self, %self.param
  118. // CHECK:STDOUT: %return.param: ref @GetValue.%T (%T) = out_param runtime_param1
  119. // CHECK:STDOUT: %return: ref @GetValue.%T (%T) = return_slot %return.param
  120. // CHECK:STDOUT: }
  121. // CHECK:STDOUT: %T.ref: type = name_ref T, %T.loc11_13.1 [symbolic = %T.loc11_13.2 (constants.%T)]
  122. // CHECK:STDOUT: %.loc21_8.1: @Class.%.loc21_8.2 (%.3) = field_decl k, element0 [template]
  123. // CHECK:STDOUT: %.loc22_1.1: <witness> = complete_type_witness %.4 [symbolic = %.loc22_1.3 (constants.%.5)]
  124. // CHECK:STDOUT:
  125. // CHECK:STDOUT: !members:
  126. // CHECK:STDOUT: .Self = constants.%Class.2
  127. // CHECK:STDOUT: .GetAddr = %GetAddr.decl
  128. // CHECK:STDOUT: .GetValue = %GetValue.decl
  129. // CHECK:STDOUT: .k = %.loc21_8.1
  130. // CHECK:STDOUT: }
  131. // CHECK:STDOUT: }
  132. // CHECK:STDOUT:
  133. // CHECK:STDOUT: generic class @Declaration(%T.loc24_19.1: type) {
  134. // CHECK:STDOUT: %T.loc24_19.2: type = bind_symbolic_name T, 0 [symbolic = %T.loc24_19.2 (constants.%T)]
  135. // CHECK:STDOUT: %T.patt.loc24_19.2: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc24_19.2 (constants.%T.patt)]
  136. // CHECK:STDOUT:
  137. // CHECK:STDOUT: class;
  138. // CHECK:STDOUT: }
  139. // CHECK:STDOUT:
  140. // CHECK:STDOUT: generic fn @GetAddr(@Class.%T.loc11_13.1: type) {
  141. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic = %T (constants.%T)]
  142. // CHECK:STDOUT: %Class: type = class_type @Class, @Class(%T) [symbolic = %Class (constants.%Class.2)]
  143. // CHECK:STDOUT: %.loc12_29.1: type = ptr_type @GetAddr.%Class (%Class.2) [symbolic = %.loc12_29.1 (constants.%.1)]
  144. // CHECK:STDOUT: %.loc12_38.1: type = ptr_type @GetAddr.%T (%T) [symbolic = %.loc12_38.1 (constants.%.2)]
  145. // CHECK:STDOUT:
  146. // CHECK:STDOUT: !definition:
  147. // CHECK:STDOUT: %.loc13_17.3: type = unbound_element_type @GetAddr.%Class (%Class.2), @GetAddr.%T (%T) [symbolic = %.loc13_17.3 (constants.%.3)]
  148. // CHECK:STDOUT:
  149. // CHECK:STDOUT: fn[addr %self.param_patt: @GetAddr.%.loc12_29.1 (%.1)]() -> @GetAddr.%.loc12_38.1 (%.2) {
  150. // CHECK:STDOUT: !entry:
  151. // CHECK:STDOUT: %self.ref: @GetAddr.%.loc12_29.1 (%.1) = name_ref self, %self
  152. // CHECK:STDOUT: %.loc13_17.1: ref @GetAddr.%Class (%Class.2) = deref %self.ref
  153. // CHECK:STDOUT: %k.ref: @GetAddr.%.loc13_17.3 (%.3) = name_ref k, @Class.%.loc21_8.1 [template = @Class.%.loc21_8.1]
  154. // CHECK:STDOUT: %.loc13_17.2: ref @GetAddr.%T (%T) = class_element_access %.loc13_17.1, element0
  155. // CHECK:STDOUT: %.loc13_12: @GetAddr.%.loc12_38.1 (%.2) = addr_of %.loc13_17.2
  156. // CHECK:STDOUT: return %.loc13_12
  157. // CHECK:STDOUT: }
  158. // CHECK:STDOUT: }
  159. // CHECK:STDOUT:
  160. // CHECK:STDOUT: generic fn @GetValue(@Class.%T.loc11_13.1: type) {
  161. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic = %T (constants.%T)]
  162. // CHECK:STDOUT: %Class: type = class_type @Class, @Class(%T) [symbolic = %Class (constants.%Class.2)]
  163. // CHECK:STDOUT:
  164. // CHECK:STDOUT: !definition:
  165. // CHECK:STDOUT: %.loc18_16.3: type = unbound_element_type @GetValue.%Class (%Class.2), @GetValue.%T (%T) [symbolic = %.loc18_16.3 (constants.%.3)]
  166. // CHECK:STDOUT:
  167. // CHECK:STDOUT: fn[%self.param_patt: @GetValue.%Class (%Class.2)]() -> @GetValue.%T (%T) {
  168. // CHECK:STDOUT: !entry:
  169. // CHECK:STDOUT: %self.ref: @GetValue.%Class (%Class.2) = name_ref self, %self
  170. // CHECK:STDOUT: %k.ref: @GetValue.%.loc18_16.3 (%.3) = name_ref k, @Class.%.loc21_8.1 [template = @Class.%.loc21_8.1]
  171. // CHECK:STDOUT: %.loc18_16.1: ref @GetValue.%T (%T) = class_element_access %self.ref, element0
  172. // CHECK:STDOUT: %.loc18_16.2: @GetValue.%T (%T) = bind_value %.loc18_16.1
  173. // CHECK:STDOUT: return %.loc18_16.2
  174. // CHECK:STDOUT: }
  175. // CHECK:STDOUT: }
  176. // CHECK:STDOUT:
  177. // CHECK:STDOUT: specific @Class(constants.%T) {
  178. // CHECK:STDOUT: %T.loc11_13.2 => constants.%T
  179. // CHECK:STDOUT: %T.patt.loc11_13.2 => constants.%T
  180. // CHECK:STDOUT:
  181. // CHECK:STDOUT: !definition:
  182. // CHECK:STDOUT: %GetAddr.type => constants.%GetAddr.type
  183. // CHECK:STDOUT: %GetAddr => constants.%GetAddr
  184. // CHECK:STDOUT: %GetValue.type => constants.%GetValue.type
  185. // CHECK:STDOUT: %GetValue => constants.%GetValue
  186. // CHECK:STDOUT: %Class => constants.%Class.2
  187. // CHECK:STDOUT: %.loc21_8.2 => constants.%.3
  188. // CHECK:STDOUT: %.loc22_1.2 => constants.%.4
  189. // CHECK:STDOUT: %.loc22_1.3 => constants.%.5
  190. // CHECK:STDOUT: }
  191. // CHECK:STDOUT:
  192. // CHECK:STDOUT: specific @Class(@GetAddr.%T) {
  193. // CHECK:STDOUT: %T.loc11_13.2 => constants.%T
  194. // CHECK:STDOUT: %T.patt.loc11_13.2 => constants.%T
  195. // CHECK:STDOUT: }
  196. // CHECK:STDOUT:
  197. // CHECK:STDOUT: specific @GetAddr(constants.%T) {
  198. // CHECK:STDOUT: %T => constants.%T
  199. // CHECK:STDOUT: %Class => constants.%Class.2
  200. // CHECK:STDOUT: %.loc12_29.1 => constants.%.1
  201. // CHECK:STDOUT: %.loc12_38.1 => constants.%.2
  202. // CHECK:STDOUT: }
  203. // CHECK:STDOUT:
  204. // CHECK:STDOUT: specific @Class(@GetValue.%T) {
  205. // CHECK:STDOUT: %T.loc11_13.2 => constants.%T
  206. // CHECK:STDOUT: %T.patt.loc11_13.2 => constants.%T
  207. // CHECK:STDOUT: }
  208. // CHECK:STDOUT:
  209. // CHECK:STDOUT: specific @GetValue(constants.%T) {
  210. // CHECK:STDOUT: %T => constants.%T
  211. // CHECK:STDOUT: %Class => constants.%Class.2
  212. // CHECK:STDOUT: }
  213. // CHECK:STDOUT:
  214. // CHECK:STDOUT: specific @Class(@Class.%T.loc11_13.2) {
  215. // CHECK:STDOUT: %T.loc11_13.2 => constants.%T
  216. // CHECK:STDOUT: %T.patt.loc11_13.2 => constants.%T
  217. // CHECK:STDOUT: }
  218. // CHECK:STDOUT:
  219. // CHECK:STDOUT: specific @Declaration(constants.%T) {
  220. // CHECK:STDOUT: %T.loc24_19.2 => constants.%T
  221. // CHECK:STDOUT: %T.patt.loc24_19.2 => constants.%T
  222. // CHECK:STDOUT: }
  223. // CHECK:STDOUT: