literal_member_access.carbon 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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/struct/literal_member_access.carbon
  12. // TIP: To dump output, run:
  13. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/struct/literal_member_access.carbon
  14. fn G() -> {.x: i32, .y: i32, .z: i32};
  15. fn F() -> i32 {
  16. return {.a = 1, .b = G(), .c = 3}.b.y;
  17. }
  18. // CHECK:STDOUT: --- literal_member_access.carbon
  19. // CHECK:STDOUT:
  20. // CHECK:STDOUT: constants {
  21. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  22. // CHECK:STDOUT: %Int.type: type = generic_class_type @Int [concrete]
  23. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  24. // CHECK:STDOUT: %Int.generic: %Int.type = struct_value () [concrete]
  25. // CHECK:STDOUT: %N: Core.IntLiteral = symbolic_binding N, 0 [symbolic]
  26. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  27. // CHECK:STDOUT: %struct_type.x.y.z: type = struct_type {.x: %i32, .y: %i32, .z: %i32} [concrete]
  28. // CHECK:STDOUT: %.a42: form = init_form %struct_type.x.y.z, call_param0 [concrete]
  29. // CHECK:STDOUT: %pattern_type.c6b: type = pattern_type %struct_type.x.y.z [concrete]
  30. // CHECK:STDOUT: %G.type: type = fn_type @G [concrete]
  31. // CHECK:STDOUT: %G: %G.type = struct_value () [concrete]
  32. // CHECK:STDOUT: %.941: form = init_form %i32, call_param0 [concrete]
  33. // CHECK:STDOUT: %pattern_type.7ce: type = pattern_type %i32 [concrete]
  34. // CHECK:STDOUT: %F.type: type = fn_type @F [concrete]
  35. // CHECK:STDOUT: %F: %F.type = struct_value () [concrete]
  36. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [concrete]
  37. // CHECK:STDOUT: %int_3: Core.IntLiteral = int_value 3 [concrete]
  38. // CHECK:STDOUT: %struct_type.a.b.c.4ca: type = struct_type {.a: Core.IntLiteral, .b: %struct_type.x.y.z, .c: Core.IntLiteral} [concrete]
  39. // CHECK:STDOUT: %Copy.type: type = facet_type <@Copy> [concrete]
  40. // CHECK:STDOUT: %Copy.Op.type: type = fn_type @Copy.Op [concrete]
  41. // CHECK:STDOUT: %Int.as.Copy.impl.Op.type.824: type = fn_type @Int.as.Copy.impl.Op, @Int.as.Copy.impl(%N) [symbolic]
  42. // CHECK:STDOUT: %Int.as.Copy.impl.Op.9b9: %Int.as.Copy.impl.Op.type.824 = struct_value () [symbolic]
  43. // CHECK:STDOUT: %Copy.impl_witness.f17: <witness> = impl_witness imports.%Copy.impl_witness_table.e76, @Int.as.Copy.impl(%int_32) [concrete]
  44. // CHECK:STDOUT: %Int.as.Copy.impl.Op.type.546: type = fn_type @Int.as.Copy.impl.Op, @Int.as.Copy.impl(%int_32) [concrete]
  45. // CHECK:STDOUT: %Int.as.Copy.impl.Op.664: %Int.as.Copy.impl.Op.type.546 = struct_value () [concrete]
  46. // CHECK:STDOUT: %Copy.facet: %Copy.type = facet_value %i32, (%Copy.impl_witness.f17) [concrete]
  47. // CHECK:STDOUT: %.f79: type = fn_type_with_self_type %Copy.Op.type, %Copy.facet [concrete]
  48. // CHECK:STDOUT: %Int.as.Copy.impl.Op.specific_fn: <specific function> = specific_function %Int.as.Copy.impl.Op.664, @Int.as.Copy.impl.Op(%int_32) [concrete]
  49. // CHECK:STDOUT: %Destroy.type: type = facet_type <@Destroy> [concrete]
  50. // CHECK:STDOUT: %DestroyOp.type: type = fn_type @DestroyOp [concrete]
  51. // CHECK:STDOUT: %DestroyOp: %DestroyOp.type = struct_value () [concrete]
  52. // CHECK:STDOUT: }
  53. // CHECK:STDOUT:
  54. // CHECK:STDOUT: imports {
  55. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  56. // CHECK:STDOUT: .Int = %Core.Int
  57. // CHECK:STDOUT: .Copy = %Core.Copy
  58. // CHECK:STDOUT: .Destroy = %Core.Destroy
  59. // CHECK:STDOUT: import Core//prelude
  60. // CHECK:STDOUT: import Core//prelude/...
  61. // CHECK:STDOUT: }
  62. // CHECK:STDOUT: %Core.Int: %Int.type = import_ref Core//prelude/parts/int, Int, loaded [concrete = constants.%Int.generic]
  63. // CHECK:STDOUT: %Core.Copy: type = import_ref Core//prelude/parts/copy, Copy, loaded [concrete = constants.%Copy.type]
  64. // CHECK:STDOUT: %Core.import_ref.18d: @Int.as.Copy.impl.%Int.as.Copy.impl.Op.type (%Int.as.Copy.impl.Op.type.824) = import_ref Core//prelude/parts/int, loc{{\d+_\d+}}, loaded [symbolic = @Int.as.Copy.impl.%Int.as.Copy.impl.Op (constants.%Int.as.Copy.impl.Op.9b9)]
  65. // CHECK:STDOUT: %Copy.impl_witness_table.e76 = impl_witness_table (%Core.import_ref.18d), @Int.as.Copy.impl [concrete]
  66. // CHECK:STDOUT: %Core.Destroy: type = import_ref Core//prelude/parts/destroy, Destroy, loaded [concrete = constants.%Destroy.type]
  67. // CHECK:STDOUT: }
  68. // CHECK:STDOUT:
  69. // CHECK:STDOUT: file {
  70. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  71. // CHECK:STDOUT: .Core = imports.%Core
  72. // CHECK:STDOUT: .G = %G.decl
  73. // CHECK:STDOUT: .F = %F.decl
  74. // CHECK:STDOUT: }
  75. // CHECK:STDOUT: %Core.import = import Core
  76. // CHECK:STDOUT: %G.decl: %G.type = fn_decl @G [concrete = constants.%G] {
  77. // CHECK:STDOUT: %return.patt: %pattern_type.c6b = return_slot_pattern [concrete]
  78. // CHECK:STDOUT: %return.param_patt: %pattern_type.c6b = out_param_pattern %return.patt, call_param0 [concrete]
  79. // CHECK:STDOUT: } {
  80. // CHECK:STDOUT: %int_32.loc15_16: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  81. // CHECK:STDOUT: %i32.loc15_16: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  82. // CHECK:STDOUT: %int_32.loc15_25: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  83. // CHECK:STDOUT: %i32.loc15_25: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  84. // CHECK:STDOUT: %int_32.loc15_34: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  85. // CHECK:STDOUT: %i32.loc15_34: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  86. // CHECK:STDOUT: %struct_type.x.y.z: type = struct_type {.x: %i32, .y: %i32, .z: %i32} [concrete = constants.%struct_type.x.y.z]
  87. // CHECK:STDOUT: %.loc15: form = init_form %struct_type.x.y.z, call_param0 [concrete = constants.%.a42]
  88. // CHECK:STDOUT: %return.param: ref %struct_type.x.y.z = out_param call_param0
  89. // CHECK:STDOUT: %return: ref %struct_type.x.y.z = return_slot %return.param
  90. // CHECK:STDOUT: }
  91. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [concrete = constants.%F] {
  92. // CHECK:STDOUT: %return.patt: %pattern_type.7ce = return_slot_pattern [concrete]
  93. // CHECK:STDOUT: %return.param_patt: %pattern_type.7ce = out_param_pattern %return.patt, call_param0 [concrete]
  94. // CHECK:STDOUT: } {
  95. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  96. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  97. // CHECK:STDOUT: %.loc17: form = init_form %i32, call_param0 [concrete = constants.%.941]
  98. // CHECK:STDOUT: %return.param: ref %i32 = out_param call_param0
  99. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  100. // CHECK:STDOUT: }
  101. // CHECK:STDOUT: }
  102. // CHECK:STDOUT:
  103. // CHECK:STDOUT: fn @G() -> %return.param: %struct_type.x.y.z;
  104. // CHECK:STDOUT:
  105. // CHECK:STDOUT: fn @F() -> %i32 {
  106. // CHECK:STDOUT: !entry:
  107. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [concrete = constants.%int_1]
  108. // CHECK:STDOUT: %G.ref: %G.type = name_ref G, file.%G.decl [concrete = constants.%G]
  109. // CHECK:STDOUT: %.loc18_26.1: ref %struct_type.x.y.z = temporary_storage
  110. // CHECK:STDOUT: %G.call: init %struct_type.x.y.z = call %G.ref() to %.loc18_26.1
  111. // CHECK:STDOUT: %int_3: Core.IntLiteral = int_value 3 [concrete = constants.%int_3]
  112. // CHECK:STDOUT: %.loc18_35.1: %struct_type.a.b.c.4ca = struct_literal (%int_1, %G.call, %int_3)
  113. // CHECK:STDOUT: %.loc18_26.2: ref %struct_type.x.y.z = temporary %.loc18_26.1, %G.call
  114. // CHECK:STDOUT: %.loc18_26.3: ref %i32 = struct_access %.loc18_26.2, element0
  115. // CHECK:STDOUT: %.loc18_26.4: %i32 = acquire_value %.loc18_26.3
  116. // CHECK:STDOUT: %.loc18_26.5: ref %i32 = struct_access %.loc18_26.2, element1
  117. // CHECK:STDOUT: %.loc18_26.6: %i32 = acquire_value %.loc18_26.5
  118. // CHECK:STDOUT: %.loc18_26.7: ref %i32 = struct_access %.loc18_26.2, element2
  119. // CHECK:STDOUT: %.loc18_26.8: %i32 = acquire_value %.loc18_26.7
  120. // CHECK:STDOUT: %struct.loc18_26: %struct_type.x.y.z = struct_value (%.loc18_26.4, %.loc18_26.6, %.loc18_26.8)
  121. // CHECK:STDOUT: %.loc18_35.2: %struct_type.x.y.z = converted %G.call, %struct.loc18_26
  122. // CHECK:STDOUT: %struct.loc18_35: %struct_type.a.b.c.4ca = struct_value (%int_1, %.loc18_35.2, %int_3)
  123. // CHECK:STDOUT: %.loc18_35.3: %struct_type.a.b.c.4ca = converted %.loc18_35.1, %struct.loc18_35
  124. // CHECK:STDOUT: %.loc18_36: %struct_type.x.y.z = struct_access %.loc18_35.3, element1
  125. // CHECK:STDOUT: %.loc18_38: %i32 = struct_access %.loc18_36, element1
  126. // CHECK:STDOUT: %impl.elem0: %.f79 = impl_witness_access constants.%Copy.impl_witness.f17, element0 [concrete = constants.%Int.as.Copy.impl.Op.664]
  127. // CHECK:STDOUT: %bound_method.loc18_38.1: <bound method> = bound_method %.loc18_38, %impl.elem0
  128. // 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]
  129. // CHECK:STDOUT: %bound_method.loc18_38.2: <bound method> = bound_method %.loc18_38, %specific_fn
  130. // CHECK:STDOUT: %Int.as.Copy.impl.Op.call: init %i32 = call %bound_method.loc18_38.2(%.loc18_38)
  131. // CHECK:STDOUT: %DestroyOp.bound: <bound method> = bound_method %.loc18_26.2, constants.%DestroyOp
  132. // CHECK:STDOUT: %DestroyOp.call: init %empty_tuple.type = call %DestroyOp.bound(%.loc18_26.2)
  133. // CHECK:STDOUT: return %Int.as.Copy.impl.Op.call to %return.param
  134. // CHECK:STDOUT: }
  135. // CHECK:STDOUT:
  136. // CHECK:STDOUT: fn @DestroyOp(%self.param: %struct_type.x.y.z) = "no_op";
  137. // CHECK:STDOUT: