syntax.carbon 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  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/package_expr/syntax.carbon
  12. // TIP: To dump output, run:
  13. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/package_expr/syntax.carbon
  14. // --- global.carbon
  15. package Global;
  16. var x: i32 = 0;
  17. var y: i32 = package.x;
  18. // --- inside_fn.carbon
  19. package InsideFn;
  20. var x: i32 = 0;
  21. fn Main() {
  22. var x: i32 = 1;
  23. var y: i32 = package.x;
  24. }
  25. // --- namespace.carbon
  26. package Namespace;
  27. namespace NS;
  28. class NS.C {
  29. fn Foo() {}
  30. };
  31. fn Main() {
  32. package.NS.C.Foo();
  33. }
  34. // CHECK:STDOUT: --- global.carbon
  35. // CHECK:STDOUT:
  36. // CHECK:STDOUT: constants {
  37. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  38. // CHECK:STDOUT: %Int.type: type = generic_class_type @Int [concrete]
  39. // CHECK:STDOUT: %Int.generic: %Int.type = struct_value () [concrete]
  40. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  41. // CHECK:STDOUT: %pattern_type.7ce: type = pattern_type %i32 [concrete]
  42. // CHECK:STDOUT: %int_0.5c6: Core.IntLiteral = int_value 0 [concrete]
  43. // CHECK:STDOUT: %ImplicitAs.type.cc7: type = generic_interface_type @ImplicitAs [concrete]
  44. // CHECK:STDOUT: %ImplicitAs.generic: %ImplicitAs.type.cc7 = struct_value () [concrete]
  45. // CHECK:STDOUT: %ImplicitAs.type.e8c: type = facet_type <@ImplicitAs, @ImplicitAs(%i32)> [concrete]
  46. // CHECK:STDOUT: %ImplicitAs.Convert.type.1b6: type = fn_type @ImplicitAs.Convert, @ImplicitAs(%i32) [concrete]
  47. // CHECK:STDOUT: %To: Core.IntLiteral = bind_symbolic_name To, 0 [symbolic]
  48. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.type.49e: type = fn_type @Core.IntLiteral.as.ImplicitAs.impl.Convert, @Core.IntLiteral.as.ImplicitAs.impl(%To) [symbolic]
  49. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.f01: %Core.IntLiteral.as.ImplicitAs.impl.Convert.type.49e = struct_value () [symbolic]
  50. // CHECK:STDOUT: %ImplicitAs.impl_witness.acc: <witness> = impl_witness imports.%ImplicitAs.impl_witness_table.b6b, @Core.IntLiteral.as.ImplicitAs.impl(%int_32) [concrete]
  51. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.type.9ec: type = fn_type @Core.IntLiteral.as.ImplicitAs.impl.Convert, @Core.IntLiteral.as.ImplicitAs.impl(%int_32) [concrete]
  52. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.592: %Core.IntLiteral.as.ImplicitAs.impl.Convert.type.9ec = struct_value () [concrete]
  53. // CHECK:STDOUT: %ImplicitAs.facet: %ImplicitAs.type.e8c = facet_value Core.IntLiteral, (%ImplicitAs.impl_witness.acc) [concrete]
  54. // CHECK:STDOUT: %.7ea: type = fn_type_with_self_type %ImplicitAs.Convert.type.1b6, %ImplicitAs.facet [concrete]
  55. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.bound: <bound method> = bound_method %int_0.5c6, %Core.IntLiteral.as.ImplicitAs.impl.Convert.592 [concrete]
  56. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.specific_fn: <specific function> = specific_function %Core.IntLiteral.as.ImplicitAs.impl.Convert.592, @Core.IntLiteral.as.ImplicitAs.impl.Convert(%int_32) [concrete]
  57. // CHECK:STDOUT: %bound_method: <bound method> = bound_method %int_0.5c6, %Core.IntLiteral.as.ImplicitAs.impl.Convert.specific_fn [concrete]
  58. // CHECK:STDOUT: %int_0.6a9: %i32 = int_value 0 [concrete]
  59. // CHECK:STDOUT: }
  60. // CHECK:STDOUT:
  61. // CHECK:STDOUT: imports {
  62. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  63. // CHECK:STDOUT: .Int = %Core.Int
  64. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  65. // CHECK:STDOUT: import Core//prelude
  66. // CHECK:STDOUT: import Core//prelude/...
  67. // CHECK:STDOUT: }
  68. // CHECK:STDOUT: %Core.Int: %Int.type = import_ref Core//prelude/parts/int, Int, loaded [concrete = constants.%Int.generic]
  69. // CHECK:STDOUT: %Core.ImplicitAs: %ImplicitAs.type.cc7 = import_ref Core//prelude/parts/as, ImplicitAs, loaded [concrete = constants.%ImplicitAs.generic]
  70. // CHECK:STDOUT: %Core.import_ref.428: @Core.IntLiteral.as.ImplicitAs.impl.%Core.IntLiteral.as.ImplicitAs.impl.Convert.type (%Core.IntLiteral.as.ImplicitAs.impl.Convert.type.49e) = 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.f01)]
  71. // CHECK:STDOUT: %ImplicitAs.impl_witness_table.b6b = impl_witness_table (%Core.import_ref.428), @Core.IntLiteral.as.ImplicitAs.impl [concrete]
  72. // CHECK:STDOUT: }
  73. // CHECK:STDOUT:
  74. // CHECK:STDOUT: file {
  75. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  76. // CHECK:STDOUT: .Core = imports.%Core
  77. // CHECK:STDOUT: .x = %x
  78. // CHECK:STDOUT: .y = %y
  79. // CHECK:STDOUT: }
  80. // CHECK:STDOUT: %Core.import = import Core
  81. // CHECK:STDOUT: name_binding_decl {
  82. // CHECK:STDOUT: %x.patt: %pattern_type.7ce = binding_pattern x [concrete]
  83. // CHECK:STDOUT: %x.var_patt: %pattern_type.7ce = var_pattern %x.patt [concrete]
  84. // CHECK:STDOUT: }
  85. // CHECK:STDOUT: %x.var: ref %i32 = var %x.var_patt [concrete]
  86. // CHECK:STDOUT: %.loc4: type = splice_block %i32.loc4 [concrete = constants.%i32] {
  87. // CHECK:STDOUT: %int_32.loc4: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  88. // CHECK:STDOUT: %i32.loc4: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  89. // CHECK:STDOUT: }
  90. // CHECK:STDOUT: %x: ref %i32 = bind_name x, %x.var [concrete = %x.var]
  91. // CHECK:STDOUT: name_binding_decl {
  92. // CHECK:STDOUT: %y.patt: %pattern_type.7ce = binding_pattern y [concrete]
  93. // CHECK:STDOUT: %y.var_patt: %pattern_type.7ce = var_pattern %y.patt [concrete]
  94. // CHECK:STDOUT: }
  95. // CHECK:STDOUT: %y.var: ref %i32 = var %y.var_patt [concrete]
  96. // CHECK:STDOUT: %.loc5: type = splice_block %i32.loc5 [concrete = constants.%i32] {
  97. // CHECK:STDOUT: %int_32.loc5: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  98. // CHECK:STDOUT: %i32.loc5: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  99. // CHECK:STDOUT: }
  100. // CHECK:STDOUT: %y: ref %i32 = bind_name y, %y.var [concrete = %y.var]
  101. // CHECK:STDOUT: }
  102. // CHECK:STDOUT:
  103. // CHECK:STDOUT: fn @__global_init() {
  104. // CHECK:STDOUT: !entry:
  105. // CHECK:STDOUT: %int_0: Core.IntLiteral = int_value 0 [concrete = constants.%int_0.5c6]
  106. // CHECK:STDOUT: %impl.elem0: %.7ea = impl_witness_access constants.%ImplicitAs.impl_witness.acc, element0 [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.592]
  107. // CHECK:STDOUT: %bound_method.loc4_1.1: <bound method> = bound_method %int_0, %impl.elem0 [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.bound]
  108. // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %impl.elem0, @Core.IntLiteral.as.ImplicitAs.impl.Convert(constants.%int_32) [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.specific_fn]
  109. // CHECK:STDOUT: %bound_method.loc4_1.2: <bound method> = bound_method %int_0, %specific_fn [concrete = constants.%bound_method]
  110. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.call: init %i32 = call %bound_method.loc4_1.2(%int_0) [concrete = constants.%int_0.6a9]
  111. // CHECK:STDOUT: %.loc4: init %i32 = converted %int_0, %Core.IntLiteral.as.ImplicitAs.impl.Convert.call [concrete = constants.%int_0.6a9]
  112. // CHECK:STDOUT: assign file.%x.var, %.loc4
  113. // CHECK:STDOUT: %package.ref: <namespace> = name_ref package, package [concrete = package]
  114. // CHECK:STDOUT: %x.ref: ref %i32 = name_ref x, file.%x [concrete = file.%x.var]
  115. // CHECK:STDOUT: %.loc5: %i32 = bind_value %x.ref
  116. // CHECK:STDOUT: assign file.%y.var, %.loc5
  117. // CHECK:STDOUT: return
  118. // CHECK:STDOUT: }
  119. // CHECK:STDOUT:
  120. // CHECK:STDOUT: --- inside_fn.carbon
  121. // CHECK:STDOUT:
  122. // CHECK:STDOUT: constants {
  123. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  124. // CHECK:STDOUT: %Int.type: type = generic_class_type @Int [concrete]
  125. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  126. // CHECK:STDOUT: %Int.generic: %Int.type = struct_value () [concrete]
  127. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  128. // CHECK:STDOUT: %pattern_type.7ce: type = pattern_type %i32 [concrete]
  129. // CHECK:STDOUT: %int_0.5c6: Core.IntLiteral = int_value 0 [concrete]
  130. // CHECK:STDOUT: %ImplicitAs.type.cc7: type = generic_interface_type @ImplicitAs [concrete]
  131. // CHECK:STDOUT: %ImplicitAs.generic: %ImplicitAs.type.cc7 = struct_value () [concrete]
  132. // CHECK:STDOUT: %ImplicitAs.type.e8c: type = facet_type <@ImplicitAs, @ImplicitAs(%i32)> [concrete]
  133. // CHECK:STDOUT: %ImplicitAs.Convert.type.1b6: type = fn_type @ImplicitAs.Convert, @ImplicitAs(%i32) [concrete]
  134. // CHECK:STDOUT: %To: Core.IntLiteral = bind_symbolic_name To, 0 [symbolic]
  135. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.type.49e: type = fn_type @Core.IntLiteral.as.ImplicitAs.impl.Convert, @Core.IntLiteral.as.ImplicitAs.impl(%To) [symbolic]
  136. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.f01: %Core.IntLiteral.as.ImplicitAs.impl.Convert.type.49e = struct_value () [symbolic]
  137. // CHECK:STDOUT: %ImplicitAs.impl_witness.acc: <witness> = impl_witness imports.%ImplicitAs.impl_witness_table.b6b, @Core.IntLiteral.as.ImplicitAs.impl(%int_32) [concrete]
  138. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.type.9ec: type = fn_type @Core.IntLiteral.as.ImplicitAs.impl.Convert, @Core.IntLiteral.as.ImplicitAs.impl(%int_32) [concrete]
  139. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.592: %Core.IntLiteral.as.ImplicitAs.impl.Convert.type.9ec = struct_value () [concrete]
  140. // CHECK:STDOUT: %ImplicitAs.facet: %ImplicitAs.type.e8c = facet_value Core.IntLiteral, (%ImplicitAs.impl_witness.acc) [concrete]
  141. // CHECK:STDOUT: %.7ea: type = fn_type_with_self_type %ImplicitAs.Convert.type.1b6, %ImplicitAs.facet [concrete]
  142. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.bound.7cb: <bound method> = bound_method %int_0.5c6, %Core.IntLiteral.as.ImplicitAs.impl.Convert.592 [concrete]
  143. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.specific_fn: <specific function> = specific_function %Core.IntLiteral.as.ImplicitAs.impl.Convert.592, @Core.IntLiteral.as.ImplicitAs.impl.Convert(%int_32) [concrete]
  144. // CHECK:STDOUT: %bound_method.698: <bound method> = bound_method %int_0.5c6, %Core.IntLiteral.as.ImplicitAs.impl.Convert.specific_fn [concrete]
  145. // CHECK:STDOUT: %int_0.6a9: %i32 = int_value 0 [concrete]
  146. // CHECK:STDOUT: %Main.type: type = fn_type @Main [concrete]
  147. // CHECK:STDOUT: %Main: %Main.type = struct_value () [concrete]
  148. // CHECK:STDOUT: %int_1.5b8: Core.IntLiteral = int_value 1 [concrete]
  149. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.bound.a02: <bound method> = bound_method %int_1.5b8, %Core.IntLiteral.as.ImplicitAs.impl.Convert.592 [concrete]
  150. // CHECK:STDOUT: %bound_method.b59: <bound method> = bound_method %int_1.5b8, %Core.IntLiteral.as.ImplicitAs.impl.Convert.specific_fn [concrete]
  151. // CHECK:STDOUT: %int_1.5d2: %i32 = int_value 1 [concrete]
  152. // CHECK:STDOUT: %Destroy.type: type = facet_type <@Destroy> [concrete]
  153. // CHECK:STDOUT: %Int.as.Destroy.impl.Op.type.11b: type = fn_type @Int.as.Destroy.impl.Op, @Int.as.Destroy.impl(%int_32) [concrete]
  154. // CHECK:STDOUT: %Int.as.Destroy.impl.Op.054: %Int.as.Destroy.impl.Op.type.11b = struct_value () [concrete]
  155. // CHECK:STDOUT: %ptr.235: type = ptr_type %i32 [concrete]
  156. // CHECK:STDOUT: %Int.as.Destroy.impl.Op.specific_fn: <specific function> = specific_function %Int.as.Destroy.impl.Op.054, @Int.as.Destroy.impl.Op(%int_32) [concrete]
  157. // CHECK:STDOUT: }
  158. // CHECK:STDOUT:
  159. // CHECK:STDOUT: imports {
  160. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  161. // CHECK:STDOUT: .Int = %Core.Int
  162. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  163. // CHECK:STDOUT: .Destroy = %Core.Destroy
  164. // CHECK:STDOUT: import Core//prelude
  165. // CHECK:STDOUT: import Core//prelude/...
  166. // CHECK:STDOUT: }
  167. // CHECK:STDOUT: %Core.Int: %Int.type = import_ref Core//prelude/parts/int, Int, loaded [concrete = constants.%Int.generic]
  168. // CHECK:STDOUT: %Core.ImplicitAs: %ImplicitAs.type.cc7 = import_ref Core//prelude/parts/as, ImplicitAs, loaded [concrete = constants.%ImplicitAs.generic]
  169. // CHECK:STDOUT: %Core.import_ref.428: @Core.IntLiteral.as.ImplicitAs.impl.%Core.IntLiteral.as.ImplicitAs.impl.Convert.type (%Core.IntLiteral.as.ImplicitAs.impl.Convert.type.49e) = 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.f01)]
  170. // CHECK:STDOUT: %ImplicitAs.impl_witness_table.b6b = impl_witness_table (%Core.import_ref.428), @Core.IntLiteral.as.ImplicitAs.impl [concrete]
  171. // CHECK:STDOUT: %Core.Destroy: type = import_ref Core//prelude/parts/destroy, Destroy, loaded [concrete = constants.%Destroy.type]
  172. // CHECK:STDOUT: }
  173. // CHECK:STDOUT:
  174. // CHECK:STDOUT: file {
  175. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  176. // CHECK:STDOUT: .Core = imports.%Core
  177. // CHECK:STDOUT: .x = %x
  178. // CHECK:STDOUT: .Main = %Main.decl
  179. // CHECK:STDOUT: }
  180. // CHECK:STDOUT: %Core.import = import Core
  181. // CHECK:STDOUT: name_binding_decl {
  182. // CHECK:STDOUT: %x.patt: %pattern_type.7ce = binding_pattern x [concrete]
  183. // CHECK:STDOUT: %x.var_patt: %pattern_type.7ce = var_pattern %x.patt [concrete]
  184. // CHECK:STDOUT: }
  185. // CHECK:STDOUT: %x.var: ref %i32 = var %x.var_patt [concrete]
  186. // CHECK:STDOUT: %.loc4: type = splice_block %i32 [concrete = constants.%i32] {
  187. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  188. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  189. // CHECK:STDOUT: }
  190. // CHECK:STDOUT: %x: ref %i32 = bind_name x, %x.var [concrete = %x.var]
  191. // CHECK:STDOUT: %Main.decl: %Main.type = fn_decl @Main [concrete = constants.%Main] {} {}
  192. // CHECK:STDOUT: }
  193. // CHECK:STDOUT:
  194. // CHECK:STDOUT: fn @Main() {
  195. // CHECK:STDOUT: !entry:
  196. // CHECK:STDOUT: name_binding_decl {
  197. // CHECK:STDOUT: %x.patt: %pattern_type.7ce = binding_pattern x [concrete]
  198. // CHECK:STDOUT: %x.var_patt: %pattern_type.7ce = var_pattern %x.patt [concrete]
  199. // CHECK:STDOUT: }
  200. // CHECK:STDOUT: %x.var: ref %i32 = var %x.var_patt
  201. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [concrete = constants.%int_1.5b8]
  202. // CHECK:STDOUT: %impl.elem0: %.7ea = impl_witness_access constants.%ImplicitAs.impl_witness.acc, element0 [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.592]
  203. // CHECK:STDOUT: %bound_method.loc7_3.1: <bound method> = bound_method %int_1, %impl.elem0 [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.bound.a02]
  204. // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %impl.elem0, @Core.IntLiteral.as.ImplicitAs.impl.Convert(constants.%int_32) [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.specific_fn]
  205. // CHECK:STDOUT: %bound_method.loc7_3.2: <bound method> = bound_method %int_1, %specific_fn [concrete = constants.%bound_method.b59]
  206. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.call: init %i32 = call %bound_method.loc7_3.2(%int_1) [concrete = constants.%int_1.5d2]
  207. // CHECK:STDOUT: %.loc7_3: init %i32 = converted %int_1, %Core.IntLiteral.as.ImplicitAs.impl.Convert.call [concrete = constants.%int_1.5d2]
  208. // CHECK:STDOUT: assign %x.var, %.loc7_3
  209. // CHECK:STDOUT: %.loc7_10: type = splice_block %i32.loc7 [concrete = constants.%i32] {
  210. // CHECK:STDOUT: %int_32.loc7: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  211. // CHECK:STDOUT: %i32.loc7: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  212. // CHECK:STDOUT: }
  213. // CHECK:STDOUT: %x: ref %i32 = bind_name x, %x.var
  214. // CHECK:STDOUT: name_binding_decl {
  215. // CHECK:STDOUT: %y.patt: %pattern_type.7ce = binding_pattern y [concrete]
  216. // CHECK:STDOUT: %y.var_patt: %pattern_type.7ce = var_pattern %y.patt [concrete]
  217. // CHECK:STDOUT: }
  218. // CHECK:STDOUT: %y.var: ref %i32 = var %y.var_patt
  219. // CHECK:STDOUT: %package.ref: <namespace> = name_ref package, package [concrete = package]
  220. // CHECK:STDOUT: %x.ref: ref %i32 = name_ref x, file.%x [concrete = file.%x.var]
  221. // CHECK:STDOUT: %.loc9_23: %i32 = bind_value %x.ref
  222. // CHECK:STDOUT: assign %y.var, %.loc9_23
  223. // CHECK:STDOUT: %.loc9_10: type = splice_block %i32.loc9 [concrete = constants.%i32] {
  224. // CHECK:STDOUT: %int_32.loc9: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  225. // CHECK:STDOUT: %i32.loc9: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  226. // CHECK:STDOUT: }
  227. // CHECK:STDOUT: %y: ref %i32 = bind_name y, %y.var
  228. // CHECK:STDOUT: %Int.as.Destroy.impl.Op.bound.loc9: <bound method> = bound_method %y.var, constants.%Int.as.Destroy.impl.Op.054
  229. // CHECK:STDOUT: %Int.as.Destroy.impl.Op.specific_fn.1: <specific function> = specific_function constants.%Int.as.Destroy.impl.Op.054, @Int.as.Destroy.impl.Op(constants.%int_32) [concrete = constants.%Int.as.Destroy.impl.Op.specific_fn]
  230. // CHECK:STDOUT: %bound_method.loc9: <bound method> = bound_method %y.var, %Int.as.Destroy.impl.Op.specific_fn.1
  231. // CHECK:STDOUT: %addr.loc9: %ptr.235 = addr_of %y.var
  232. // CHECK:STDOUT: %Int.as.Destroy.impl.Op.call.loc9: init %empty_tuple.type = call %bound_method.loc9(%addr.loc9)
  233. // CHECK:STDOUT: %Int.as.Destroy.impl.Op.bound.loc7: <bound method> = bound_method %x.var, constants.%Int.as.Destroy.impl.Op.054
  234. // CHECK:STDOUT: %Int.as.Destroy.impl.Op.specific_fn.2: <specific function> = specific_function constants.%Int.as.Destroy.impl.Op.054, @Int.as.Destroy.impl.Op(constants.%int_32) [concrete = constants.%Int.as.Destroy.impl.Op.specific_fn]
  235. // CHECK:STDOUT: %bound_method.loc7_3.3: <bound method> = bound_method %x.var, %Int.as.Destroy.impl.Op.specific_fn.2
  236. // CHECK:STDOUT: %addr.loc7: %ptr.235 = addr_of %x.var
  237. // CHECK:STDOUT: %Int.as.Destroy.impl.Op.call.loc7: init %empty_tuple.type = call %bound_method.loc7_3.3(%addr.loc7)
  238. // CHECK:STDOUT: return
  239. // CHECK:STDOUT: }
  240. // CHECK:STDOUT:
  241. // CHECK:STDOUT: fn @__global_init() {
  242. // CHECK:STDOUT: !entry:
  243. // CHECK:STDOUT: %int_0: Core.IntLiteral = int_value 0 [concrete = constants.%int_0.5c6]
  244. // CHECK:STDOUT: %impl.elem0: %.7ea = impl_witness_access constants.%ImplicitAs.impl_witness.acc, element0 [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.592]
  245. // CHECK:STDOUT: %bound_method.loc4_1.1: <bound method> = bound_method %int_0, %impl.elem0 [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.bound.7cb]
  246. // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %impl.elem0, @Core.IntLiteral.as.ImplicitAs.impl.Convert(constants.%int_32) [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.specific_fn]
  247. // CHECK:STDOUT: %bound_method.loc4_1.2: <bound method> = bound_method %int_0, %specific_fn [concrete = constants.%bound_method.698]
  248. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.call: init %i32 = call %bound_method.loc4_1.2(%int_0) [concrete = constants.%int_0.6a9]
  249. // CHECK:STDOUT: %.loc4: init %i32 = converted %int_0, %Core.IntLiteral.as.ImplicitAs.impl.Convert.call [concrete = constants.%int_0.6a9]
  250. // CHECK:STDOUT: assign file.%x.var, %.loc4
  251. // CHECK:STDOUT: return
  252. // CHECK:STDOUT: }
  253. // CHECK:STDOUT:
  254. // CHECK:STDOUT: --- namespace.carbon
  255. // CHECK:STDOUT:
  256. // CHECK:STDOUT: constants {
  257. // CHECK:STDOUT: %C: type = class_type @C [concrete]
  258. // CHECK:STDOUT: %C.Foo.type: type = fn_type @C.Foo [concrete]
  259. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  260. // CHECK:STDOUT: %C.Foo: %C.Foo.type = struct_value () [concrete]
  261. // CHECK:STDOUT: %Destroy.type: type = facet_type <@Destroy> [concrete]
  262. // CHECK:STDOUT: %pattern_type.f6d: type = pattern_type auto [concrete]
  263. // CHECK:STDOUT: %Destroy.impl_witness: <witness> = impl_witness @C.%Destroy.impl_witness_table [concrete]
  264. // CHECK:STDOUT: %ptr.691: type = ptr_type %C [concrete]
  265. // CHECK:STDOUT: %pattern_type.c45: type = pattern_type %ptr.691 [concrete]
  266. // CHECK:STDOUT: %C.as.Destroy.impl.Op.type: type = fn_type @C.as.Destroy.impl.Op [concrete]
  267. // CHECK:STDOUT: %C.as.Destroy.impl.Op: %C.as.Destroy.impl.Op.type = struct_value () [concrete]
  268. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  269. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete]
  270. // CHECK:STDOUT: %Main.type: type = fn_type @Main [concrete]
  271. // CHECK:STDOUT: %Main: %Main.type = struct_value () [concrete]
  272. // CHECK:STDOUT: }
  273. // CHECK:STDOUT:
  274. // CHECK:STDOUT: imports {
  275. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  276. // CHECK:STDOUT: .Destroy = %Core.Destroy
  277. // CHECK:STDOUT: import Core//prelude
  278. // CHECK:STDOUT: import Core//prelude/...
  279. // CHECK:STDOUT: }
  280. // CHECK:STDOUT: %Core.Destroy: type = import_ref Core//prelude/parts/destroy, Destroy, loaded [concrete = constants.%Destroy.type]
  281. // CHECK:STDOUT: }
  282. // CHECK:STDOUT:
  283. // CHECK:STDOUT: file {
  284. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  285. // CHECK:STDOUT: .Core = imports.%Core
  286. // CHECK:STDOUT: .NS = %NS
  287. // CHECK:STDOUT: .Main = %Main.decl
  288. // CHECK:STDOUT: }
  289. // CHECK:STDOUT: %Core.import = import Core
  290. // CHECK:STDOUT: %NS: <namespace> = namespace [concrete] {
  291. // CHECK:STDOUT: .C = %C.decl
  292. // CHECK:STDOUT: }
  293. // CHECK:STDOUT: %C.decl: type = class_decl @C [concrete = constants.%C] {} {}
  294. // CHECK:STDOUT: %Main.decl: %Main.type = fn_decl @Main [concrete = constants.%Main] {} {}
  295. // CHECK:STDOUT: }
  296. // CHECK:STDOUT:
  297. // CHECK:STDOUT: impl @C.as.Destroy.impl: @C.%Self.ref as constants.%Destroy.type {
  298. // CHECK:STDOUT: %C.as.Destroy.impl.Op.decl: %C.as.Destroy.impl.Op.type = fn_decl @C.as.Destroy.impl.Op [concrete = constants.%C.as.Destroy.impl.Op] {
  299. // CHECK:STDOUT: %self.patt: %pattern_type.c45 = binding_pattern self [concrete]
  300. // CHECK:STDOUT: %self.param_patt: %pattern_type.c45 = value_param_pattern %self.patt, call_param0 [concrete]
  301. // CHECK:STDOUT: %.loc6: %pattern_type.f6d = addr_pattern %self.param_patt [concrete]
  302. // CHECK:STDOUT: } {
  303. // CHECK:STDOUT: %self.param: %ptr.691 = value_param call_param0
  304. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%C [concrete = constants.%C]
  305. // CHECK:STDOUT: %self: %ptr.691 = bind_name self, %self.param
  306. // CHECK:STDOUT: }
  307. // CHECK:STDOUT:
  308. // CHECK:STDOUT: !members:
  309. // CHECK:STDOUT: .Op = %C.as.Destroy.impl.Op.decl
  310. // CHECK:STDOUT: witness = @C.%Destroy.impl_witness
  311. // CHECK:STDOUT: }
  312. // CHECK:STDOUT:
  313. // CHECK:STDOUT: class @C {
  314. // CHECK:STDOUT: %C.Foo.decl: %C.Foo.type = fn_decl @C.Foo [concrete = constants.%C.Foo] {} {}
  315. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%C [concrete = constants.%C]
  316. // CHECK:STDOUT: impl_decl @C.as.Destroy.impl [concrete] {} {}
  317. // CHECK:STDOUT: %Destroy.impl_witness_table = impl_witness_table (@C.as.Destroy.impl.%C.as.Destroy.impl.Op.decl), @C.as.Destroy.impl [concrete]
  318. // CHECK:STDOUT: %Destroy.impl_witness: <witness> = impl_witness %Destroy.impl_witness_table [concrete = constants.%Destroy.impl_witness]
  319. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness constants.%empty_struct_type [concrete = constants.%complete_type]
  320. // CHECK:STDOUT: complete_type_witness = %complete_type
  321. // CHECK:STDOUT:
  322. // CHECK:STDOUT: !members:
  323. // CHECK:STDOUT: .Self = constants.%C
  324. // CHECK:STDOUT: .Foo = %C.Foo.decl
  325. // CHECK:STDOUT: }
  326. // CHECK:STDOUT:
  327. // CHECK:STDOUT: fn @C.Foo() {
  328. // CHECK:STDOUT: !entry:
  329. // CHECK:STDOUT: return
  330. // CHECK:STDOUT: }
  331. // CHECK:STDOUT:
  332. // CHECK:STDOUT: fn @C.as.Destroy.impl.Op(%self.param: %ptr.691) = "no_op";
  333. // CHECK:STDOUT:
  334. // CHECK:STDOUT: fn @Main() {
  335. // CHECK:STDOUT: !entry:
  336. // CHECK:STDOUT: %package.ref: <namespace> = name_ref package, package [concrete = package]
  337. // CHECK:STDOUT: %NS.ref: <namespace> = name_ref NS, file.%NS [concrete = file.%NS]
  338. // CHECK:STDOUT: %C.ref: type = name_ref C, file.%C.decl [concrete = constants.%C]
  339. // CHECK:STDOUT: %Foo.ref: %C.Foo.type = name_ref Foo, @C.%C.Foo.decl [concrete = constants.%C.Foo]
  340. // CHECK:STDOUT: %C.Foo.call: init %empty_tuple.type = call %Foo.ref()
  341. // CHECK:STDOUT: return
  342. // CHECK:STDOUT: }
  343. // CHECK:STDOUT: