import_base.carbon 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  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. // INCLUDE-FILE: toolchain/testing/testdata/min_prelude/int.carbon
  6. // TODO: Add ranges and switch to "--dump-sem-ir-ranges=only".
  7. // EXTRA-ARGS: --dump-sem-ir-ranges=if-present
  8. //
  9. // AUTOUPDATE
  10. // TIP: To test this file alone, run:
  11. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/class/import_base.carbon
  12. // TIP: To dump output, run:
  13. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/class/import_base.carbon
  14. // --- a.carbon
  15. library "[[@TEST_NAME]]";
  16. base class Base {
  17. fn F[self: Self]();
  18. fn Unused[self: Self]();
  19. var x: i32;
  20. var unused: i32;
  21. }
  22. class Child {
  23. extend base: Base;
  24. }
  25. // --- b.carbon
  26. library "[[@TEST_NAME]]";
  27. import library "a";
  28. fn Run() {
  29. var a: Child = {.base = {.x = 0, .unused = 1}};
  30. a.x = 2;
  31. a.F();
  32. }
  33. // CHECK:STDOUT: --- a.carbon
  34. // CHECK:STDOUT:
  35. // CHECK:STDOUT: constants {
  36. // CHECK:STDOUT: %Base: type = class_type @Base [concrete]
  37. // CHECK:STDOUT: %pattern_type.bcc: type = pattern_type %Base [concrete]
  38. // CHECK:STDOUT: %Base.F.type: type = fn_type @Base.F [concrete]
  39. // CHECK:STDOUT: %Base.F: %Base.F.type = struct_value () [concrete]
  40. // CHECK:STDOUT: %Base.Unused.type: type = fn_type @Base.Unused [concrete]
  41. // CHECK:STDOUT: %Base.Unused: %Base.Unused.type = struct_value () [concrete]
  42. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  43. // CHECK:STDOUT: %Int.type: type = generic_class_type @Int [concrete]
  44. // CHECK:STDOUT: %Int.generic: %Int.type = struct_value () [concrete]
  45. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  46. // CHECK:STDOUT: %Base.elem: type = unbound_element_type %Base, %i32 [concrete]
  47. // CHECK:STDOUT: %Destroy.type: type = facet_type <@Destroy> [concrete]
  48. // CHECK:STDOUT: %pattern_type.f6d: type = pattern_type auto [concrete]
  49. // CHECK:STDOUT: %Destroy.impl_witness.ae4: <witness> = impl_witness @Base.%Destroy.impl_witness_table [concrete]
  50. // CHECK:STDOUT: %ptr.11f: type = ptr_type %Base [concrete]
  51. // CHECK:STDOUT: %pattern_type.1b9: type = pattern_type %ptr.11f [concrete]
  52. // CHECK:STDOUT: %Base.as.Destroy.impl.Op.type: type = fn_type @Base.as.Destroy.impl.Op [concrete]
  53. // CHECK:STDOUT: %Base.as.Destroy.impl.Op: %Base.as.Destroy.impl.Op.type = struct_value () [concrete]
  54. // CHECK:STDOUT: %struct_type.x.unused: type = struct_type {.x: %i32, .unused: %i32} [concrete]
  55. // CHECK:STDOUT: %complete_type.20c: <witness> = complete_type_witness %struct_type.x.unused [concrete]
  56. // CHECK:STDOUT: %Child: type = class_type @Child [concrete]
  57. // CHECK:STDOUT: %Child.elem: type = unbound_element_type %Child, %Base [concrete]
  58. // CHECK:STDOUT: %Destroy.impl_witness.6fe: <witness> = impl_witness @Child.%Destroy.impl_witness_table [concrete]
  59. // CHECK:STDOUT: %ptr.dc0: type = ptr_type %Child [concrete]
  60. // CHECK:STDOUT: %pattern_type.b70: type = pattern_type %ptr.dc0 [concrete]
  61. // CHECK:STDOUT: %Child.as.Destroy.impl.Op.type: type = fn_type @Child.as.Destroy.impl.Op [concrete]
  62. // CHECK:STDOUT: %Child.as.Destroy.impl.Op: %Child.as.Destroy.impl.Op.type = struct_value () [concrete]
  63. // CHECK:STDOUT: %struct_type.base: type = struct_type {.base: %Base} [concrete]
  64. // CHECK:STDOUT: %complete_type.15c: <witness> = complete_type_witness %struct_type.base [concrete]
  65. // CHECK:STDOUT: }
  66. // CHECK:STDOUT:
  67. // CHECK:STDOUT: imports {
  68. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  69. // CHECK:STDOUT: .Int = %Core.Int
  70. // CHECK:STDOUT: .Destroy = %Core.Destroy
  71. // CHECK:STDOUT: import Core//prelude
  72. // CHECK:STDOUT: import Core//prelude/...
  73. // CHECK:STDOUT: }
  74. // CHECK:STDOUT: %Core.Int: %Int.type = import_ref Core//prelude/parts/int, Int, loaded [concrete = constants.%Int.generic]
  75. // CHECK:STDOUT: %Core.Destroy: type = import_ref Core//prelude/parts/destroy, Destroy, loaded [concrete = constants.%Destroy.type]
  76. // CHECK:STDOUT: }
  77. // CHECK:STDOUT:
  78. // CHECK:STDOUT: file {
  79. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  80. // CHECK:STDOUT: .Core = imports.%Core
  81. // CHECK:STDOUT: .Base = %Base.decl
  82. // CHECK:STDOUT: .Child = %Child.decl
  83. // CHECK:STDOUT: }
  84. // CHECK:STDOUT: %Core.import = import Core
  85. // CHECK:STDOUT: %Base.decl: type = class_decl @Base [concrete = constants.%Base] {} {}
  86. // CHECK:STDOUT: %Child.decl: type = class_decl @Child [concrete = constants.%Child] {} {}
  87. // CHECK:STDOUT: }
  88. // CHECK:STDOUT:
  89. // CHECK:STDOUT: impl @Base.as.Destroy.impl: @Base.%Self.ref as constants.%Destroy.type {
  90. // CHECK:STDOUT: %Base.as.Destroy.impl.Op.decl: %Base.as.Destroy.impl.Op.type = fn_decl @Base.as.Destroy.impl.Op [concrete = constants.%Base.as.Destroy.impl.Op] {
  91. // CHECK:STDOUT: %self.patt: %pattern_type.1b9 = binding_pattern self [concrete]
  92. // CHECK:STDOUT: %self.param_patt: %pattern_type.1b9 = value_param_pattern %self.patt, call_param0 [concrete]
  93. // CHECK:STDOUT: %.loc4: %pattern_type.f6d = addr_pattern %self.param_patt [concrete]
  94. // CHECK:STDOUT: } {
  95. // CHECK:STDOUT: %self.param: %ptr.11f = value_param call_param0
  96. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%Base [concrete = constants.%Base]
  97. // CHECK:STDOUT: %self: %ptr.11f = bind_name self, %self.param
  98. // CHECK:STDOUT: }
  99. // CHECK:STDOUT:
  100. // CHECK:STDOUT: !members:
  101. // CHECK:STDOUT: .Op = %Base.as.Destroy.impl.Op.decl
  102. // CHECK:STDOUT: witness = @Base.%Destroy.impl_witness
  103. // CHECK:STDOUT: }
  104. // CHECK:STDOUT:
  105. // CHECK:STDOUT: impl @Child.as.Destroy.impl: @Child.%Self.ref as constants.%Destroy.type {
  106. // CHECK:STDOUT: %Child.as.Destroy.impl.Op.decl: %Child.as.Destroy.impl.Op.type = fn_decl @Child.as.Destroy.impl.Op [concrete = constants.%Child.as.Destroy.impl.Op] {
  107. // CHECK:STDOUT: %self.patt: %pattern_type.b70 = binding_pattern self [concrete]
  108. // CHECK:STDOUT: %self.param_patt: %pattern_type.b70 = value_param_pattern %self.patt, call_param0 [concrete]
  109. // CHECK:STDOUT: %.loc12: %pattern_type.f6d = addr_pattern %self.param_patt [concrete]
  110. // CHECK:STDOUT: } {
  111. // CHECK:STDOUT: %self.param: %ptr.dc0 = value_param call_param0
  112. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%Child [concrete = constants.%Child]
  113. // CHECK:STDOUT: %self: %ptr.dc0 = bind_name self, %self.param
  114. // CHECK:STDOUT: }
  115. // CHECK:STDOUT:
  116. // CHECK:STDOUT: !members:
  117. // CHECK:STDOUT: .Op = %Child.as.Destroy.impl.Op.decl
  118. // CHECK:STDOUT: witness = @Child.%Destroy.impl_witness
  119. // CHECK:STDOUT: }
  120. // CHECK:STDOUT:
  121. // CHECK:STDOUT: class @Base {
  122. // CHECK:STDOUT: %Base.F.decl: %Base.F.type = fn_decl @Base.F [concrete = constants.%Base.F] {
  123. // CHECK:STDOUT: %self.patt: %pattern_type.bcc = binding_pattern self [concrete]
  124. // CHECK:STDOUT: %self.param_patt: %pattern_type.bcc = value_param_pattern %self.patt, call_param0 [concrete]
  125. // CHECK:STDOUT: } {
  126. // CHECK:STDOUT: %self.param: %Base = value_param call_param0
  127. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%Base [concrete = constants.%Base]
  128. // CHECK:STDOUT: %self: %Base = bind_name self, %self.param
  129. // CHECK:STDOUT: }
  130. // CHECK:STDOUT: %Base.Unused.decl: %Base.Unused.type = fn_decl @Base.Unused [concrete = constants.%Base.Unused] {
  131. // CHECK:STDOUT: %self.patt: %pattern_type.bcc = binding_pattern self [concrete]
  132. // CHECK:STDOUT: %self.param_patt: %pattern_type.bcc = value_param_pattern %self.patt, call_param0 [concrete]
  133. // CHECK:STDOUT: } {
  134. // CHECK:STDOUT: %self.param: %Base = value_param call_param0
  135. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%Base [concrete = constants.%Base]
  136. // CHECK:STDOUT: %self: %Base = bind_name self, %self.param
  137. // CHECK:STDOUT: }
  138. // CHECK:STDOUT: %int_32.loc8: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  139. // CHECK:STDOUT: %i32.loc8: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  140. // CHECK:STDOUT: %.loc8: %Base.elem = field_decl x, element0 [concrete]
  141. // CHECK:STDOUT: %int_32.loc9: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  142. // CHECK:STDOUT: %i32.loc9: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  143. // CHECK:STDOUT: %.loc9: %Base.elem = field_decl unused, element1 [concrete]
  144. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%Base [concrete = constants.%Base]
  145. // CHECK:STDOUT: impl_decl @Base.as.Destroy.impl [concrete] {} {}
  146. // CHECK:STDOUT: %Destroy.impl_witness_table = impl_witness_table (@Base.as.Destroy.impl.%Base.as.Destroy.impl.Op.decl), @Base.as.Destroy.impl [concrete]
  147. // CHECK:STDOUT: %Destroy.impl_witness: <witness> = impl_witness %Destroy.impl_witness_table [concrete = constants.%Destroy.impl_witness.ae4]
  148. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness constants.%struct_type.x.unused [concrete = constants.%complete_type.20c]
  149. // CHECK:STDOUT: complete_type_witness = %complete_type
  150. // CHECK:STDOUT:
  151. // CHECK:STDOUT: !members:
  152. // CHECK:STDOUT: .Self = constants.%Base
  153. // CHECK:STDOUT: .F = %Base.F.decl
  154. // CHECK:STDOUT: .Unused = %Base.Unused.decl
  155. // CHECK:STDOUT: .x = %.loc8
  156. // CHECK:STDOUT: .unused = %.loc9
  157. // CHECK:STDOUT: }
  158. // CHECK:STDOUT:
  159. // CHECK:STDOUT: class @Child {
  160. // CHECK:STDOUT: %Base.ref: type = name_ref Base, file.%Base.decl [concrete = constants.%Base]
  161. // CHECK:STDOUT: %.loc13: %Child.elem = base_decl %Base.ref, element0 [concrete]
  162. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%Child [concrete = constants.%Child]
  163. // CHECK:STDOUT: impl_decl @Child.as.Destroy.impl [concrete] {} {}
  164. // CHECK:STDOUT: %Destroy.impl_witness_table = impl_witness_table (@Child.as.Destroy.impl.%Child.as.Destroy.impl.Op.decl), @Child.as.Destroy.impl [concrete]
  165. // CHECK:STDOUT: %Destroy.impl_witness: <witness> = impl_witness %Destroy.impl_witness_table [concrete = constants.%Destroy.impl_witness.6fe]
  166. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness constants.%struct_type.base [concrete = constants.%complete_type.15c]
  167. // CHECK:STDOUT: complete_type_witness = %complete_type
  168. // CHECK:STDOUT:
  169. // CHECK:STDOUT: !members:
  170. // CHECK:STDOUT: .Self = constants.%Child
  171. // CHECK:STDOUT: .Base = <poisoned>
  172. // CHECK:STDOUT: .base = %.loc13
  173. // CHECK:STDOUT: extend %Base.ref
  174. // CHECK:STDOUT: }
  175. // CHECK:STDOUT:
  176. // CHECK:STDOUT: fn @Base.F(%self.param: %Base);
  177. // CHECK:STDOUT:
  178. // CHECK:STDOUT: fn @Base.Unused(%self.param: %Base);
  179. // CHECK:STDOUT:
  180. // CHECK:STDOUT: fn @Base.as.Destroy.impl.Op(%self.param: %ptr.11f) = "no_op";
  181. // CHECK:STDOUT:
  182. // CHECK:STDOUT: fn @Child.as.Destroy.impl.Op(%self.param: %ptr.dc0) = "no_op";
  183. // CHECK:STDOUT:
  184. // CHECK:STDOUT: --- b.carbon
  185. // CHECK:STDOUT:
  186. // CHECK:STDOUT: constants {
  187. // CHECK:STDOUT: %Run.type: type = fn_type @Run [concrete]
  188. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  189. // CHECK:STDOUT: %Run: %Run.type = struct_value () [concrete]
  190. // CHECK:STDOUT: %Child: type = class_type @Child [concrete]
  191. // CHECK:STDOUT: %Base: type = class_type @Base [concrete]
  192. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  193. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  194. // CHECK:STDOUT: %struct_type.x.unused.7d5: type = struct_type {.x: %i32, .unused: %i32} [concrete]
  195. // CHECK:STDOUT: %complete_type.90f: <witness> = complete_type_witness %struct_type.x.unused.7d5 [concrete]
  196. // CHECK:STDOUT: %struct_type.base.b1e: type = struct_type {.base: %Base} [concrete]
  197. // CHECK:STDOUT: %complete_type.15c: <witness> = complete_type_witness %struct_type.base.b1e [concrete]
  198. // CHECK:STDOUT: %pattern_type.1bd: type = pattern_type %Child [concrete]
  199. // CHECK:STDOUT: %int_0.5c6: Core.IntLiteral = int_value 0 [concrete]
  200. // CHECK:STDOUT: %int_1.5b8: Core.IntLiteral = int_value 1 [concrete]
  201. // CHECK:STDOUT: %struct_type.x.unused.c45: type = struct_type {.x: Core.IntLiteral, .unused: Core.IntLiteral} [concrete]
  202. // CHECK:STDOUT: %struct_type.base.6c7: type = struct_type {.base: %struct_type.x.unused.c45} [concrete]
  203. // CHECK:STDOUT: %ImplicitAs.type.cc7: type = generic_interface_type @ImplicitAs [concrete]
  204. // CHECK:STDOUT: %ImplicitAs.generic: %ImplicitAs.type.cc7 = struct_value () [concrete]
  205. // CHECK:STDOUT: %ImplicitAs.type.9ba: type = facet_type <@ImplicitAs, @ImplicitAs(%i32)> [concrete]
  206. // CHECK:STDOUT: %ImplicitAs.Convert.type.6da: type = fn_type @ImplicitAs.Convert, @ImplicitAs(%i32) [concrete]
  207. // CHECK:STDOUT: %Destroy.type: type = facet_type <@Destroy> [concrete]
  208. // CHECK:STDOUT: %To: Core.IntLiteral = bind_symbolic_name To, 0 [symbolic]
  209. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.type.0b2: type = fn_type @Core.IntLiteral.as.ImplicitAs.impl.Convert, @Core.IntLiteral.as.ImplicitAs.impl(%To) [symbolic]
  210. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.6d7: %Core.IntLiteral.as.ImplicitAs.impl.Convert.type.0b2 = struct_value () [symbolic]
  211. // CHECK:STDOUT: %ImplicitAs.impl_witness.e34: <witness> = impl_witness imports.%ImplicitAs.impl_witness_table.e36, @Core.IntLiteral.as.ImplicitAs.impl(%int_32) [concrete]
  212. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.type.ed5: type = fn_type @Core.IntLiteral.as.ImplicitAs.impl.Convert, @Core.IntLiteral.as.ImplicitAs.impl(%int_32) [concrete]
  213. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.16d: %Core.IntLiteral.as.ImplicitAs.impl.Convert.type.ed5 = struct_value () [concrete]
  214. // CHECK:STDOUT: %ImplicitAs.facet: %ImplicitAs.type.9ba = facet_value Core.IntLiteral, (%ImplicitAs.impl_witness.e34) [concrete]
  215. // CHECK:STDOUT: %.d6a: type = fn_type_with_self_type %ImplicitAs.Convert.type.6da, %ImplicitAs.facet [concrete]
  216. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.bound.9aa: <bound method> = bound_method %int_0.5c6, %Core.IntLiteral.as.ImplicitAs.impl.Convert.16d [concrete]
  217. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.specific_fn: <specific function> = specific_function %Core.IntLiteral.as.ImplicitAs.impl.Convert.16d, @Core.IntLiteral.as.ImplicitAs.impl.Convert(%int_32) [concrete]
  218. // CHECK:STDOUT: %bound_method.8aa: <bound method> = bound_method %int_0.5c6, %Core.IntLiteral.as.ImplicitAs.impl.Convert.specific_fn [concrete]
  219. // CHECK:STDOUT: %int_0.263: %i32 = int_value 0 [concrete]
  220. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.bound.43e: <bound method> = bound_method %int_1.5b8, %Core.IntLiteral.as.ImplicitAs.impl.Convert.16d [concrete]
  221. // CHECK:STDOUT: %bound_method.947: <bound method> = bound_method %int_1.5b8, %Core.IntLiteral.as.ImplicitAs.impl.Convert.specific_fn [concrete]
  222. // CHECK:STDOUT: %int_1.47b: %i32 = int_value 1 [concrete]
  223. // CHECK:STDOUT: %Base.val: %Base = struct_value (%int_0.263, %int_1.47b) [concrete]
  224. // CHECK:STDOUT: %Child.val: %Child = struct_value (%Base.val) [concrete]
  225. // CHECK:STDOUT: %Base.elem: type = unbound_element_type %Base, %i32 [concrete]
  226. // CHECK:STDOUT: %int_2.ecc: Core.IntLiteral = int_value 2 [concrete]
  227. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.bound.918: <bound method> = bound_method %int_2.ecc, %Core.IntLiteral.as.ImplicitAs.impl.Convert.16d [concrete]
  228. // CHECK:STDOUT: %bound_method.c74: <bound method> = bound_method %int_2.ecc, %Core.IntLiteral.as.ImplicitAs.impl.Convert.specific_fn [concrete]
  229. // CHECK:STDOUT: %int_2.d0d: %i32 = int_value 2 [concrete]
  230. // CHECK:STDOUT: %Base.F.type: type = fn_type @Base.F [concrete]
  231. // CHECK:STDOUT: %Base.F: %Base.F.type = struct_value () [concrete]
  232. // CHECK:STDOUT: %Destroy.impl_witness.cef: <witness> = impl_witness imports.%Destroy.impl_witness_table.ad3 [concrete]
  233. // CHECK:STDOUT: %Child.as.Destroy.impl.Op.type: type = fn_type @Child.as.Destroy.impl.Op [concrete]
  234. // CHECK:STDOUT: %Child.as.Destroy.impl.Op: %Child.as.Destroy.impl.Op.type = struct_value () [concrete]
  235. // CHECK:STDOUT: %ptr.dc0: type = ptr_type %Child [concrete]
  236. // CHECK:STDOUT: }
  237. // CHECK:STDOUT:
  238. // CHECK:STDOUT: imports {
  239. // CHECK:STDOUT: %Main.Base = import_ref Main//a, Base, unloaded
  240. // CHECK:STDOUT: %Main.Child: type = import_ref Main//a, Child, loaded [concrete = constants.%Child]
  241. // CHECK:STDOUT: %Core.ece: <namespace> = namespace file.%Core.import, [concrete] {
  242. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  243. // CHECK:STDOUT: .Destroy = %Core.Destroy
  244. // CHECK:STDOUT: import Core//prelude
  245. // CHECK:STDOUT: import Core//prelude/...
  246. // CHECK:STDOUT: }
  247. // CHECK:STDOUT: %Main.import_ref.239: <witness> = import_ref Main//a, loc10_1, loaded [concrete = constants.%complete_type.90f]
  248. // CHECK:STDOUT: %Main.import_ref.1f3 = import_ref Main//a, inst18 [no loc], unloaded
  249. // CHECK:STDOUT: %Main.import_ref.e8f: %Base.F.type = import_ref Main//a, loc5_21, loaded [concrete = constants.%Base.F]
  250. // CHECK:STDOUT: %Main.import_ref.8bf = import_ref Main//a, loc6_26, unloaded
  251. // CHECK:STDOUT: %Main.import_ref.e67: %Base.elem = import_ref Main//a, loc8_8, loaded [concrete = %.720]
  252. // CHECK:STDOUT: %Main.import_ref.2e4 = import_ref Main//a, loc9_13, unloaded
  253. // CHECK:STDOUT: %Main.import_ref.c5f: <witness> = import_ref Main//a, loc14_1, loaded [concrete = constants.%complete_type.15c]
  254. // CHECK:STDOUT: %Main.import_ref.9a9 = import_ref Main//a, inst111 [no loc], unloaded
  255. // CHECK:STDOUT: %Main.import_ref.7e5 = import_ref Main//a, loc13_20, unloaded
  256. // CHECK:STDOUT: %Main.import_ref.a21640.2: type = import_ref Main//a, loc13_16, loaded [concrete = constants.%Base]
  257. // CHECK:STDOUT: %Core.ImplicitAs: %ImplicitAs.type.cc7 = import_ref Core//prelude/parts/as, ImplicitAs, loaded [concrete = constants.%ImplicitAs.generic]
  258. // CHECK:STDOUT: %Core.import_ref.a86c: @Core.IntLiteral.as.ImplicitAs.impl.%Core.IntLiteral.as.ImplicitAs.impl.Convert.type (%Core.IntLiteral.as.ImplicitAs.impl.Convert.type.0b2) = import_ref Core//prelude/parts/int, loc16_39, loaded [symbolic = @Core.IntLiteral.as.ImplicitAs.impl.%Core.IntLiteral.as.ImplicitAs.impl.Convert (constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.6d7)]
  259. // CHECK:STDOUT: %ImplicitAs.impl_witness_table.e36 = impl_witness_table (%Core.import_ref.a86c), @Core.IntLiteral.as.ImplicitAs.impl [concrete]
  260. // CHECK:STDOUT: %.720: %Base.elem = field_decl x, element0 [concrete]
  261. // CHECK:STDOUT: %Core.Destroy: type = import_ref Core//prelude/parts/destroy, Destroy, loaded [concrete = constants.%Destroy.type]
  262. // CHECK:STDOUT: %Main.import_ref.9cd = import_ref Main//a, loc4_17, unloaded
  263. // CHECK:STDOUT: %Main.import_ref.87c: type = import_ref Main//a, loc4_17, loaded [concrete = constants.%Base]
  264. // CHECK:STDOUT: %Main.import_ref.cb9298.1: type = import_ref Main//a, inst70 [no loc], loaded [concrete = constants.%Destroy.type]
  265. // CHECK:STDOUT: %Main.import_ref.9d9: <witness> = import_ref Main//a, loc12_13, loaded [concrete = constants.%Destroy.impl_witness.cef]
  266. // CHECK:STDOUT: %Main.import_ref.98c: type = import_ref Main//a, loc12_13, loaded [concrete = constants.%Child]
  267. // CHECK:STDOUT: %Main.import_ref.cb9298.2: type = import_ref Main//a, inst70 [no loc], loaded [concrete = constants.%Destroy.type]
  268. // CHECK:STDOUT: %Main.import_ref.141: %Child.as.Destroy.impl.Op.type = import_ref Main//a, loc12_13, loaded [concrete = constants.%Child.as.Destroy.impl.Op]
  269. // CHECK:STDOUT: %Destroy.impl_witness_table.ad3 = impl_witness_table (%Main.import_ref.141), @Child.as.Destroy.impl [concrete]
  270. // CHECK:STDOUT: }
  271. // CHECK:STDOUT:
  272. // CHECK:STDOUT: file {
  273. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  274. // CHECK:STDOUT: .Base = imports.%Main.Base
  275. // CHECK:STDOUT: .Child = imports.%Main.Child
  276. // CHECK:STDOUT: .Core = imports.%Core.ece
  277. // CHECK:STDOUT: .Run = %Run.decl
  278. // CHECK:STDOUT: }
  279. // CHECK:STDOUT: %Core.import = import Core
  280. // CHECK:STDOUT: %default.import = import <none>
  281. // CHECK:STDOUT: %Run.decl: %Run.type = fn_decl @Run [concrete = constants.%Run] {} {}
  282. // CHECK:STDOUT: }
  283. // CHECK:STDOUT:
  284. // CHECK:STDOUT: impl @Base.as.Destroy.impl: imports.%Main.import_ref.87c as imports.%Main.import_ref.cb9298.1 [from "a.carbon"] {
  285. // CHECK:STDOUT: !members:
  286. // CHECK:STDOUT: witness = imports.%Main.import_ref.9cd
  287. // CHECK:STDOUT: }
  288. // CHECK:STDOUT:
  289. // CHECK:STDOUT: impl @Child.as.Destroy.impl: imports.%Main.import_ref.98c as imports.%Main.import_ref.cb9298.2 [from "a.carbon"] {
  290. // CHECK:STDOUT: !members:
  291. // CHECK:STDOUT: witness = imports.%Main.import_ref.9d9
  292. // CHECK:STDOUT: }
  293. // CHECK:STDOUT:
  294. // CHECK:STDOUT: class @Child [from "a.carbon"] {
  295. // CHECK:STDOUT: complete_type_witness = imports.%Main.import_ref.c5f
  296. // CHECK:STDOUT:
  297. // CHECK:STDOUT: !members:
  298. // CHECK:STDOUT: .Self = imports.%Main.import_ref.9a9
  299. // CHECK:STDOUT: .base = imports.%Main.import_ref.7e5
  300. // CHECK:STDOUT: .x = <poisoned>
  301. // CHECK:STDOUT: .F = <poisoned>
  302. // CHECK:STDOUT: extend imports.%Main.import_ref.a21640.2
  303. // CHECK:STDOUT: }
  304. // CHECK:STDOUT:
  305. // CHECK:STDOUT: class @Base [from "a.carbon"] {
  306. // CHECK:STDOUT: complete_type_witness = imports.%Main.import_ref.239
  307. // CHECK:STDOUT:
  308. // CHECK:STDOUT: !members:
  309. // CHECK:STDOUT: .Self = imports.%Main.import_ref.1f3
  310. // CHECK:STDOUT: .F = imports.%Main.import_ref.e8f
  311. // CHECK:STDOUT: .Unused = imports.%Main.import_ref.8bf
  312. // CHECK:STDOUT: .x = imports.%Main.import_ref.e67
  313. // CHECK:STDOUT: .unused = imports.%Main.import_ref.2e4
  314. // CHECK:STDOUT: }
  315. // CHECK:STDOUT:
  316. // CHECK:STDOUT: fn @Run() {
  317. // CHECK:STDOUT: !entry:
  318. // CHECK:STDOUT: name_binding_decl {
  319. // CHECK:STDOUT: %a.patt: %pattern_type.1bd = binding_pattern a [concrete]
  320. // CHECK:STDOUT: %a.var_patt: %pattern_type.1bd = var_pattern %a.patt [concrete]
  321. // CHECK:STDOUT: }
  322. // CHECK:STDOUT: %a.var: ref %Child = var %a.var_patt
  323. // CHECK:STDOUT: %int_0: Core.IntLiteral = int_value 0 [concrete = constants.%int_0.5c6]
  324. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [concrete = constants.%int_1.5b8]
  325. // CHECK:STDOUT: %.loc7_47.1: %struct_type.x.unused.c45 = struct_literal (%int_0, %int_1)
  326. // CHECK:STDOUT: %.loc7_48.1: %struct_type.base.6c7 = struct_literal (%.loc7_47.1)
  327. // CHECK:STDOUT: %impl.elem0.loc7_47.1: %.d6a = impl_witness_access constants.%ImplicitAs.impl_witness.e34, element0 [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.16d]
  328. // CHECK:STDOUT: %bound_method.loc7_47.1: <bound method> = bound_method %int_0, %impl.elem0.loc7_47.1 [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.bound.9aa]
  329. // CHECK:STDOUT: %specific_fn.loc7_47.1: <specific function> = specific_function %impl.elem0.loc7_47.1, @Core.IntLiteral.as.ImplicitAs.impl.Convert(constants.%int_32) [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.specific_fn]
  330. // CHECK:STDOUT: %bound_method.loc7_47.2: <bound method> = bound_method %int_0, %specific_fn.loc7_47.1 [concrete = constants.%bound_method.8aa]
  331. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.call.loc7_47.1: init %i32 = call %bound_method.loc7_47.2(%int_0) [concrete = constants.%int_0.263]
  332. // CHECK:STDOUT: %.loc7_47.2: init %i32 = converted %int_0, %Core.IntLiteral.as.ImplicitAs.impl.Convert.call.loc7_47.1 [concrete = constants.%int_0.263]
  333. // CHECK:STDOUT: %.loc7_48.2: ref %Base = class_element_access %a.var, element0
  334. // CHECK:STDOUT: %.loc7_47.3: ref %i32 = class_element_access %.loc7_48.2, element0
  335. // CHECK:STDOUT: %.loc7_47.4: init %i32 = initialize_from %.loc7_47.2 to %.loc7_47.3 [concrete = constants.%int_0.263]
  336. // CHECK:STDOUT: %impl.elem0.loc7_47.2: %.d6a = impl_witness_access constants.%ImplicitAs.impl_witness.e34, element0 [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.16d]
  337. // CHECK:STDOUT: %bound_method.loc7_47.3: <bound method> = bound_method %int_1, %impl.elem0.loc7_47.2 [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.bound.43e]
  338. // CHECK:STDOUT: %specific_fn.loc7_47.2: <specific function> = specific_function %impl.elem0.loc7_47.2, @Core.IntLiteral.as.ImplicitAs.impl.Convert(constants.%int_32) [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.specific_fn]
  339. // CHECK:STDOUT: %bound_method.loc7_47.4: <bound method> = bound_method %int_1, %specific_fn.loc7_47.2 [concrete = constants.%bound_method.947]
  340. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.call.loc7_47.2: init %i32 = call %bound_method.loc7_47.4(%int_1) [concrete = constants.%int_1.47b]
  341. // CHECK:STDOUT: %.loc7_47.5: init %i32 = converted %int_1, %Core.IntLiteral.as.ImplicitAs.impl.Convert.call.loc7_47.2 [concrete = constants.%int_1.47b]
  342. // CHECK:STDOUT: %.loc7_47.6: ref %i32 = class_element_access %.loc7_48.2, element1
  343. // CHECK:STDOUT: %.loc7_47.7: init %i32 = initialize_from %.loc7_47.5 to %.loc7_47.6 [concrete = constants.%int_1.47b]
  344. // CHECK:STDOUT: %.loc7_47.8: init %Base = class_init (%.loc7_47.4, %.loc7_47.7), %.loc7_48.2 [concrete = constants.%Base.val]
  345. // CHECK:STDOUT: %.loc7_48.3: init %Base = converted %.loc7_47.1, %.loc7_47.8 [concrete = constants.%Base.val]
  346. // CHECK:STDOUT: %.loc7_48.4: init %Child = class_init (%.loc7_48.3), %a.var [concrete = constants.%Child.val]
  347. // CHECK:STDOUT: %.loc7_3: init %Child = converted %.loc7_48.1, %.loc7_48.4 [concrete = constants.%Child.val]
  348. // CHECK:STDOUT: assign %a.var, %.loc7_3
  349. // CHECK:STDOUT: %Child.ref: type = name_ref Child, imports.%Main.Child [concrete = constants.%Child]
  350. // CHECK:STDOUT: %a: ref %Child = bind_name a, %a.var
  351. // CHECK:STDOUT: %a.ref.loc8: ref %Child = name_ref a, %a
  352. // CHECK:STDOUT: %x.ref: %Base.elem = name_ref x, imports.%Main.import_ref.e67 [concrete = imports.%.720]
  353. // CHECK:STDOUT: %.loc8_4.1: ref %Base = class_element_access %a.ref.loc8, element0
  354. // CHECK:STDOUT: %.loc8_4.2: ref %Base = converted %a.ref.loc8, %.loc8_4.1
  355. // CHECK:STDOUT: %.loc8_4.3: ref %i32 = class_element_access %.loc8_4.2, element0
  356. // CHECK:STDOUT: %int_2: Core.IntLiteral = int_value 2 [concrete = constants.%int_2.ecc]
  357. // CHECK:STDOUT: %impl.elem0.loc8: %.d6a = impl_witness_access constants.%ImplicitAs.impl_witness.e34, element0 [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.16d]
  358. // CHECK:STDOUT: %bound_method.loc8_7.1: <bound method> = bound_method %int_2, %impl.elem0.loc8 [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.bound.918]
  359. // CHECK:STDOUT: %specific_fn.loc8: <specific function> = specific_function %impl.elem0.loc8, @Core.IntLiteral.as.ImplicitAs.impl.Convert(constants.%int_32) [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.specific_fn]
  360. // CHECK:STDOUT: %bound_method.loc8_7.2: <bound method> = bound_method %int_2, %specific_fn.loc8 [concrete = constants.%bound_method.c74]
  361. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.call.loc8: init %i32 = call %bound_method.loc8_7.2(%int_2) [concrete = constants.%int_2.d0d]
  362. // CHECK:STDOUT: %.loc8_7: init %i32 = converted %int_2, %Core.IntLiteral.as.ImplicitAs.impl.Convert.call.loc8 [concrete = constants.%int_2.d0d]
  363. // CHECK:STDOUT: assign %.loc8_4.3, %.loc8_7
  364. // CHECK:STDOUT: %a.ref.loc9: ref %Child = name_ref a, %a
  365. // CHECK:STDOUT: %F.ref: %Base.F.type = name_ref F, imports.%Main.import_ref.e8f [concrete = constants.%Base.F]
  366. // CHECK:STDOUT: %Base.F.bound: <bound method> = bound_method %a.ref.loc9, %F.ref
  367. // CHECK:STDOUT: %.loc9_3.1: ref %Base = class_element_access %a.ref.loc9, element0
  368. // CHECK:STDOUT: %.loc9_3.2: ref %Base = converted %a.ref.loc9, %.loc9_3.1
  369. // CHECK:STDOUT: %.loc9_3.3: %Base = bind_value %.loc9_3.2
  370. // CHECK:STDOUT: %Base.F.call: init %empty_tuple.type = call %Base.F.bound(%.loc9_3.3)
  371. // CHECK:STDOUT: %Child.as.Destroy.impl.Op.bound: <bound method> = bound_method %a.var, constants.%Child.as.Destroy.impl.Op
  372. // CHECK:STDOUT: %addr: %ptr.dc0 = addr_of %a.var
  373. // CHECK:STDOUT: %Child.as.Destroy.impl.Op.call: init %empty_tuple.type = call %Child.as.Destroy.impl.Op.bound(%addr)
  374. // CHECK:STDOUT: return
  375. // CHECK:STDOUT: }
  376. // CHECK:STDOUT:
  377. // CHECK:STDOUT: fn @Base.F [from "a.carbon"];
  378. // CHECK:STDOUT:
  379. // CHECK:STDOUT: fn @Child.as.Destroy.impl.Op = "no_op" [from "a.carbon"];
  380. // CHECK:STDOUT: