basic.carbon 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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: %Class.type: type = generic_class_type @Class [template]
  26. // CHECK:STDOUT: %.1: type = tuple_type () [template]
  27. // CHECK:STDOUT: %Class.1: %Class.type = struct_value () [template]
  28. // CHECK:STDOUT: %Class.2: type = class_type @Class, @Class(%T) [symbolic]
  29. // CHECK:STDOUT: %.2: type = ptr_type %Class.2 [symbolic]
  30. // CHECK:STDOUT: %.3: type = ptr_type %T [symbolic]
  31. // CHECK:STDOUT: %GetAddr.type: type = fn_type @GetAddr, @Class(%T) [symbolic]
  32. // CHECK:STDOUT: %GetAddr: %GetAddr.type = struct_value () [symbolic]
  33. // CHECK:STDOUT: %GetValue.type: type = fn_type @GetValue, @Class(%T) [symbolic]
  34. // CHECK:STDOUT: %GetValue: %GetValue.type = struct_value () [symbolic]
  35. // CHECK:STDOUT: %.4: type = unbound_element_type %Class.2, %T [symbolic]
  36. // CHECK:STDOUT: %.5: type = struct_type {.k: %T} [symbolic]
  37. // CHECK:STDOUT: %.6: <witness> = complete_type_witness %.5 [symbolic]
  38. // CHECK:STDOUT: %.7: type = ptr_type %.5 [symbolic]
  39. // CHECK:STDOUT: %Declaration.type: type = generic_class_type @Declaration [template]
  40. // CHECK:STDOUT: %Declaration.1: %Declaration.type = struct_value () [template]
  41. // CHECK:STDOUT: %Declaration.2: type = class_type @Declaration, @Declaration(%T) [symbolic]
  42. // CHECK:STDOUT: }
  43. // CHECK:STDOUT:
  44. // CHECK:STDOUT: imports {
  45. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  46. // CHECK:STDOUT: import Core//prelude
  47. // CHECK:STDOUT: import Core//prelude/operators
  48. // CHECK:STDOUT: import Core//prelude/types
  49. // CHECK:STDOUT: import Core//prelude/operators/arithmetic
  50. // CHECK:STDOUT: import Core//prelude/operators/as
  51. // CHECK:STDOUT: import Core//prelude/operators/bitwise
  52. // CHECK:STDOUT: import Core//prelude/operators/comparison
  53. // CHECK:STDOUT: import Core//prelude/types/bool
  54. // CHECK:STDOUT: }
  55. // CHECK:STDOUT: }
  56. // CHECK:STDOUT:
  57. // CHECK:STDOUT: file {
  58. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  59. // CHECK:STDOUT: .Core = imports.%Core
  60. // CHECK:STDOUT: .Class = %Class.decl
  61. // CHECK:STDOUT: .Declaration = %Declaration.decl
  62. // CHECK:STDOUT: }
  63. // CHECK:STDOUT: %Core.import = import Core
  64. // CHECK:STDOUT: %Class.decl: %Class.type = class_decl @Class [template = constants.%Class.1] {
  65. // CHECK:STDOUT: %T.patt: type = symbolic_binding_pattern T, 0
  66. // CHECK:STDOUT: } {
  67. // CHECK:STDOUT: %T.param: type = param T, runtime_param<invalid>
  68. // CHECK:STDOUT: %T.loc11_13.1: type = bind_symbolic_name T, 0, %T.param [symbolic = %T.loc11_13.2 (constants.%T)]
  69. // CHECK:STDOUT: }
  70. // CHECK:STDOUT: %Declaration.decl: %Declaration.type = class_decl @Declaration [template = constants.%Declaration.1] {
  71. // CHECK:STDOUT: %T.patt: type = symbolic_binding_pattern T, 0
  72. // CHECK:STDOUT: } {
  73. // CHECK:STDOUT: %T.param: type = param T, runtime_param<invalid>
  74. // CHECK:STDOUT: %T.loc24_19.1: type = bind_symbolic_name T, 0, %T.param [symbolic = %T.loc24_19.2 (constants.%T)]
  75. // CHECK:STDOUT: }
  76. // CHECK:STDOUT: }
  77. // CHECK:STDOUT:
  78. // CHECK:STDOUT: generic class @Class(%T.loc11_13.1: type) {
  79. // CHECK:STDOUT: %T.loc11_13.2: type = bind_symbolic_name T, 0 [symbolic = %T.loc11_13.2 (constants.%T)]
  80. // CHECK:STDOUT:
  81. // CHECK:STDOUT: !definition:
  82. // CHECK:STDOUT: %GetAddr.type: type = fn_type @GetAddr, @Class(%T.loc11_13.2) [symbolic = %GetAddr.type (constants.%GetAddr.type)]
  83. // CHECK:STDOUT: %GetAddr: @Class.%GetAddr.type (%GetAddr.type) = struct_value () [symbolic = %GetAddr (constants.%GetAddr)]
  84. // CHECK:STDOUT: %GetValue.type: type = fn_type @GetValue, @Class(%T.loc11_13.2) [symbolic = %GetValue.type (constants.%GetValue.type)]
  85. // CHECK:STDOUT: %GetValue: @Class.%GetValue.type (%GetValue.type) = struct_value () [symbolic = %GetValue (constants.%GetValue)]
  86. // CHECK:STDOUT: %Class: type = class_type @Class, @Class(%T.loc11_13.2) [symbolic = %Class (constants.%Class.2)]
  87. // CHECK:STDOUT: %.loc21_8.2: type = unbound_element_type @Class.%Class (%Class.2), @Class.%T.loc11_13.2 (%T) [symbolic = %.loc21_8.2 (constants.%.4)]
  88. // CHECK:STDOUT: %.loc22_1.2: type = struct_type {.k: @Class.%T.loc11_13.2 (%T)} [symbolic = %.loc22_1.2 (constants.%.5)]
  89. // CHECK:STDOUT: %.loc22_1.3: <witness> = complete_type_witness @Class.%.loc22_1.2 (%.5) [symbolic = %.loc22_1.3 (constants.%.6)]
  90. // CHECK:STDOUT:
  91. // CHECK:STDOUT: class {
  92. // CHECK:STDOUT: %GetAddr.decl: @Class.%GetAddr.type (%GetAddr.type) = fn_decl @GetAddr [symbolic = @Class.%GetAddr (constants.%GetAddr)] {
  93. // CHECK:STDOUT: %self.patt: @GetAddr.%.loc12_29.1 (%.2) = binding_pattern self
  94. // CHECK:STDOUT: } {
  95. // CHECK:STDOUT: %.loc12_25: type = specific_constant constants.%Class.2, @Class(constants.%T) [symbolic = %Class (constants.%Class.2)]
  96. // CHECK:STDOUT: %Self.ref: type = name_ref Self, %.loc12_25 [symbolic = %Class (constants.%Class.2)]
  97. // CHECK:STDOUT: %.loc12_29.2: type = ptr_type %Class.2 [symbolic = %.loc12_29.1 (constants.%.2)]
  98. // CHECK:STDOUT: %self.param: @GetAddr.%.loc12_29.1 (%.2) = param self, runtime_param0
  99. // CHECK:STDOUT: %self: @GetAddr.%.loc12_29.1 (%.2) = bind_name self, %self.param
  100. // CHECK:STDOUT: %.loc12_14: @GetAddr.%.loc12_29.1 (%.2) = addr_pattern %self
  101. // CHECK:STDOUT: %T.ref: type = name_ref T, @Class.%T.loc11_13.1 [symbolic = %T (constants.%T)]
  102. // CHECK:STDOUT: %.loc12_38.2: type = ptr_type %T [symbolic = %.loc12_38.1 (constants.%.3)]
  103. // CHECK:STDOUT: %return: ref @GetAddr.%.loc12_38.1 (%.3) = var <return slot>
  104. // CHECK:STDOUT: }
  105. // CHECK:STDOUT: %GetValue.decl: @Class.%GetValue.type (%GetValue.type) = fn_decl @GetValue [symbolic = @Class.%GetValue (constants.%GetValue)] {
  106. // CHECK:STDOUT: %self.patt: @GetValue.%Class (%Class.2) = binding_pattern self
  107. // CHECK:STDOUT: } {
  108. // CHECK:STDOUT: %.loc17: type = specific_constant constants.%Class.2, @Class(constants.%T) [symbolic = %Class (constants.%Class.2)]
  109. // CHECK:STDOUT: %Self.ref: type = name_ref Self, %.loc17 [symbolic = %Class (constants.%Class.2)]
  110. // CHECK:STDOUT: %self.param: @GetValue.%Class (%Class.2) = param self, runtime_param0
  111. // CHECK:STDOUT: %self: @GetValue.%Class (%Class.2) = bind_name self, %self.param
  112. // CHECK:STDOUT: %T.ref: type = name_ref T, @Class.%T.loc11_13.1 [symbolic = %T (constants.%T)]
  113. // CHECK:STDOUT: %return: ref @GetValue.%T (%T) = var <return slot>
  114. // CHECK:STDOUT: }
  115. // CHECK:STDOUT: %T.ref: type = name_ref T, %T.loc11_13.1 [symbolic = %T.loc11_13.2 (constants.%T)]
  116. // CHECK:STDOUT: %.loc21_8.1: @Class.%.loc21_8.2 (%.4) = field_decl k, element0 [template]
  117. // CHECK:STDOUT: %.loc22_1.1: <witness> = complete_type_witness %.5 [symbolic = %.loc22_1.3 (constants.%.6)]
  118. // CHECK:STDOUT:
  119. // CHECK:STDOUT: !members:
  120. // CHECK:STDOUT: .Self = constants.%Class.2
  121. // CHECK:STDOUT: .GetAddr = %GetAddr.decl
  122. // CHECK:STDOUT: .GetValue = %GetValue.decl
  123. // CHECK:STDOUT: .k = %.loc21_8.1
  124. // CHECK:STDOUT: }
  125. // CHECK:STDOUT: }
  126. // CHECK:STDOUT:
  127. // CHECK:STDOUT: generic class @Declaration(%T.loc24_19.1: type) {
  128. // CHECK:STDOUT: %T.loc24_19.2: type = bind_symbolic_name T, 0 [symbolic = %T.loc24_19.2 (constants.%T)]
  129. // CHECK:STDOUT:
  130. // CHECK:STDOUT: class;
  131. // CHECK:STDOUT: }
  132. // CHECK:STDOUT:
  133. // CHECK:STDOUT: generic fn @GetAddr(@Class.%T.loc11_13.1: type) {
  134. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic = %T (constants.%T)]
  135. // CHECK:STDOUT: %Class: type = class_type @Class, @Class(%T) [symbolic = %Class (constants.%Class.2)]
  136. // CHECK:STDOUT: %.loc12_29.1: type = ptr_type @GetAddr.%Class (%Class.2) [symbolic = %.loc12_29.1 (constants.%.2)]
  137. // CHECK:STDOUT: %.loc12_38.1: type = ptr_type @GetAddr.%T (%T) [symbolic = %.loc12_38.1 (constants.%.3)]
  138. // CHECK:STDOUT:
  139. // CHECK:STDOUT: !definition:
  140. // CHECK:STDOUT: %.loc13_17.3: type = unbound_element_type @GetAddr.%Class (%Class.2), @GetAddr.%T (%T) [symbolic = %.loc13_17.3 (constants.%.4)]
  141. // CHECK:STDOUT:
  142. // CHECK:STDOUT: fn[addr %self: @GetAddr.%.loc12_29.1 (%.2)]() -> @GetAddr.%.loc12_38.1 (%.3) {
  143. // CHECK:STDOUT: !entry:
  144. // CHECK:STDOUT: %self.ref: @GetAddr.%.loc12_29.1 (%.2) = name_ref self, %self
  145. // CHECK:STDOUT: %.loc13_17.1: ref @GetAddr.%Class (%Class.2) = deref %self.ref
  146. // CHECK:STDOUT: %k.ref: @GetAddr.%.loc13_17.3 (%.4) = name_ref k, @Class.%.loc21_8.1 [template = @Class.%.loc21_8.1]
  147. // CHECK:STDOUT: %.loc13_17.2: ref @GetAddr.%T (%T) = class_element_access %.loc13_17.1, element0
  148. // CHECK:STDOUT: %.loc13_12: @GetAddr.%.loc12_38.1 (%.3) = addr_of %.loc13_17.2
  149. // CHECK:STDOUT: return %.loc13_12
  150. // CHECK:STDOUT: }
  151. // CHECK:STDOUT: }
  152. // CHECK:STDOUT:
  153. // CHECK:STDOUT: generic fn @GetValue(@Class.%T.loc11_13.1: type) {
  154. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic = %T (constants.%T)]
  155. // CHECK:STDOUT: %Class: type = class_type @Class, @Class(%T) [symbolic = %Class (constants.%Class.2)]
  156. // CHECK:STDOUT:
  157. // CHECK:STDOUT: !definition:
  158. // CHECK:STDOUT: %.loc18_16.3: type = unbound_element_type @GetValue.%Class (%Class.2), @GetValue.%T (%T) [symbolic = %.loc18_16.3 (constants.%.4)]
  159. // CHECK:STDOUT:
  160. // CHECK:STDOUT: fn[%self: @GetValue.%Class (%Class.2)]() -> @GetValue.%T (%T) {
  161. // CHECK:STDOUT: !entry:
  162. // CHECK:STDOUT: %self.ref: @GetValue.%Class (%Class.2) = name_ref self, %self
  163. // CHECK:STDOUT: %k.ref: @GetValue.%.loc18_16.3 (%.4) = name_ref k, @Class.%.loc21_8.1 [template = @Class.%.loc21_8.1]
  164. // CHECK:STDOUT: %.loc18_16.1: ref @GetValue.%T (%T) = class_element_access %self.ref, element0
  165. // CHECK:STDOUT: %.loc18_16.2: @GetValue.%T (%T) = bind_value %.loc18_16.1
  166. // CHECK:STDOUT: return %.loc18_16.2
  167. // CHECK:STDOUT: }
  168. // CHECK:STDOUT: }
  169. // CHECK:STDOUT:
  170. // CHECK:STDOUT: specific @Class(constants.%T) {
  171. // CHECK:STDOUT: %T.loc11_13.2 => constants.%T
  172. // CHECK:STDOUT:
  173. // CHECK:STDOUT: !definition:
  174. // CHECK:STDOUT: %GetAddr.type => constants.%GetAddr.type
  175. // CHECK:STDOUT: %GetAddr => constants.%GetAddr
  176. // CHECK:STDOUT: %GetValue.type => constants.%GetValue.type
  177. // CHECK:STDOUT: %GetValue => constants.%GetValue
  178. // CHECK:STDOUT: %Class => constants.%Class.2
  179. // CHECK:STDOUT: %.loc21_8.2 => constants.%.4
  180. // CHECK:STDOUT: %.loc22_1.2 => constants.%.5
  181. // CHECK:STDOUT: %.loc22_1.3 => constants.%.6
  182. // CHECK:STDOUT: }
  183. // CHECK:STDOUT:
  184. // CHECK:STDOUT: specific @Class(@GetAddr.%T) {
  185. // CHECK:STDOUT: %T.loc11_13.2 => constants.%T
  186. // CHECK:STDOUT: }
  187. // CHECK:STDOUT:
  188. // CHECK:STDOUT: specific @GetAddr(constants.%T) {
  189. // CHECK:STDOUT: %T => constants.%T
  190. // CHECK:STDOUT: %Class => constants.%Class.2
  191. // CHECK:STDOUT: %.loc12_29.1 => constants.%.2
  192. // CHECK:STDOUT: %.loc12_38.1 => constants.%.3
  193. // CHECK:STDOUT: }
  194. // CHECK:STDOUT:
  195. // CHECK:STDOUT: specific @Class(@GetValue.%T) {
  196. // CHECK:STDOUT: %T.loc11_13.2 => constants.%T
  197. // CHECK:STDOUT: }
  198. // CHECK:STDOUT:
  199. // CHECK:STDOUT: specific @GetValue(constants.%T) {
  200. // CHECK:STDOUT: %T => constants.%T
  201. // CHECK:STDOUT: %Class => constants.%Class.2
  202. // CHECK:STDOUT: }
  203. // CHECK:STDOUT:
  204. // CHECK:STDOUT: specific @Class(@Class.%T.loc11_13.2) {
  205. // CHECK:STDOUT: %T.loc11_13.2 => constants.%T
  206. // CHECK:STDOUT: }
  207. // CHECK:STDOUT:
  208. // CHECK:STDOUT: specific @Declaration(constants.%T) {
  209. // CHECK:STDOUT: %T.loc24_19.2 => constants.%T
  210. // CHECK:STDOUT: }
  211. // CHECK:STDOUT: