function_param.carbon 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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/array/function_param.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/array/function_param.carbon
  10. fn F(arr: [i32; 3], i: i32) -> i32 {
  11. return arr[i];
  12. }
  13. fn G() -> i32 {
  14. return F((1, 2, 3), 1);
  15. }
  16. // CHECK:STDOUT: --- function_param.carbon
  17. // CHECK:STDOUT:
  18. // CHECK:STDOUT: constants {
  19. // CHECK:STDOUT: %.1: Core.IntLiteral = int_value 32 [template]
  20. // CHECK:STDOUT: %Int.type: type = fn_type @Int [template]
  21. // CHECK:STDOUT: %Int: %Int.type = struct_value () [template]
  22. // CHECK:STDOUT: %i32: type = int_type signed, %.1 [template]
  23. // CHECK:STDOUT: %.2: Core.IntLiteral = int_value 3 [template]
  24. // CHECK:STDOUT: %.3: type = array_type %.2, %i32 [template]
  25. // CHECK:STDOUT: %F.type: type = fn_type @F [template]
  26. // CHECK:STDOUT: %F: %F.type = struct_value () [template]
  27. // CHECK:STDOUT: %G.type: type = fn_type @G [template]
  28. // CHECK:STDOUT: %G: %G.type = struct_value () [template]
  29. // CHECK:STDOUT: %.5: Core.IntLiteral = int_value 1 [template]
  30. // CHECK:STDOUT: %.6: Core.IntLiteral = int_value 2 [template]
  31. // CHECK:STDOUT: %tuple.type: type = tuple_type (Core.IntLiteral, Core.IntLiteral, Core.IntLiteral) [template]
  32. // CHECK:STDOUT: %.7: Core.IntLiteral = int_value 0 [template]
  33. // CHECK:STDOUT: %Convert.type.2: type = fn_type @Convert.1, @ImplicitAs(%i32) [template]
  34. // CHECK:STDOUT: %Convert.type.14: type = fn_type @Convert.2, @impl.1(%.1) [template]
  35. // CHECK:STDOUT: %Convert.14: %Convert.type.14 = struct_value () [template]
  36. // CHECK:STDOUT: %.31: <witness> = interface_witness (%Convert.14) [template]
  37. // CHECK:STDOUT: %.32: <bound method> = bound_method %.5, %Convert.14 [template]
  38. // CHECK:STDOUT: %.33: <specific function> = specific_function %.32, @Convert.2(%.1) [template]
  39. // CHECK:STDOUT: %.34: %i32 = int_value 1 [template]
  40. // CHECK:STDOUT: %.35: <bound method> = bound_method %.6, %Convert.14 [template]
  41. // CHECK:STDOUT: %.36: <specific function> = specific_function %.35, @Convert.2(%.1) [template]
  42. // CHECK:STDOUT: %.37: %i32 = int_value 2 [template]
  43. // CHECK:STDOUT: %.38: <bound method> = bound_method %.2, %Convert.14 [template]
  44. // CHECK:STDOUT: %.39: <specific function> = specific_function %.38, @Convert.2(%.1) [template]
  45. // CHECK:STDOUT: %.40: %i32 = int_value 3 [template]
  46. // CHECK:STDOUT: %array: %.3 = tuple_value (%.34, %.37, %.40) [template]
  47. // CHECK:STDOUT: }
  48. // CHECK:STDOUT:
  49. // CHECK:STDOUT: imports {
  50. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  51. // CHECK:STDOUT: .Int = %import_ref.1
  52. // CHECK:STDOUT: .ImplicitAs = %import_ref.2
  53. // CHECK:STDOUT: import Core//prelude
  54. // CHECK:STDOUT: import Core//prelude/...
  55. // CHECK:STDOUT: }
  56. // CHECK:STDOUT: }
  57. // CHECK:STDOUT:
  58. // CHECK:STDOUT: file {
  59. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  60. // CHECK:STDOUT: .Core = imports.%Core
  61. // CHECK:STDOUT: .F = %F.decl
  62. // CHECK:STDOUT: .G = %G.decl
  63. // CHECK:STDOUT: }
  64. // CHECK:STDOUT: %Core.import = import Core
  65. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {
  66. // CHECK:STDOUT: %arr.patt: %.3 = binding_pattern arr
  67. // CHECK:STDOUT: %arr.param_patt: %.3 = value_param_pattern %arr.patt, runtime_param0
  68. // CHECK:STDOUT: %i.patt: %i32 = binding_pattern i
  69. // CHECK:STDOUT: %i.param_patt: %i32 = value_param_pattern %i.patt, runtime_param1
  70. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  71. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param2
  72. // CHECK:STDOUT: } {
  73. // CHECK:STDOUT: %.loc11_12.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  74. // CHECK:STDOUT: %int.make_type_signed.loc11_12: init type = call constants.%Int(%.loc11_12.1) [template = constants.%i32]
  75. // CHECK:STDOUT: %.loc11_17: Core.IntLiteral = int_value 3 [template = constants.%.2]
  76. // CHECK:STDOUT: %.loc11_12.2: type = value_of_initializer %int.make_type_signed.loc11_12 [template = constants.%i32]
  77. // CHECK:STDOUT: %.loc11_12.3: type = converted %int.make_type_signed.loc11_12, %.loc11_12.2 [template = constants.%i32]
  78. // CHECK:STDOUT: %.loc11_18: type = array_type %.loc11_17, %i32 [template = constants.%.3]
  79. // CHECK:STDOUT: %.loc11_24.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  80. // CHECK:STDOUT: %int.make_type_signed.loc11_24: init type = call constants.%Int(%.loc11_24.1) [template = constants.%i32]
  81. // CHECK:STDOUT: %.loc11_24.2: type = value_of_initializer %int.make_type_signed.loc11_24 [template = constants.%i32]
  82. // CHECK:STDOUT: %.loc11_24.3: type = converted %int.make_type_signed.loc11_24, %.loc11_24.2 [template = constants.%i32]
  83. // CHECK:STDOUT: %.loc11_32.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  84. // CHECK:STDOUT: %int.make_type_signed.loc11_32: init type = call constants.%Int(%.loc11_32.1) [template = constants.%i32]
  85. // CHECK:STDOUT: %.loc11_32.2: type = value_of_initializer %int.make_type_signed.loc11_32 [template = constants.%i32]
  86. // CHECK:STDOUT: %.loc11_32.3: type = converted %int.make_type_signed.loc11_32, %.loc11_32.2 [template = constants.%i32]
  87. // CHECK:STDOUT: %arr.param: %.3 = value_param runtime_param0
  88. // CHECK:STDOUT: %arr: %.3 = bind_name arr, %arr.param
  89. // CHECK:STDOUT: %i.param: %i32 = value_param runtime_param1
  90. // CHECK:STDOUT: %i: %i32 = bind_name i, %i.param
  91. // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param2
  92. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  93. // CHECK:STDOUT: }
  94. // CHECK:STDOUT: %G.decl: %G.type = fn_decl @G [template = constants.%G] {
  95. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  96. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param0
  97. // CHECK:STDOUT: } {
  98. // CHECK:STDOUT: %.loc15_11.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  99. // CHECK:STDOUT: %int.make_type_signed: init type = call constants.%Int(%.loc15_11.1) [template = constants.%i32]
  100. // CHECK:STDOUT: %.loc15_11.2: type = value_of_initializer %int.make_type_signed [template = constants.%i32]
  101. // CHECK:STDOUT: %.loc15_11.3: type = converted %int.make_type_signed, %.loc15_11.2 [template = constants.%i32]
  102. // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param0
  103. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  104. // CHECK:STDOUT: }
  105. // CHECK:STDOUT: }
  106. // CHECK:STDOUT:
  107. // CHECK:STDOUT: fn @F(%arr.param_patt: %.3, %i.param_patt: %i32) -> %i32 {
  108. // CHECK:STDOUT: !entry:
  109. // CHECK:STDOUT: %arr.ref: %.3 = name_ref arr, %arr
  110. // CHECK:STDOUT: %i.ref: %i32 = name_ref i, %i
  111. // CHECK:STDOUT: %.loc12_15.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  112. // CHECK:STDOUT: %int.make_type_signed.loc12: init type = call constants.%Int(%.loc12_15.1) [template = constants.%i32]
  113. // CHECK:STDOUT: %.loc12_15.2: type = value_of_initializer %int.make_type_signed.loc12 [template = constants.%i32]
  114. // CHECK:STDOUT: %.loc12_15.3: type = converted %int.make_type_signed.loc12, %.loc12_15.2 [template = constants.%i32]
  115. // CHECK:STDOUT: %.loc12_15.4: ref %.3 = value_as_ref %arr.ref
  116. // CHECK:STDOUT: %.loc12_15.5: ref %i32 = array_index %.loc12_15.4, %i.ref
  117. // CHECK:STDOUT: %.loc12_15.6: %i32 = bind_value %.loc12_15.5
  118. // CHECK:STDOUT: return %.loc12_15.6
  119. // CHECK:STDOUT: }
  120. // CHECK:STDOUT:
  121. // CHECK:STDOUT: fn @G() -> %i32 {
  122. // CHECK:STDOUT: !entry:
  123. // CHECK:STDOUT: %F.ref: %F.type = name_ref F, file.%F.decl [template = constants.%F]
  124. // CHECK:STDOUT: %.loc16_13: Core.IntLiteral = int_value 1 [template = constants.%.5]
  125. // CHECK:STDOUT: %.loc16_16: Core.IntLiteral = int_value 2 [template = constants.%.6]
  126. // CHECK:STDOUT: %.loc16_19: Core.IntLiteral = int_value 3 [template = constants.%.2]
  127. // CHECK:STDOUT: %.loc16_20.1: %tuple.type = tuple_literal (%.loc16_13, %.loc16_16, %.loc16_19)
  128. // CHECK:STDOUT: %.loc16_23.1: Core.IntLiteral = int_value 1 [template = constants.%.5]
  129. // CHECK:STDOUT: %.loc16_20.2: %Convert.type.2 = interface_witness_access constants.%.31, element0 [template = constants.%Convert.14]
  130. // CHECK:STDOUT: %.loc16_20.3: <bound method> = bound_method %.loc16_13, %.loc16_20.2 [template = constants.%.32]
  131. // CHECK:STDOUT: %.loc16_20.4: <specific function> = specific_function %.loc16_20.3, @Convert.2(constants.%.1) [template = constants.%.33]
  132. // CHECK:STDOUT: %int.convert_checked.loc16_20.1: init %i32 = call %.loc16_20.4(%.loc16_13) [template = constants.%.34]
  133. // CHECK:STDOUT: %.loc16_20.5: init %i32 = converted %.loc16_13, %int.convert_checked.loc16_20.1 [template = constants.%.34]
  134. // CHECK:STDOUT: %.loc16_20.6: ref %.3 = temporary_storage
  135. // CHECK:STDOUT: %.loc16_20.7: Core.IntLiteral = int_value 0 [template = constants.%.7]
  136. // CHECK:STDOUT: %.loc16_20.8: ref %i32 = array_index %.loc16_20.6, %.loc16_20.7
  137. // CHECK:STDOUT: %.loc16_20.9: init %i32 = initialize_from %.loc16_20.5 to %.loc16_20.8 [template = constants.%.34]
  138. // CHECK:STDOUT: %.loc16_20.10: %Convert.type.2 = interface_witness_access constants.%.31, element0 [template = constants.%Convert.14]
  139. // CHECK:STDOUT: %.loc16_20.11: <bound method> = bound_method %.loc16_16, %.loc16_20.10 [template = constants.%.35]
  140. // CHECK:STDOUT: %.loc16_20.12: <specific function> = specific_function %.loc16_20.11, @Convert.2(constants.%.1) [template = constants.%.36]
  141. // CHECK:STDOUT: %int.convert_checked.loc16_20.2: init %i32 = call %.loc16_20.12(%.loc16_16) [template = constants.%.37]
  142. // CHECK:STDOUT: %.loc16_20.13: init %i32 = converted %.loc16_16, %int.convert_checked.loc16_20.2 [template = constants.%.37]
  143. // CHECK:STDOUT: %.loc16_20.14: Core.IntLiteral = int_value 1 [template = constants.%.5]
  144. // CHECK:STDOUT: %.loc16_20.15: ref %i32 = array_index %.loc16_20.6, %.loc16_20.14
  145. // CHECK:STDOUT: %.loc16_20.16: init %i32 = initialize_from %.loc16_20.13 to %.loc16_20.15 [template = constants.%.37]
  146. // CHECK:STDOUT: %.loc16_20.17: %Convert.type.2 = interface_witness_access constants.%.31, element0 [template = constants.%Convert.14]
  147. // CHECK:STDOUT: %.loc16_20.18: <bound method> = bound_method %.loc16_19, %.loc16_20.17 [template = constants.%.38]
  148. // CHECK:STDOUT: %.loc16_20.19: <specific function> = specific_function %.loc16_20.18, @Convert.2(constants.%.1) [template = constants.%.39]
  149. // CHECK:STDOUT: %int.convert_checked.loc16_20.3: init %i32 = call %.loc16_20.19(%.loc16_19) [template = constants.%.40]
  150. // CHECK:STDOUT: %.loc16_20.20: init %i32 = converted %.loc16_19, %int.convert_checked.loc16_20.3 [template = constants.%.40]
  151. // CHECK:STDOUT: %.loc16_20.21: Core.IntLiteral = int_value 2 [template = constants.%.6]
  152. // CHECK:STDOUT: %.loc16_20.22: ref %i32 = array_index %.loc16_20.6, %.loc16_20.21
  153. // CHECK:STDOUT: %.loc16_20.23: init %i32 = initialize_from %.loc16_20.20 to %.loc16_20.22 [template = constants.%.40]
  154. // CHECK:STDOUT: %.loc16_20.24: init %.3 = array_init (%.loc16_20.9, %.loc16_20.16, %.loc16_20.23) to %.loc16_20.6 [template = constants.%array]
  155. // CHECK:STDOUT: %.loc16_20.25: init %.3 = converted %.loc16_20.1, %.loc16_20.24 [template = constants.%array]
  156. // CHECK:STDOUT: %.loc16_20.26: ref %.3 = temporary %.loc16_20.6, %.loc16_20.25
  157. // CHECK:STDOUT: %.loc16_20.27: %.3 = bind_value %.loc16_20.26
  158. // CHECK:STDOUT: %.loc16_23.2: %Convert.type.2 = interface_witness_access constants.%.31, element0 [template = constants.%Convert.14]
  159. // CHECK:STDOUT: %.loc16_23.3: <bound method> = bound_method %.loc16_23.1, %.loc16_23.2 [template = constants.%.32]
  160. // CHECK:STDOUT: %.loc16_23.4: <specific function> = specific_function %.loc16_23.3, @Convert.2(constants.%.1) [template = constants.%.33]
  161. // CHECK:STDOUT: %int.convert_checked.loc16_23: init %i32 = call %.loc16_23.4(%.loc16_23.1) [template = constants.%.34]
  162. // CHECK:STDOUT: %.loc16_23.5: %i32 = value_of_initializer %int.convert_checked.loc16_23 [template = constants.%.34]
  163. // CHECK:STDOUT: %.loc16_23.6: %i32 = converted %.loc16_23.1, %.loc16_23.5 [template = constants.%.34]
  164. // CHECK:STDOUT: %F.call: init %i32 = call %F.ref(%.loc16_20.27, %.loc16_23.6)
  165. // CHECK:STDOUT: %.loc16_25.1: %i32 = value_of_initializer %F.call
  166. // CHECK:STDOUT: %.loc16_25.2: %i32 = converted %F.call, %.loc16_25.1
  167. // CHECK:STDOUT: return %.loc16_25.2
  168. // CHECK:STDOUT: }
  169. // CHECK:STDOUT: