import_base.carbon 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  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/import_base.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/class/import_base.carbon
  10. // --- a.carbon
  11. library "[[@TEST_NAME]]";
  12. base class Base {
  13. fn F[self: Self]();
  14. fn Unused[self: Self]();
  15. var x: i32;
  16. var unused: i32;
  17. }
  18. class Child {
  19. extend base: Base;
  20. }
  21. // --- b.carbon
  22. library "[[@TEST_NAME]]";
  23. import library "a";
  24. fn Run() {
  25. var a: Child = {.base = {.x = 0, .unused = 1}};
  26. a.x = 2;
  27. a.F();
  28. }
  29. // CHECK:STDOUT: --- a.carbon
  30. // CHECK:STDOUT:
  31. // CHECK:STDOUT: constants {
  32. // CHECK:STDOUT: %Base: type = class_type @Base [template]
  33. // CHECK:STDOUT: %F.type: type = fn_type @F [template]
  34. // CHECK:STDOUT: %F: %F.type = struct_value () [template]
  35. // CHECK:STDOUT: %Unused.type: type = fn_type @Unused [template]
  36. // CHECK:STDOUT: %Unused: %Unused.type = struct_value () [template]
  37. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template]
  38. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [template]
  39. // CHECK:STDOUT: %Base.elem: type = unbound_element_type %Base, %i32 [template]
  40. // CHECK:STDOUT: %struct_type.x.unused: type = struct_type {.x: %i32, .unused: %i32} [template]
  41. // CHECK:STDOUT: %complete_type.20c: <witness> = complete_type_witness %struct_type.x.unused [template]
  42. // CHECK:STDOUT: %Child: type = class_type @Child [template]
  43. // CHECK:STDOUT: %Child.elem: type = unbound_element_type %Child, %Base [template]
  44. // CHECK:STDOUT: %struct_type.base: type = struct_type {.base: %Base} [template]
  45. // CHECK:STDOUT: %complete_type.15c: <witness> = complete_type_witness %struct_type.base [template]
  46. // CHECK:STDOUT: }
  47. // CHECK:STDOUT:
  48. // CHECK:STDOUT: imports {
  49. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  50. // CHECK:STDOUT: .Int = %Core.Int
  51. // CHECK:STDOUT: import Core//prelude
  52. // CHECK:STDOUT: import Core//prelude/...
  53. // CHECK:STDOUT: }
  54. // CHECK:STDOUT: }
  55. // CHECK:STDOUT:
  56. // CHECK:STDOUT: file {
  57. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  58. // CHECK:STDOUT: .Core = imports.%Core
  59. // CHECK:STDOUT: .Base = %Base.decl
  60. // CHECK:STDOUT: .Child = %Child.decl
  61. // CHECK:STDOUT: }
  62. // CHECK:STDOUT: %Core.import = import Core
  63. // CHECK:STDOUT: %Base.decl: type = class_decl @Base [template = constants.%Base] {} {}
  64. // CHECK:STDOUT: %Child.decl: type = class_decl @Child [template = constants.%Child] {} {}
  65. // CHECK:STDOUT: }
  66. // CHECK:STDOUT:
  67. // CHECK:STDOUT: class @Base {
  68. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {
  69. // CHECK:STDOUT: %self.patt: %Base = binding_pattern self
  70. // CHECK:STDOUT: %self.param_patt: %Base = value_param_pattern %self.patt, runtime_param0
  71. // CHECK:STDOUT: } {
  72. // CHECK:STDOUT: %self.param: %Base = value_param runtime_param0
  73. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%Base [template = constants.%Base]
  74. // CHECK:STDOUT: %self: %Base = bind_name self, %self.param
  75. // CHECK:STDOUT: }
  76. // CHECK:STDOUT: %Unused.decl: %Unused.type = fn_decl @Unused [template = constants.%Unused] {
  77. // CHECK:STDOUT: %self.patt: %Base = binding_pattern self
  78. // CHECK:STDOUT: %self.param_patt: %Base = value_param_pattern %self.patt, runtime_param0
  79. // CHECK:STDOUT: } {
  80. // CHECK:STDOUT: %self.param: %Base = value_param runtime_param0
  81. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%Base [template = constants.%Base]
  82. // CHECK:STDOUT: %self: %Base = bind_name self, %self.param
  83. // CHECK:STDOUT: }
  84. // CHECK:STDOUT: %.loc8_8: %Base.elem = field_decl x, element0 [template]
  85. // CHECK:STDOUT: name_binding_decl {
  86. // CHECK:STDOUT: %.loc8_3: %Base.elem = var_pattern %.loc8_8
  87. // CHECK:STDOUT: }
  88. // CHECK:STDOUT: %.var.loc8: ref %Base.elem = var <none>
  89. // CHECK:STDOUT: %.loc9_13: %Base.elem = field_decl unused, element1 [template]
  90. // CHECK:STDOUT: name_binding_decl {
  91. // CHECK:STDOUT: %.loc9_3: %Base.elem = var_pattern %.loc9_13
  92. // CHECK:STDOUT: }
  93. // CHECK:STDOUT: %.var.loc9: ref %Base.elem = var <none>
  94. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %struct_type.x.unused [template = constants.%complete_type.20c]
  95. // CHECK:STDOUT: complete_type_witness = %complete_type
  96. // CHECK:STDOUT:
  97. // CHECK:STDOUT: !members:
  98. // CHECK:STDOUT: .Self = constants.%Base
  99. // CHECK:STDOUT: .F = %F.decl
  100. // CHECK:STDOUT: .Unused = %Unused.decl
  101. // CHECK:STDOUT: .x = %.loc8_8
  102. // CHECK:STDOUT: .unused = %.loc9_13
  103. // CHECK:STDOUT: }
  104. // CHECK:STDOUT:
  105. // CHECK:STDOUT: class @Child {
  106. // CHECK:STDOUT: %Base.ref: type = name_ref Base, file.%Base.decl [template = constants.%Base]
  107. // CHECK:STDOUT: %.loc13: %Child.elem = base_decl %Base.ref, element0 [template]
  108. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %struct_type.base [template = constants.%complete_type.15c]
  109. // CHECK:STDOUT: complete_type_witness = %complete_type
  110. // CHECK:STDOUT:
  111. // CHECK:STDOUT: !members:
  112. // CHECK:STDOUT: .Self = constants.%Child
  113. // CHECK:STDOUT: .base = %.loc13
  114. // CHECK:STDOUT: extend %Base.ref
  115. // CHECK:STDOUT: }
  116. // CHECK:STDOUT:
  117. // CHECK:STDOUT: fn @F[%self.param_patt: %Base]();
  118. // CHECK:STDOUT:
  119. // CHECK:STDOUT: fn @Unused[%self.param_patt: %Base]();
  120. // CHECK:STDOUT:
  121. // CHECK:STDOUT: --- b.carbon
  122. // CHECK:STDOUT:
  123. // CHECK:STDOUT: constants {
  124. // CHECK:STDOUT: %Run.type: type = fn_type @Run [template]
  125. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [template]
  126. // CHECK:STDOUT: %Run: %Run.type = struct_value () [template]
  127. // CHECK:STDOUT: %Child: type = class_type @Child [template]
  128. // CHECK:STDOUT: %Base: type = class_type @Base [template]
  129. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template]
  130. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [template]
  131. // CHECK:STDOUT: %struct_type.x.unused.7d5: type = struct_type {.x: %i32, .unused: %i32} [template]
  132. // CHECK:STDOUT: %complete_type.90f: <witness> = complete_type_witness %struct_type.x.unused.7d5 [template]
  133. // CHECK:STDOUT: %struct_type.base.b1e: type = struct_type {.base: %Base} [template]
  134. // CHECK:STDOUT: %complete_type.15c: <witness> = complete_type_witness %struct_type.base.b1e [template]
  135. // CHECK:STDOUT: %int_0.5c6: Core.IntLiteral = int_value 0 [template]
  136. // CHECK:STDOUT: %int_1.5b8: Core.IntLiteral = int_value 1 [template]
  137. // CHECK:STDOUT: %struct_type.x.unused.c45: type = struct_type {.x: Core.IntLiteral, .unused: Core.IntLiteral} [template]
  138. // CHECK:STDOUT: %struct_type.base.6c7: type = struct_type {.base: %struct_type.x.unused.c45} [template]
  139. // CHECK:STDOUT: %ImplicitAs.type.9ba: type = facet_type <@ImplicitAs, @ImplicitAs(%i32)> [template]
  140. // CHECK:STDOUT: %Convert.type.6da: type = fn_type @Convert.1, @ImplicitAs(%i32) [template]
  141. // CHECK:STDOUT: %impl_witness.b97: <witness> = impl_witness (imports.%Core.import_ref.a86), @impl.1(%int_32) [template]
  142. // CHECK:STDOUT: %Convert.type.ed5: type = fn_type @Convert.2, @impl.1(%int_32) [template]
  143. // CHECK:STDOUT: %Convert.16d: %Convert.type.ed5 = struct_value () [template]
  144. // CHECK:STDOUT: %ImplicitAs.facet: %ImplicitAs.type.9ba = facet_value Core.IntLiteral, %impl_witness.b97 [template]
  145. // CHECK:STDOUT: %.39b: type = fn_type_with_self_type %Convert.type.6da, %ImplicitAs.facet [template]
  146. // CHECK:STDOUT: %Convert.bound.9aa: <bound method> = bound_method %int_0.5c6, %Convert.16d [template]
  147. // CHECK:STDOUT: %Convert.specific_fn.bae: <specific function> = specific_function %Convert.bound.9aa, @Convert.2(%int_32) [template]
  148. // CHECK:STDOUT: %int_0.263: %i32 = int_value 0 [template]
  149. // CHECK:STDOUT: %Convert.bound.43e: <bound method> = bound_method %int_1.5b8, %Convert.16d [template]
  150. // CHECK:STDOUT: %Convert.specific_fn.c37: <specific function> = specific_function %Convert.bound.43e, @Convert.2(%int_32) [template]
  151. // CHECK:STDOUT: %int_1.47b: %i32 = int_value 1 [template]
  152. // CHECK:STDOUT: %Base.val: %Base = struct_value (%int_0.263, %int_1.47b) [template]
  153. // CHECK:STDOUT: %Child.val: %Child = struct_value (%Base.val) [template]
  154. // CHECK:STDOUT: %Base.elem: type = unbound_element_type %Base, %i32 [template]
  155. // CHECK:STDOUT: %int_2.ecc: Core.IntLiteral = int_value 2 [template]
  156. // CHECK:STDOUT: %Convert.bound.918: <bound method> = bound_method %int_2.ecc, %Convert.16d [template]
  157. // CHECK:STDOUT: %Convert.specific_fn.5a4: <specific function> = specific_function %Convert.bound.918, @Convert.2(%int_32) [template]
  158. // CHECK:STDOUT: %int_2.d0d: %i32 = int_value 2 [template]
  159. // CHECK:STDOUT: %F.type: type = fn_type @F [template]
  160. // CHECK:STDOUT: %F: %F.type = struct_value () [template]
  161. // CHECK:STDOUT: }
  162. // CHECK:STDOUT:
  163. // CHECK:STDOUT: imports {
  164. // CHECK:STDOUT: %Main.Base = import_ref Main//a, Base, unloaded
  165. // CHECK:STDOUT: %Main.Child: type = import_ref Main//a, Child, loaded [template = constants.%Child]
  166. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  167. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  168. // CHECK:STDOUT: import Core//prelude
  169. // CHECK:STDOUT: import Core//prelude/...
  170. // CHECK:STDOUT: }
  171. // CHECK:STDOUT: %Main.import_ref.239: <witness> = import_ref Main//a, loc10_1, loaded [template = constants.%complete_type.90f]
  172. // CHECK:STDOUT: %Main.import_ref.1f3 = import_ref Main//a, inst16 [no loc], unloaded
  173. // CHECK:STDOUT: %Main.import_ref.e8f: %F.type = import_ref Main//a, loc5_21, loaded [template = constants.%F]
  174. // CHECK:STDOUT: %Main.import_ref.8bf = import_ref Main//a, loc6_26, unloaded
  175. // CHECK:STDOUT: %Main.import_ref.e67: %Base.elem = import_ref Main//a, loc8_8, loaded [template = %.720]
  176. // CHECK:STDOUT: %Main.import_ref.2e4 = import_ref Main//a, loc9_13, unloaded
  177. // CHECK:STDOUT: %Main.import_ref.c5f: <witness> = import_ref Main//a, loc14_1, loaded [template = constants.%complete_type.15c]
  178. // CHECK:STDOUT: %Main.import_ref.9a9 = import_ref Main//a, inst77 [no loc], unloaded
  179. // CHECK:STDOUT: %Main.import_ref.7e5 = import_ref Main//a, loc13_20, unloaded
  180. // CHECK:STDOUT: %Main.import_ref.a21640.2: type = import_ref Main//a, loc13_16, loaded [template = constants.%Base]
  181. // CHECK:STDOUT: }
  182. // CHECK:STDOUT:
  183. // CHECK:STDOUT: file {
  184. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  185. // CHECK:STDOUT: .Base = imports.%Main.Base
  186. // CHECK:STDOUT: .Child = imports.%Main.Child
  187. // CHECK:STDOUT: .Core = imports.%Core
  188. // CHECK:STDOUT: .Run = %Run.decl
  189. // CHECK:STDOUT: }
  190. // CHECK:STDOUT: %Core.import = import Core
  191. // CHECK:STDOUT: %default.import = import <none>
  192. // CHECK:STDOUT: %Run.decl: %Run.type = fn_decl @Run [template = constants.%Run] {} {}
  193. // CHECK:STDOUT: }
  194. // CHECK:STDOUT:
  195. // CHECK:STDOUT: class @Child [from "a.carbon"] {
  196. // CHECK:STDOUT: complete_type_witness = imports.%Main.import_ref.c5f
  197. // CHECK:STDOUT:
  198. // CHECK:STDOUT: !members:
  199. // CHECK:STDOUT: .Self = imports.%Main.import_ref.9a9
  200. // CHECK:STDOUT: .base = imports.%Main.import_ref.7e5
  201. // CHECK:STDOUT: extend imports.%Main.import_ref.a21640.2
  202. // CHECK:STDOUT: }
  203. // CHECK:STDOUT:
  204. // CHECK:STDOUT: class @Base [from "a.carbon"] {
  205. // CHECK:STDOUT: complete_type_witness = imports.%Main.import_ref.239
  206. // CHECK:STDOUT:
  207. // CHECK:STDOUT: !members:
  208. // CHECK:STDOUT: .Self = imports.%Main.import_ref.1f3
  209. // CHECK:STDOUT: .F = imports.%Main.import_ref.e8f
  210. // CHECK:STDOUT: .Unused = imports.%Main.import_ref.8bf
  211. // CHECK:STDOUT: .x = imports.%Main.import_ref.e67
  212. // CHECK:STDOUT: .unused = imports.%Main.import_ref.2e4
  213. // CHECK:STDOUT: }
  214. // CHECK:STDOUT:
  215. // CHECK:STDOUT: fn @Run() {
  216. // CHECK:STDOUT: !entry:
  217. // CHECK:STDOUT: name_binding_decl {
  218. // CHECK:STDOUT: %a.patt: %Child = binding_pattern a
  219. // CHECK:STDOUT: %.loc7_3.1: %Child = var_pattern %a.patt
  220. // CHECK:STDOUT: }
  221. // CHECK:STDOUT: %a.var: ref %Child = var a
  222. // CHECK:STDOUT: %int_0: Core.IntLiteral = int_value 0 [template = constants.%int_0.5c6]
  223. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [template = constants.%int_1.5b8]
  224. // CHECK:STDOUT: %.loc7_47.1: %struct_type.x.unused.c45 = struct_literal (%int_0, %int_1)
  225. // CHECK:STDOUT: %.loc7_48.1: %struct_type.base.6c7 = struct_literal (%.loc7_47.1)
  226. // CHECK:STDOUT: %impl.elem0.loc7_47.1: %.39b = impl_witness_access constants.%impl_witness.b97, element0 [template = constants.%Convert.16d]
  227. // CHECK:STDOUT: %bound_method.loc7_47.1: <bound method> = bound_method %int_0, %impl.elem0.loc7_47.1 [template = constants.%Convert.bound.9aa]
  228. // CHECK:STDOUT: %specific_fn.loc7_47.1: <specific function> = specific_function %bound_method.loc7_47.1, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.bae]
  229. // CHECK:STDOUT: %int.convert_checked.loc7_47.1: init %i32 = call %specific_fn.loc7_47.1(%int_0) [template = constants.%int_0.263]
  230. // CHECK:STDOUT: %.loc7_47.2: init %i32 = converted %int_0, %int.convert_checked.loc7_47.1 [template = constants.%int_0.263]
  231. // CHECK:STDOUT: %.loc7_48.2: ref %Base = class_element_access %a.var, element0
  232. // CHECK:STDOUT: %.loc7_47.3: ref %i32 = class_element_access %.loc7_48.2, element0
  233. // CHECK:STDOUT: %.loc7_47.4: init %i32 = initialize_from %.loc7_47.2 to %.loc7_47.3 [template = constants.%int_0.263]
  234. // CHECK:STDOUT: %impl.elem0.loc7_47.2: %.39b = impl_witness_access constants.%impl_witness.b97, element0 [template = constants.%Convert.16d]
  235. // CHECK:STDOUT: %bound_method.loc7_47.2: <bound method> = bound_method %int_1, %impl.elem0.loc7_47.2 [template = constants.%Convert.bound.43e]
  236. // CHECK:STDOUT: %specific_fn.loc7_47.2: <specific function> = specific_function %bound_method.loc7_47.2, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.c37]
  237. // CHECK:STDOUT: %int.convert_checked.loc7_47.2: init %i32 = call %specific_fn.loc7_47.2(%int_1) [template = constants.%int_1.47b]
  238. // CHECK:STDOUT: %.loc7_47.5: init %i32 = converted %int_1, %int.convert_checked.loc7_47.2 [template = constants.%int_1.47b]
  239. // CHECK:STDOUT: %.loc7_47.6: ref %i32 = class_element_access %.loc7_48.2, element1
  240. // CHECK:STDOUT: %.loc7_47.7: init %i32 = initialize_from %.loc7_47.5 to %.loc7_47.6 [template = constants.%int_1.47b]
  241. // CHECK:STDOUT: %.loc7_47.8: init %Base = class_init (%.loc7_47.4, %.loc7_47.7), %.loc7_48.2 [template = constants.%Base.val]
  242. // CHECK:STDOUT: %.loc7_48.3: init %Base = converted %.loc7_47.1, %.loc7_47.8 [template = constants.%Base.val]
  243. // CHECK:STDOUT: %.loc7_48.4: init %Child = class_init (%.loc7_48.3), %a.var [template = constants.%Child.val]
  244. // CHECK:STDOUT: %.loc7_3.2: init %Child = converted %.loc7_48.1, %.loc7_48.4 [template = constants.%Child.val]
  245. // CHECK:STDOUT: assign %a.var, %.loc7_3.2
  246. // CHECK:STDOUT: %Child.ref: type = name_ref Child, imports.%Main.Child [template = constants.%Child]
  247. // CHECK:STDOUT: %a: ref %Child = bind_name a, %a.var
  248. // CHECK:STDOUT: %a.ref.loc8: ref %Child = name_ref a, %a
  249. // CHECK:STDOUT: %x.ref: %Base.elem = name_ref x, imports.%Main.import_ref.e67 [template = imports.%.720]
  250. // CHECK:STDOUT: %.loc8_4.1: ref %Base = class_element_access %a.ref.loc8, element0
  251. // CHECK:STDOUT: %.loc8_4.2: ref %Base = converted %a.ref.loc8, %.loc8_4.1
  252. // CHECK:STDOUT: %.loc8_4.3: ref %i32 = class_element_access %.loc8_4.2, element0
  253. // CHECK:STDOUT: %int_2: Core.IntLiteral = int_value 2 [template = constants.%int_2.ecc]
  254. // CHECK:STDOUT: %impl.elem0.loc8: %.39b = impl_witness_access constants.%impl_witness.b97, element0 [template = constants.%Convert.16d]
  255. // CHECK:STDOUT: %bound_method.loc8: <bound method> = bound_method %int_2, %impl.elem0.loc8 [template = constants.%Convert.bound.918]
  256. // CHECK:STDOUT: %specific_fn.loc8: <specific function> = specific_function %bound_method.loc8, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.5a4]
  257. // CHECK:STDOUT: %int.convert_checked.loc8: init %i32 = call %specific_fn.loc8(%int_2) [template = constants.%int_2.d0d]
  258. // CHECK:STDOUT: %.loc8_7: init %i32 = converted %int_2, %int.convert_checked.loc8 [template = constants.%int_2.d0d]
  259. // CHECK:STDOUT: assign %.loc8_4.3, %.loc8_7
  260. // CHECK:STDOUT: %a.ref.loc9: ref %Child = name_ref a, %a
  261. // CHECK:STDOUT: %F.ref: %F.type = name_ref F, imports.%Main.import_ref.e8f [template = constants.%F]
  262. // CHECK:STDOUT: %F.bound: <bound method> = bound_method %a.ref.loc9, %F.ref
  263. // CHECK:STDOUT: %.loc9_3.1: ref %Base = class_element_access %a.ref.loc9, element0
  264. // CHECK:STDOUT: %.loc9_3.2: ref %Base = converted %a.ref.loc9, %.loc9_3.1
  265. // CHECK:STDOUT: %.loc9_3.3: %Base = bind_value %.loc9_3.2
  266. // CHECK:STDOUT: %F.call: init %empty_tuple.type = call %F.bound(%.loc9_3.3)
  267. // CHECK:STDOUT: return
  268. // CHECK:STDOUT: }
  269. // CHECK:STDOUT:
  270. // CHECK:STDOUT: fn @F[%self.param_patt: %Base]() [from "a.carbon"];
  271. // CHECK:STDOUT: