two_elements.carbon 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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/tuple/two_elements.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/tuple/two_elements.carbon
  10. let v: (i32, i32) = (4, 102);
  11. let w: (i32, i32) = v;
  12. var x: (i32, i32) = (4, 102);
  13. var y: (i32, i32) = x;
  14. // CHECK:STDOUT: --- two_elements.carbon
  15. // CHECK:STDOUT:
  16. // CHECK:STDOUT: constants {
  17. // CHECK:STDOUT: %Int32.type: type = fn_type @Int32 [template]
  18. // CHECK:STDOUT: %.1: type = tuple_type () [template]
  19. // CHECK:STDOUT: %Int32: %Int32.type = struct_value () [template]
  20. // CHECK:STDOUT: %.2: type = tuple_type (type, type) [template]
  21. // CHECK:STDOUT: %.3: type = tuple_type (i32, i32) [template]
  22. // CHECK:STDOUT: %.4: type = ptr_type %.3 [template]
  23. // CHECK:STDOUT: %.5: i32 = int_literal 4 [template]
  24. // CHECK:STDOUT: %.6: i32 = int_literal 102 [template]
  25. // CHECK:STDOUT: %tuple: %.3 = tuple_value (%.5, %.6) [template]
  26. // CHECK:STDOUT: }
  27. // CHECK:STDOUT:
  28. // CHECK:STDOUT: imports {
  29. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  30. // CHECK:STDOUT: .Int32 = %import_ref
  31. // CHECK:STDOUT: import Core//prelude
  32. // CHECK:STDOUT: import Core//prelude/operators
  33. // CHECK:STDOUT: import Core//prelude/types
  34. // CHECK:STDOUT: import Core//prelude/operators/arithmetic
  35. // CHECK:STDOUT: import Core//prelude/operators/as
  36. // CHECK:STDOUT: import Core//prelude/operators/bitwise
  37. // CHECK:STDOUT: import Core//prelude/operators/comparison
  38. // CHECK:STDOUT: import Core//prelude/types/bool
  39. // CHECK:STDOUT: }
  40. // CHECK:STDOUT: %import_ref: %Int32.type = import_ref Core//prelude/types, inst+9, loaded [template = constants.%Int32]
  41. // CHECK:STDOUT: }
  42. // CHECK:STDOUT:
  43. // CHECK:STDOUT: file {
  44. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  45. // CHECK:STDOUT: .Core = imports.%Core
  46. // CHECK:STDOUT: .v = @__global_init.%v
  47. // CHECK:STDOUT: .w = @__global_init.%w
  48. // CHECK:STDOUT: .x = %x
  49. // CHECK:STDOUT: .y = %y
  50. // CHECK:STDOUT: }
  51. // CHECK:STDOUT: %Core.import = import Core
  52. // CHECK:STDOUT: %int.make_type_32.loc11_9: init type = call constants.%Int32() [template = i32]
  53. // CHECK:STDOUT: %int.make_type_32.loc11_14: init type = call constants.%Int32() [template = i32]
  54. // CHECK:STDOUT: %.loc11_17.1: %.2 = tuple_literal (%int.make_type_32.loc11_9, %int.make_type_32.loc11_14)
  55. // CHECK:STDOUT: %.loc11_17.2: type = value_of_initializer %int.make_type_32.loc11_9 [template = i32]
  56. // CHECK:STDOUT: %.loc11_17.3: type = converted %int.make_type_32.loc11_9, %.loc11_17.2 [template = i32]
  57. // CHECK:STDOUT: %.loc11_17.4: type = value_of_initializer %int.make_type_32.loc11_14 [template = i32]
  58. // CHECK:STDOUT: %.loc11_17.5: type = converted %int.make_type_32.loc11_14, %.loc11_17.4 [template = i32]
  59. // CHECK:STDOUT: %.loc11_17.6: type = converted %.loc11_17.1, constants.%.3 [template = constants.%.3]
  60. // CHECK:STDOUT: %int.make_type_32.loc12_9: init type = call constants.%Int32() [template = i32]
  61. // CHECK:STDOUT: %int.make_type_32.loc12_14: init type = call constants.%Int32() [template = i32]
  62. // CHECK:STDOUT: %.loc12_17.1: %.2 = tuple_literal (%int.make_type_32.loc12_9, %int.make_type_32.loc12_14)
  63. // CHECK:STDOUT: %.loc12_17.2: type = value_of_initializer %int.make_type_32.loc12_9 [template = i32]
  64. // CHECK:STDOUT: %.loc12_17.3: type = converted %int.make_type_32.loc12_9, %.loc12_17.2 [template = i32]
  65. // CHECK:STDOUT: %.loc12_17.4: type = value_of_initializer %int.make_type_32.loc12_14 [template = i32]
  66. // CHECK:STDOUT: %.loc12_17.5: type = converted %int.make_type_32.loc12_14, %.loc12_17.4 [template = i32]
  67. // CHECK:STDOUT: %.loc12_17.6: type = converted %.loc12_17.1, constants.%.3 [template = constants.%.3]
  68. // CHECK:STDOUT: %int.make_type_32.loc14_9: init type = call constants.%Int32() [template = i32]
  69. // CHECK:STDOUT: %int.make_type_32.loc14_14: init type = call constants.%Int32() [template = i32]
  70. // CHECK:STDOUT: %.loc14_17.1: %.2 = tuple_literal (%int.make_type_32.loc14_9, %int.make_type_32.loc14_14)
  71. // CHECK:STDOUT: %.loc14_17.2: type = value_of_initializer %int.make_type_32.loc14_9 [template = i32]
  72. // CHECK:STDOUT: %.loc14_17.3: type = converted %int.make_type_32.loc14_9, %.loc14_17.2 [template = i32]
  73. // CHECK:STDOUT: %.loc14_17.4: type = value_of_initializer %int.make_type_32.loc14_14 [template = i32]
  74. // CHECK:STDOUT: %.loc14_17.5: type = converted %int.make_type_32.loc14_14, %.loc14_17.4 [template = i32]
  75. // CHECK:STDOUT: %.loc14_17.6: type = converted %.loc14_17.1, constants.%.3 [template = constants.%.3]
  76. // CHECK:STDOUT: %x.var: ref %.3 = var x
  77. // CHECK:STDOUT: %x: ref %.3 = bind_name x, %x.var
  78. // CHECK:STDOUT: %int.make_type_32.loc15_9: init type = call constants.%Int32() [template = i32]
  79. // CHECK:STDOUT: %int.make_type_32.loc15_14: init type = call constants.%Int32() [template = i32]
  80. // CHECK:STDOUT: %.loc15_17.1: %.2 = tuple_literal (%int.make_type_32.loc15_9, %int.make_type_32.loc15_14)
  81. // CHECK:STDOUT: %.loc15_17.2: type = value_of_initializer %int.make_type_32.loc15_9 [template = i32]
  82. // CHECK:STDOUT: %.loc15_17.3: type = converted %int.make_type_32.loc15_9, %.loc15_17.2 [template = i32]
  83. // CHECK:STDOUT: %.loc15_17.4: type = value_of_initializer %int.make_type_32.loc15_14 [template = i32]
  84. // CHECK:STDOUT: %.loc15_17.5: type = converted %int.make_type_32.loc15_14, %.loc15_17.4 [template = i32]
  85. // CHECK:STDOUT: %.loc15_17.6: type = converted %.loc15_17.1, constants.%.3 [template = constants.%.3]
  86. // CHECK:STDOUT: %y.var: ref %.3 = var y
  87. // CHECK:STDOUT: %y: ref %.3 = bind_name y, %y.var
  88. // CHECK:STDOUT: }
  89. // CHECK:STDOUT:
  90. // CHECK:STDOUT: fn @Int32() -> type = "int.make_type_32";
  91. // CHECK:STDOUT:
  92. // CHECK:STDOUT: fn @__global_init() {
  93. // CHECK:STDOUT: !entry:
  94. // CHECK:STDOUT: %.loc11_22: i32 = int_literal 4 [template = constants.%.5]
  95. // CHECK:STDOUT: %.loc11_25: i32 = int_literal 102 [template = constants.%.6]
  96. // CHECK:STDOUT: %.loc11_28: %.3 = tuple_literal (%.loc11_22, %.loc11_25)
  97. // CHECK:STDOUT: %tuple: %.3 = tuple_value (%.loc11_22, %.loc11_25) [template = constants.%tuple]
  98. // CHECK:STDOUT: %.loc11_29: %.3 = converted %.loc11_28, %tuple [template = constants.%tuple]
  99. // CHECK:STDOUT: %v: %.3 = bind_name v, %.loc11_29
  100. // CHECK:STDOUT: %v.ref: %.3 = name_ref v, %v
  101. // CHECK:STDOUT: %w: %.3 = bind_name w, %v.ref
  102. // CHECK:STDOUT: %.loc14_22: i32 = int_literal 4 [template = constants.%.5]
  103. // CHECK:STDOUT: %.loc14_25: i32 = int_literal 102 [template = constants.%.6]
  104. // CHECK:STDOUT: %.loc14_28.1: %.3 = tuple_literal (%.loc14_22, %.loc14_25)
  105. // CHECK:STDOUT: %.loc14_28.2: ref i32 = tuple_access file.%x.var, element0
  106. // CHECK:STDOUT: %.loc14_28.3: init i32 = initialize_from %.loc14_22 to %.loc14_28.2 [template = constants.%.5]
  107. // CHECK:STDOUT: %.loc14_28.4: ref i32 = tuple_access file.%x.var, element1
  108. // CHECK:STDOUT: %.loc14_28.5: init i32 = initialize_from %.loc14_25 to %.loc14_28.4 [template = constants.%.6]
  109. // CHECK:STDOUT: %.loc14_28.6: init %.3 = tuple_init (%.loc14_28.3, %.loc14_28.5) to file.%x.var [template = constants.%tuple]
  110. // CHECK:STDOUT: %.loc14_29: init %.3 = converted %.loc14_28.1, %.loc14_28.6 [template = constants.%tuple]
  111. // CHECK:STDOUT: assign file.%x.var, %.loc14_29
  112. // CHECK:STDOUT: %x.ref: ref %.3 = name_ref x, file.%x
  113. // CHECK:STDOUT: %.loc15_21.1: ref i32 = tuple_access %x.ref, element0
  114. // CHECK:STDOUT: %.loc15_21.2: i32 = bind_value %.loc15_21.1
  115. // CHECK:STDOUT: %.loc15_21.3: ref i32 = tuple_access file.%y.var, element0
  116. // CHECK:STDOUT: %.loc15_21.4: init i32 = initialize_from %.loc15_21.2 to %.loc15_21.3
  117. // CHECK:STDOUT: %.loc15_21.5: ref i32 = tuple_access %x.ref, element1
  118. // CHECK:STDOUT: %.loc15_21.6: i32 = bind_value %.loc15_21.5
  119. // CHECK:STDOUT: %.loc15_21.7: ref i32 = tuple_access file.%y.var, element1
  120. // CHECK:STDOUT: %.loc15_21.8: init i32 = initialize_from %.loc15_21.6 to %.loc15_21.7
  121. // CHECK:STDOUT: %.loc15_21.9: init %.3 = tuple_init (%.loc15_21.4, %.loc15_21.8) to file.%y.var
  122. // CHECK:STDOUT: %.loc15_22: init %.3 = converted %x.ref, %.loc15_21.9
  123. // CHECK:STDOUT: assign file.%y.var, %.loc15_22
  124. // CHECK:STDOUT: return
  125. // CHECK:STDOUT: }
  126. // CHECK:STDOUT: