function_param.carbon 10 KB

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