literal_member_access.carbon 5.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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/struct/literal_member_access.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/struct/literal_member_access.carbon
  10. fn G() -> {.x: i32, .y: i32, .z: i32};
  11. fn F() -> i32 {
  12. return {.a = 1, .b = G(), .c = 3}.b.y;
  13. }
  14. // CHECK:STDOUT: --- literal_member_access.carbon
  15. // CHECK:STDOUT:
  16. // CHECK:STDOUT: constants {
  17. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template]
  18. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [template]
  19. // CHECK:STDOUT: %struct_type.x.y.z: type = struct_type {.x: %i32, .y: %i32, .z: %i32} [template]
  20. // CHECK:STDOUT: %G.type: type = fn_type @G [template]
  21. // CHECK:STDOUT: %G: %G.type = struct_value () [template]
  22. // CHECK:STDOUT: %F.type: type = fn_type @F [template]
  23. // CHECK:STDOUT: %F: %F.type = struct_value () [template]
  24. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [template]
  25. // CHECK:STDOUT: %int_3: Core.IntLiteral = int_value 3 [template]
  26. // CHECK:STDOUT: %struct_type.a.b.c.4ca: type = struct_type {.a: Core.IntLiteral, .b: %struct_type.x.y.z, .c: Core.IntLiteral} [template]
  27. // CHECK:STDOUT: }
  28. // CHECK:STDOUT:
  29. // CHECK:STDOUT: imports {
  30. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  31. // CHECK:STDOUT: .Int = %Core.Int
  32. // CHECK:STDOUT: import Core//prelude
  33. // CHECK:STDOUT: import Core//prelude/...
  34. // CHECK:STDOUT: }
  35. // CHECK:STDOUT: }
  36. // CHECK:STDOUT:
  37. // CHECK:STDOUT: file {
  38. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  39. // CHECK:STDOUT: .Core = imports.%Core
  40. // CHECK:STDOUT: .G = %G.decl
  41. // CHECK:STDOUT: .F = %F.decl
  42. // CHECK:STDOUT: }
  43. // CHECK:STDOUT: %Core.import = import Core
  44. // CHECK:STDOUT: %G.decl: %G.type = fn_decl @G [template = constants.%G] {
  45. // CHECK:STDOUT: %return.patt: %struct_type.x.y.z = return_slot_pattern
  46. // CHECK:STDOUT: %return.param_patt: %struct_type.x.y.z = out_param_pattern %return.patt, runtime_param0
  47. // CHECK:STDOUT: } {
  48. // CHECK:STDOUT: %int_32.loc11_16: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  49. // CHECK:STDOUT: %i32.loc11_16: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  50. // CHECK:STDOUT: %int_32.loc11_25: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  51. // CHECK:STDOUT: %i32.loc11_25: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  52. // CHECK:STDOUT: %int_32.loc11_34: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  53. // CHECK:STDOUT: %i32.loc11_34: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  54. // CHECK:STDOUT: %struct_type.x.y.z: type = struct_type {.x: %i32, .y: %i32, .z: %i32} [template = constants.%struct_type.x.y.z]
  55. // CHECK:STDOUT: %return.param: ref %struct_type.x.y.z = out_param runtime_param0
  56. // CHECK:STDOUT: %return: ref %struct_type.x.y.z = return_slot %return.param
  57. // CHECK:STDOUT: }
  58. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {
  59. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  60. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param0
  61. // CHECK:STDOUT: } {
  62. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  63. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  64. // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param0
  65. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  66. // CHECK:STDOUT: }
  67. // CHECK:STDOUT: }
  68. // CHECK:STDOUT:
  69. // CHECK:STDOUT: fn @G() -> %struct_type.x.y.z;
  70. // CHECK:STDOUT:
  71. // CHECK:STDOUT: fn @F() -> %i32 {
  72. // CHECK:STDOUT: !entry:
  73. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [template = constants.%int_1]
  74. // CHECK:STDOUT: %G.ref: %G.type = name_ref G, file.%G.decl [template = constants.%G]
  75. // CHECK:STDOUT: %.loc14_26.1: ref %struct_type.x.y.z = temporary_storage
  76. // CHECK:STDOUT: %G.call: init %struct_type.x.y.z = call %G.ref() to %.loc14_26.1
  77. // CHECK:STDOUT: %int_3: Core.IntLiteral = int_value 3 [template = constants.%int_3]
  78. // CHECK:STDOUT: %.loc14_35.1: %struct_type.a.b.c.4ca = struct_literal (%int_1, %G.call, %int_3)
  79. // CHECK:STDOUT: %.loc14_26.2: ref %struct_type.x.y.z = temporary %.loc14_26.1, %G.call
  80. // CHECK:STDOUT: %.loc14_26.3: ref %i32 = struct_access %.loc14_26.2, element0
  81. // CHECK:STDOUT: %.loc14_26.4: %i32 = bind_value %.loc14_26.3
  82. // CHECK:STDOUT: %.loc14_26.5: ref %i32 = struct_access %.loc14_26.2, element1
  83. // CHECK:STDOUT: %.loc14_26.6: %i32 = bind_value %.loc14_26.5
  84. // CHECK:STDOUT: %.loc14_26.7: ref %i32 = struct_access %.loc14_26.2, element2
  85. // CHECK:STDOUT: %.loc14_26.8: %i32 = bind_value %.loc14_26.7
  86. // CHECK:STDOUT: %struct.loc14_26: %struct_type.x.y.z = struct_value (%.loc14_26.4, %.loc14_26.6, %.loc14_26.8)
  87. // CHECK:STDOUT: %.loc14_35.2: %struct_type.x.y.z = converted %G.call, %struct.loc14_26
  88. // CHECK:STDOUT: %struct.loc14_35: %struct_type.a.b.c.4ca = struct_value (%int_1, %.loc14_35.2, %int_3)
  89. // CHECK:STDOUT: %.loc14_35.3: %struct_type.a.b.c.4ca = converted %.loc14_35.1, %struct.loc14_35
  90. // CHECK:STDOUT: %.loc14_36: %struct_type.x.y.z = struct_access %.loc14_35.3, element1
  91. // CHECK:STDOUT: %.loc14_38: %i32 = struct_access %.loc14_36, element1
  92. // CHECK:STDOUT: return %.loc14_38
  93. // CHECK:STDOUT: }
  94. // CHECK:STDOUT: