nested_name.carbon 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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/nested_name.carbon
  12. // TIP: To dump output, run:
  13. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/class/nested_name.carbon
  14. class Outer {
  15. class Inner {
  16. var n: i32;
  17. }
  18. }
  19. fn F(oi: Outer.Inner) -> i32 {
  20. return oi.n;
  21. }
  22. fn G(o: Outer) {
  23. var i: o.Inner;
  24. }
  25. // CHECK:STDOUT: --- nested_name.carbon
  26. // CHECK:STDOUT:
  27. // CHECK:STDOUT: constants {
  28. // CHECK:STDOUT: %Outer: type = class_type @Outer [concrete]
  29. // CHECK:STDOUT: %Inner: type = class_type @Inner [concrete]
  30. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  31. // CHECK:STDOUT: %Int.type: type = generic_class_type @Int [concrete]
  32. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  33. // CHECK:STDOUT: %Int.generic: %Int.type = struct_value () [concrete]
  34. // CHECK:STDOUT: %N: Core.IntLiteral = bind_symbolic_name N, 0 [symbolic]
  35. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  36. // CHECK:STDOUT: %Inner.elem: type = unbound_element_type %Inner, %i32 [concrete]
  37. // CHECK:STDOUT: %Destroy.type: type = facet_type <@Destroy> [concrete]
  38. // CHECK:STDOUT: %pattern_type.f6d: type = pattern_type auto [concrete]
  39. // CHECK:STDOUT: %Destroy.impl_witness.1dc: <witness> = impl_witness @Inner.%Destroy.impl_witness_table [concrete]
  40. // CHECK:STDOUT: %ptr.36a: type = ptr_type %Inner [concrete]
  41. // CHECK:STDOUT: %pattern_type.27f: type = pattern_type %ptr.36a [concrete]
  42. // CHECK:STDOUT: %Inner.as.Destroy.impl.Op.type: type = fn_type @Inner.as.Destroy.impl.Op [concrete]
  43. // CHECK:STDOUT: %Inner.as.Destroy.impl.Op: %Inner.as.Destroy.impl.Op.type = struct_value () [concrete]
  44. // CHECK:STDOUT: %struct_type.n: type = struct_type {.n: %i32} [concrete]
  45. // CHECK:STDOUT: %complete_type.54b: <witness> = complete_type_witness %struct_type.n [concrete]
  46. // CHECK:STDOUT: %Destroy.impl_witness.34a: <witness> = impl_witness @Outer.%Destroy.impl_witness_table [concrete]
  47. // CHECK:STDOUT: %ptr.5df: type = ptr_type %Outer [concrete]
  48. // CHECK:STDOUT: %pattern_type.95c: type = pattern_type %ptr.5df [concrete]
  49. // CHECK:STDOUT: %Outer.as.Destroy.impl.Op.type: type = fn_type @Outer.as.Destroy.impl.Op [concrete]
  50. // CHECK:STDOUT: %Outer.as.Destroy.impl.Op: %Outer.as.Destroy.impl.Op.type = struct_value () [concrete]
  51. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  52. // CHECK:STDOUT: %complete_type.357: <witness> = complete_type_witness %empty_struct_type [concrete]
  53. // CHECK:STDOUT: %pattern_type.906: type = pattern_type %Inner [concrete]
  54. // CHECK:STDOUT: %pattern_type.7ce: type = pattern_type %i32 [concrete]
  55. // CHECK:STDOUT: %F.type: type = fn_type @F [concrete]
  56. // CHECK:STDOUT: %F: %F.type = struct_value () [concrete]
  57. // CHECK:STDOUT: %Copy.type: type = facet_type <@Copy> [concrete]
  58. // CHECK:STDOUT: %Copy.Op.type: type = fn_type @Copy.Op [concrete]
  59. // CHECK:STDOUT: %Int.as.Copy.impl.Op.type.afd: type = fn_type @Int.as.Copy.impl.Op, @Int.as.Copy.impl(%N) [symbolic]
  60. // CHECK:STDOUT: %Int.as.Copy.impl.Op.6cd: %Int.as.Copy.impl.Op.type.afd = struct_value () [symbolic]
  61. // CHECK:STDOUT: %Copy.impl_witness.a32: <witness> = impl_witness imports.%Copy.impl_witness_table.1ed, @Int.as.Copy.impl(%int_32) [concrete]
  62. // CHECK:STDOUT: %Int.as.Copy.impl.Op.type.276: type = fn_type @Int.as.Copy.impl.Op, @Int.as.Copy.impl(%int_32) [concrete]
  63. // CHECK:STDOUT: %Int.as.Copy.impl.Op.f59: %Int.as.Copy.impl.Op.type.276 = struct_value () [concrete]
  64. // CHECK:STDOUT: %Copy.facet: %Copy.type = facet_value %i32, (%Copy.impl_witness.a32) [concrete]
  65. // CHECK:STDOUT: %.7fa: type = fn_type_with_self_type %Copy.Op.type, %Copy.facet [concrete]
  66. // CHECK:STDOUT: %Int.as.Copy.impl.Op.specific_fn: <specific function> = specific_function %Int.as.Copy.impl.Op.f59, @Int.as.Copy.impl.Op(%int_32) [concrete]
  67. // CHECK:STDOUT: %pattern_type.e74: type = pattern_type %Outer [concrete]
  68. // CHECK:STDOUT: %G.type: type = fn_type @G [concrete]
  69. // CHECK:STDOUT: %G: %G.type = struct_value () [concrete]
  70. // CHECK:STDOUT: }
  71. // CHECK:STDOUT:
  72. // CHECK:STDOUT: imports {
  73. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  74. // CHECK:STDOUT: .Int = %Core.Int
  75. // CHECK:STDOUT: .Destroy = %Core.Destroy
  76. // CHECK:STDOUT: .Copy = %Core.Copy
  77. // CHECK:STDOUT: import Core//prelude
  78. // CHECK:STDOUT: import Core//prelude/...
  79. // CHECK:STDOUT: }
  80. // CHECK:STDOUT: %Core.Int: %Int.type = import_ref Core//prelude/parts/int, Int, loaded [concrete = constants.%Int.generic]
  81. // CHECK:STDOUT: %Core.Destroy: type = import_ref Core//prelude/parts/destroy, Destroy, loaded [concrete = constants.%Destroy.type]
  82. // CHECK:STDOUT: %Core.Copy: type = import_ref Core//prelude/parts/copy, Copy, loaded [concrete = constants.%Copy.type]
  83. // CHECK:STDOUT: %Core.import_ref.d0f6: @Int.as.Copy.impl.%Int.as.Copy.impl.Op.type (%Int.as.Copy.impl.Op.type.afd) = import_ref Core//prelude/parts/int, loc17_31, loaded [symbolic = @Int.as.Copy.impl.%Int.as.Copy.impl.Op (constants.%Int.as.Copy.impl.Op.6cd)]
  84. // CHECK:STDOUT: %Copy.impl_witness_table.1ed = impl_witness_table (%Core.import_ref.d0f6), @Int.as.Copy.impl [concrete]
  85. // CHECK:STDOUT: }
  86. // CHECK:STDOUT:
  87. // CHECK:STDOUT: file {
  88. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  89. // CHECK:STDOUT: .Core = imports.%Core
  90. // CHECK:STDOUT: .Outer = %Outer.decl
  91. // CHECK:STDOUT: .F = %F.decl
  92. // CHECK:STDOUT: .G = %G.decl
  93. // CHECK:STDOUT: }
  94. // CHECK:STDOUT: %Core.import = import Core
  95. // CHECK:STDOUT: %Outer.decl: type = class_decl @Outer [concrete = constants.%Outer] {} {}
  96. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [concrete = constants.%F] {
  97. // CHECK:STDOUT: %oi.patt: %pattern_type.906 = binding_pattern oi [concrete]
  98. // CHECK:STDOUT: %oi.param_patt: %pattern_type.906 = value_param_pattern %oi.patt, call_param0 [concrete]
  99. // CHECK:STDOUT: %return.patt: %pattern_type.7ce = return_slot_pattern [concrete]
  100. // CHECK:STDOUT: %return.param_patt: %pattern_type.7ce = out_param_pattern %return.patt, call_param1 [concrete]
  101. // CHECK:STDOUT: } {
  102. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  103. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  104. // CHECK:STDOUT: %oi.param: %Inner = value_param call_param0
  105. // CHECK:STDOUT: %.loc21: type = splice_block %Inner.ref [concrete = constants.%Inner] {
  106. // CHECK:STDOUT: %Outer.ref: type = name_ref Outer, file.%Outer.decl [concrete = constants.%Outer]
  107. // CHECK:STDOUT: %Inner.ref: type = name_ref Inner, @Outer.%Inner.decl [concrete = constants.%Inner]
  108. // CHECK:STDOUT: }
  109. // CHECK:STDOUT: %oi: %Inner = bind_name oi, %oi.param
  110. // CHECK:STDOUT: %return.param: ref %i32 = out_param call_param1
  111. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  112. // CHECK:STDOUT: }
  113. // CHECK:STDOUT: %G.decl: %G.type = fn_decl @G [concrete = constants.%G] {
  114. // CHECK:STDOUT: %o.patt: %pattern_type.e74 = binding_pattern o [concrete]
  115. // CHECK:STDOUT: %o.param_patt: %pattern_type.e74 = value_param_pattern %o.patt, call_param0 [concrete]
  116. // CHECK:STDOUT: } {
  117. // CHECK:STDOUT: %o.param: %Outer = value_param call_param0
  118. // CHECK:STDOUT: %Outer.ref: type = name_ref Outer, file.%Outer.decl [concrete = constants.%Outer]
  119. // CHECK:STDOUT: %o: %Outer = bind_name o, %o.param
  120. // CHECK:STDOUT: }
  121. // CHECK:STDOUT: }
  122. // CHECK:STDOUT:
  123. // CHECK:STDOUT: impl @Inner.as.Destroy.impl: @Inner.%Self.ref as constants.%Destroy.type {
  124. // CHECK:STDOUT: %Inner.as.Destroy.impl.Op.decl: %Inner.as.Destroy.impl.Op.type = fn_decl @Inner.as.Destroy.impl.Op [concrete = constants.%Inner.as.Destroy.impl.Op] {
  125. // CHECK:STDOUT: %self.patt: %pattern_type.27f = binding_pattern self [concrete]
  126. // CHECK:STDOUT: %self.param_patt: %pattern_type.27f = value_param_pattern %self.patt, call_param0 [concrete]
  127. // CHECK:STDOUT: %.loc16: %pattern_type.f6d = addr_pattern %self.param_patt [concrete]
  128. // CHECK:STDOUT: } {
  129. // CHECK:STDOUT: %self.param: %ptr.36a = value_param call_param0
  130. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%Inner [concrete = constants.%Inner]
  131. // CHECK:STDOUT: %self: %ptr.36a = bind_name self, %self.param
  132. // CHECK:STDOUT: }
  133. // CHECK:STDOUT:
  134. // CHECK:STDOUT: !members:
  135. // CHECK:STDOUT: .Op = %Inner.as.Destroy.impl.Op.decl
  136. // CHECK:STDOUT: witness = @Inner.%Destroy.impl_witness
  137. // CHECK:STDOUT: }
  138. // CHECK:STDOUT:
  139. // CHECK:STDOUT: impl @Outer.as.Destroy.impl: @Outer.%Self.ref as constants.%Destroy.type {
  140. // CHECK:STDOUT: %Outer.as.Destroy.impl.Op.decl: %Outer.as.Destroy.impl.Op.type = fn_decl @Outer.as.Destroy.impl.Op [concrete = constants.%Outer.as.Destroy.impl.Op] {
  141. // CHECK:STDOUT: %self.patt: %pattern_type.95c = binding_pattern self [concrete]
  142. // CHECK:STDOUT: %self.param_patt: %pattern_type.95c = value_param_pattern %self.patt, call_param0 [concrete]
  143. // CHECK:STDOUT: %.loc15: %pattern_type.f6d = addr_pattern %self.param_patt [concrete]
  144. // CHECK:STDOUT: } {
  145. // CHECK:STDOUT: %self.param: %ptr.5df = value_param call_param0
  146. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%Outer [concrete = constants.%Outer]
  147. // CHECK:STDOUT: %self: %ptr.5df = bind_name self, %self.param
  148. // CHECK:STDOUT: }
  149. // CHECK:STDOUT:
  150. // CHECK:STDOUT: !members:
  151. // CHECK:STDOUT: .Op = %Outer.as.Destroy.impl.Op.decl
  152. // CHECK:STDOUT: witness = @Outer.%Destroy.impl_witness
  153. // CHECK:STDOUT: }
  154. // CHECK:STDOUT:
  155. // CHECK:STDOUT: class @Outer {
  156. // CHECK:STDOUT: %Inner.decl: type = class_decl @Inner [concrete = constants.%Inner] {} {}
  157. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%Outer [concrete = constants.%Outer]
  158. // CHECK:STDOUT: impl_decl @Outer.as.Destroy.impl [concrete] {} {}
  159. // CHECK:STDOUT: %Destroy.impl_witness_table = impl_witness_table (@Outer.as.Destroy.impl.%Outer.as.Destroy.impl.Op.decl), @Outer.as.Destroy.impl [concrete]
  160. // CHECK:STDOUT: %Destroy.impl_witness: <witness> = impl_witness %Destroy.impl_witness_table [concrete = constants.%Destroy.impl_witness.34a]
  161. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness constants.%empty_struct_type [concrete = constants.%complete_type.357]
  162. // CHECK:STDOUT: complete_type_witness = %complete_type
  163. // CHECK:STDOUT:
  164. // CHECK:STDOUT: !members:
  165. // CHECK:STDOUT: .Self = constants.%Outer
  166. // CHECK:STDOUT: .Inner = %Inner.decl
  167. // CHECK:STDOUT: }
  168. // CHECK:STDOUT:
  169. // CHECK:STDOUT: class @Inner {
  170. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  171. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  172. // CHECK:STDOUT: %.loc17: %Inner.elem = field_decl n, element0 [concrete]
  173. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%Inner [concrete = constants.%Inner]
  174. // CHECK:STDOUT: impl_decl @Inner.as.Destroy.impl [concrete] {} {}
  175. // CHECK:STDOUT: %Destroy.impl_witness_table = impl_witness_table (@Inner.as.Destroy.impl.%Inner.as.Destroy.impl.Op.decl), @Inner.as.Destroy.impl [concrete]
  176. // CHECK:STDOUT: %Destroy.impl_witness: <witness> = impl_witness %Destroy.impl_witness_table [concrete = constants.%Destroy.impl_witness.1dc]
  177. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness constants.%struct_type.n [concrete = constants.%complete_type.54b]
  178. // CHECK:STDOUT: complete_type_witness = %complete_type
  179. // CHECK:STDOUT:
  180. // CHECK:STDOUT: !members:
  181. // CHECK:STDOUT: .Self = constants.%Inner
  182. // CHECK:STDOUT: .n = %.loc17
  183. // CHECK:STDOUT: }
  184. // CHECK:STDOUT:
  185. // CHECK:STDOUT: fn @Inner.as.Destroy.impl.Op(%self.param: %ptr.36a) = "no_op";
  186. // CHECK:STDOUT:
  187. // CHECK:STDOUT: fn @Outer.as.Destroy.impl.Op(%self.param: %ptr.5df) = "no_op";
  188. // CHECK:STDOUT:
  189. // CHECK:STDOUT: fn @F(%oi.param: %Inner) -> %i32 {
  190. // CHECK:STDOUT: !entry:
  191. // CHECK:STDOUT: %oi.ref: %Inner = name_ref oi, %oi
  192. // CHECK:STDOUT: %n.ref: %Inner.elem = name_ref n, @Inner.%.loc17 [concrete = @Inner.%.loc17]
  193. // CHECK:STDOUT: %.loc22_12.1: ref %i32 = class_element_access %oi.ref, element0
  194. // CHECK:STDOUT: %.loc22_12.2: %i32 = bind_value %.loc22_12.1
  195. // CHECK:STDOUT: %impl.elem0: %.7fa = impl_witness_access constants.%Copy.impl_witness.a32, element0 [concrete = constants.%Int.as.Copy.impl.Op.f59]
  196. // CHECK:STDOUT: %bound_method.loc22_12.1: <bound method> = bound_method %.loc22_12.2, %impl.elem0
  197. // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %impl.elem0, @Int.as.Copy.impl.Op(constants.%int_32) [concrete = constants.%Int.as.Copy.impl.Op.specific_fn]
  198. // CHECK:STDOUT: %bound_method.loc22_12.2: <bound method> = bound_method %.loc22_12.2, %specific_fn
  199. // CHECK:STDOUT: %Int.as.Copy.impl.Op.call: init %i32 = call %bound_method.loc22_12.2(%.loc22_12.2)
  200. // CHECK:STDOUT: return %Int.as.Copy.impl.Op.call to %return
  201. // CHECK:STDOUT: }
  202. // CHECK:STDOUT:
  203. // CHECK:STDOUT: fn @G(%o.param: %Outer) {
  204. // CHECK:STDOUT: !entry:
  205. // CHECK:STDOUT: name_binding_decl {
  206. // CHECK:STDOUT: %i.patt: %pattern_type.906 = binding_pattern i [concrete]
  207. // CHECK:STDOUT: %i.var_patt: %pattern_type.906 = var_pattern %i.patt [concrete]
  208. // CHECK:STDOUT: }
  209. // CHECK:STDOUT: %i.var: ref %Inner = var %i.var_patt
  210. // CHECK:STDOUT: %.loc26: type = splice_block %Inner.ref [concrete = constants.%Inner] {
  211. // CHECK:STDOUT: %o.ref: %Outer = name_ref o, %o
  212. // CHECK:STDOUT: %Inner.ref: type = name_ref Inner, @Outer.%Inner.decl [concrete = constants.%Inner]
  213. // CHECK:STDOUT: }
  214. // CHECK:STDOUT: %i: ref %Inner = bind_name i, %i.var
  215. // CHECK:STDOUT: %Inner.as.Destroy.impl.Op.bound: <bound method> = bound_method %i.var, constants.%Inner.as.Destroy.impl.Op
  216. // CHECK:STDOUT: %addr: %ptr.36a = addr_of %i.var
  217. // CHECK:STDOUT: %Inner.as.Destroy.impl.Op.call: init %empty_tuple.type = call %Inner.as.Destroy.impl.Op.bound(%addr)
  218. // CHECK:STDOUT: return
  219. // CHECK:STDOUT: }
  220. // CHECK:STDOUT: