tuple.carbon 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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/return/tuple.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/return/tuple.carbon
  10. fn Main() -> (i32, i32) {
  11. return (15, 35);
  12. }
  13. // CHECK:STDOUT: --- tuple.carbon
  14. // CHECK:STDOUT:
  15. // CHECK:STDOUT: constants {
  16. // CHECK:STDOUT: %.1: Core.IntLiteral = int_value 32 [template]
  17. // CHECK:STDOUT: %Int.type: type = fn_type @Int [template]
  18. // CHECK:STDOUT: %Int: %Int.type = struct_value () [template]
  19. // CHECK:STDOUT: %i32: type = int_type signed, %.1 [template]
  20. // CHECK:STDOUT: %tuple.type.1: type = tuple_type (type, type) [template]
  21. // CHECK:STDOUT: %tuple.type.2: type = tuple_type (%i32, %i32) [template]
  22. // CHECK:STDOUT: %Main.type: type = fn_type @Main [template]
  23. // CHECK:STDOUT: %Main: %Main.type = struct_value () [template]
  24. // CHECK:STDOUT: %.3: Core.IntLiteral = int_value 15 [template]
  25. // CHECK:STDOUT: %.4: Core.IntLiteral = int_value 35 [template]
  26. // CHECK:STDOUT: %tuple.type.3: type = tuple_type (Core.IntLiteral, Core.IntLiteral) [template]
  27. // CHECK:STDOUT: %Convert.type.2: type = fn_type @Convert.1, @ImplicitAs(%i32) [template]
  28. // CHECK:STDOUT: %Convert.type.14: type = fn_type @Convert.2, @impl.1(%.1) [template]
  29. // CHECK:STDOUT: %Convert.14: %Convert.type.14 = struct_value () [template]
  30. // CHECK:STDOUT: %.24: <witness> = interface_witness (%Convert.14) [template]
  31. // CHECK:STDOUT: %.25: <bound method> = bound_method %.3, %Convert.14 [template]
  32. // CHECK:STDOUT: %.26: <specific function> = specific_function %.25, @Convert.2(%.1) [template]
  33. // CHECK:STDOUT: %.27: %i32 = int_value 15 [template]
  34. // CHECK:STDOUT: %.28: <bound method> = bound_method %.4, %Convert.14 [template]
  35. // CHECK:STDOUT: %.29: <specific function> = specific_function %.28, @Convert.2(%.1) [template]
  36. // CHECK:STDOUT: %.30: %i32 = int_value 35 [template]
  37. // CHECK:STDOUT: %tuple: %tuple.type.2 = tuple_value (%.27, %.30) [template]
  38. // CHECK:STDOUT: }
  39. // CHECK:STDOUT:
  40. // CHECK:STDOUT: imports {
  41. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  42. // CHECK:STDOUT: .Int = %import_ref.1
  43. // CHECK:STDOUT: .ImplicitAs = %import_ref.2
  44. // CHECK:STDOUT: import Core//prelude
  45. // CHECK:STDOUT: import Core//prelude/...
  46. // CHECK:STDOUT: }
  47. // CHECK:STDOUT: }
  48. // CHECK:STDOUT:
  49. // CHECK:STDOUT: file {
  50. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  51. // CHECK:STDOUT: .Core = imports.%Core
  52. // CHECK:STDOUT: .Main = %Main.decl
  53. // CHECK:STDOUT: }
  54. // CHECK:STDOUT: %Core.import = import Core
  55. // CHECK:STDOUT: %Main.decl: %Main.type = fn_decl @Main [template = constants.%Main] {
  56. // CHECK:STDOUT: %return.patt: %tuple.type.2 = return_slot_pattern
  57. // CHECK:STDOUT: %return.param_patt: %tuple.type.2 = out_param_pattern %return.patt, runtime_param0
  58. // CHECK:STDOUT: } {
  59. // CHECK:STDOUT: %.loc12_15: Core.IntLiteral = int_value 32 [template = constants.%.1]
  60. // CHECK:STDOUT: %int.make_type_signed.loc12_15: init type = call constants.%Int(%.loc12_15) [template = constants.%i32]
  61. // CHECK:STDOUT: %.loc12_20: Core.IntLiteral = int_value 32 [template = constants.%.1]
  62. // CHECK:STDOUT: %int.make_type_signed.loc12_20: init type = call constants.%Int(%.loc12_20) [template = constants.%i32]
  63. // CHECK:STDOUT: %.loc12_23.1: %tuple.type.1 = tuple_literal (%int.make_type_signed.loc12_15, %int.make_type_signed.loc12_20)
  64. // CHECK:STDOUT: %.loc12_23.2: type = value_of_initializer %int.make_type_signed.loc12_15 [template = constants.%i32]
  65. // CHECK:STDOUT: %.loc12_23.3: type = converted %int.make_type_signed.loc12_15, %.loc12_23.2 [template = constants.%i32]
  66. // CHECK:STDOUT: %.loc12_23.4: type = value_of_initializer %int.make_type_signed.loc12_20 [template = constants.%i32]
  67. // CHECK:STDOUT: %.loc12_23.5: type = converted %int.make_type_signed.loc12_20, %.loc12_23.4 [template = constants.%i32]
  68. // CHECK:STDOUT: %.loc12_23.6: type = converted %.loc12_23.1, constants.%tuple.type.2 [template = constants.%tuple.type.2]
  69. // CHECK:STDOUT: %return.param: ref %tuple.type.2 = out_param runtime_param0
  70. // CHECK:STDOUT: %return: ref %tuple.type.2 = return_slot %return.param
  71. // CHECK:STDOUT: }
  72. // CHECK:STDOUT: }
  73. // CHECK:STDOUT:
  74. // CHECK:STDOUT: fn @Main() -> %return: %tuple.type.2 {
  75. // CHECK:STDOUT: !entry:
  76. // CHECK:STDOUT: %.loc13_11: Core.IntLiteral = int_value 15 [template = constants.%.3]
  77. // CHECK:STDOUT: %.loc13_15: Core.IntLiteral = int_value 35 [template = constants.%.4]
  78. // CHECK:STDOUT: %.loc13_17.1: %tuple.type.3 = tuple_literal (%.loc13_11, %.loc13_15)
  79. // CHECK:STDOUT: %.loc13_17.2: %Convert.type.2 = interface_witness_access constants.%.24, element0 [template = constants.%Convert.14]
  80. // CHECK:STDOUT: %.loc13_17.3: <bound method> = bound_method %.loc13_11, %.loc13_17.2 [template = constants.%.25]
  81. // CHECK:STDOUT: %.loc13_17.4: <specific function> = specific_function %.loc13_17.3, @Convert.2(constants.%.1) [template = constants.%.26]
  82. // CHECK:STDOUT: %int.convert_checked.loc13_17.1: init %i32 = call %.loc13_17.4(%.loc13_11) [template = constants.%.27]
  83. // CHECK:STDOUT: %.loc13_17.5: init %i32 = converted %.loc13_11, %int.convert_checked.loc13_17.1 [template = constants.%.27]
  84. // CHECK:STDOUT: %.loc13_17.6: ref %i32 = tuple_access %return, element0
  85. // CHECK:STDOUT: %.loc13_17.7: init %i32 = initialize_from %.loc13_17.5 to %.loc13_17.6 [template = constants.%.27]
  86. // CHECK:STDOUT: %.loc13_17.8: %Convert.type.2 = interface_witness_access constants.%.24, element0 [template = constants.%Convert.14]
  87. // CHECK:STDOUT: %.loc13_17.9: <bound method> = bound_method %.loc13_15, %.loc13_17.8 [template = constants.%.28]
  88. // CHECK:STDOUT: %.loc13_17.10: <specific function> = specific_function %.loc13_17.9, @Convert.2(constants.%.1) [template = constants.%.29]
  89. // CHECK:STDOUT: %int.convert_checked.loc13_17.2: init %i32 = call %.loc13_17.10(%.loc13_15) [template = constants.%.30]
  90. // CHECK:STDOUT: %.loc13_17.11: init %i32 = converted %.loc13_15, %int.convert_checked.loc13_17.2 [template = constants.%.30]
  91. // CHECK:STDOUT: %.loc13_17.12: ref %i32 = tuple_access %return, element1
  92. // CHECK:STDOUT: %.loc13_17.13: init %i32 = initialize_from %.loc13_17.11 to %.loc13_17.12 [template = constants.%.30]
  93. // CHECK:STDOUT: %.loc13_17.14: init %tuple.type.2 = tuple_init (%.loc13_17.7, %.loc13_17.13) to %return [template = constants.%tuple]
  94. // CHECK:STDOUT: %.loc13_18: init %tuple.type.2 = converted %.loc13_17.1, %.loc13_17.14 [template = constants.%tuple]
  95. // CHECK:STDOUT: return %.loc13_18 to %return
  96. // CHECK:STDOUT: }
  97. // CHECK:STDOUT: