call.carbon 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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/function/builtin/call.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/function/builtin/call.carbon
  10. fn Add(a: i32, b: i32) -> i32 = "int.sadd";
  11. var arr: [i32; Add(1, 2)];
  12. fn RuntimeCall(a: i32, b: i32) -> i32 {
  13. return Add(a, b);
  14. }
  15. // CHECK:STDOUT: --- call.carbon
  16. // CHECK:STDOUT:
  17. // CHECK:STDOUT: constants {
  18. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template]
  19. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [template]
  20. // CHECK:STDOUT: %Add.type.b1f: type = fn_type @Add.1 [template]
  21. // CHECK:STDOUT: %Add: %Add.type.b1f = struct_value () [template]
  22. // CHECK:STDOUT: %int_3.1ba: Core.IntLiteral = int_value 3 [template]
  23. // CHECK:STDOUT: %array_type: type = array_type %int_3.1ba, %i32 [template]
  24. // CHECK:STDOUT: %RuntimeCall.type: type = fn_type @RuntimeCall [template]
  25. // CHECK:STDOUT: %RuntimeCall: %RuntimeCall.type = struct_value () [template]
  26. // CHECK:STDOUT: }
  27. // CHECK:STDOUT:
  28. // CHECK:STDOUT: imports {
  29. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  30. // CHECK:STDOUT: .Int = %import_ref.187
  31. // CHECK:STDOUT: .ImplicitAs = %import_ref.a69
  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: .Add = %Add.decl
  41. // CHECK:STDOUT: .arr = %arr
  42. // CHECK:STDOUT: .RuntimeCall = %RuntimeCall.decl
  43. // CHECK:STDOUT: }
  44. // CHECK:STDOUT: %Core.import = import Core
  45. // CHECK:STDOUT: %Add.decl: %Add.type.b1f = fn_decl @Add.1 [template = constants.%Add] {
  46. // CHECK:STDOUT: %a.patt: %i32 = binding_pattern a
  47. // CHECK:STDOUT: %a.param_patt: %i32 = value_param_pattern %a.patt, runtime_param0
  48. // CHECK:STDOUT: %b.patt: %i32 = binding_pattern b
  49. // CHECK:STDOUT: %b.param_patt: %i32 = value_param_pattern %b.patt, runtime_param1
  50. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  51. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param2
  52. // CHECK:STDOUT: } {
  53. // CHECK:STDOUT: %int_32.loc11_27: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  54. // CHECK:STDOUT: %i32.loc11_27: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  55. // CHECK:STDOUT: %a.param: %i32 = value_param runtime_param0
  56. // CHECK:STDOUT: %.loc11_11: type = splice_block %i32.loc11_11 [template = constants.%i32] {
  57. // CHECK:STDOUT: %int_32.loc11_11: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  58. // CHECK:STDOUT: %i32.loc11_11: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  59. // CHECK:STDOUT: }
  60. // CHECK:STDOUT: %a: %i32 = bind_name a, %a.param
  61. // CHECK:STDOUT: %b.param: %i32 = value_param runtime_param1
  62. // CHECK:STDOUT: %.loc11_19: type = splice_block %i32.loc11_19 [template = constants.%i32] {
  63. // CHECK:STDOUT: %int_32.loc11_19: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  64. // CHECK:STDOUT: %i32.loc11_19: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  65. // CHECK:STDOUT: }
  66. // CHECK:STDOUT: %b: %i32 = bind_name b, %b.param
  67. // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param2
  68. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  69. // CHECK:STDOUT: }
  70. // CHECK:STDOUT: %arr.var: ref %array_type = var arr
  71. // CHECK:STDOUT: %arr: ref %array_type = bind_name arr, %arr.var
  72. // CHECK:STDOUT: %RuntimeCall.decl: %RuntimeCall.type = fn_decl @RuntimeCall [template = constants.%RuntimeCall] {
  73. // CHECK:STDOUT: %a.patt: %i32 = binding_pattern a
  74. // CHECK:STDOUT: %a.param_patt: %i32 = value_param_pattern %a.patt, runtime_param0
  75. // CHECK:STDOUT: %b.patt: %i32 = binding_pattern b
  76. // CHECK:STDOUT: %b.param_patt: %i32 = value_param_pattern %b.patt, runtime_param1
  77. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  78. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param2
  79. // CHECK:STDOUT: } {
  80. // CHECK:STDOUT: %int_32.loc15_35: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  81. // CHECK:STDOUT: %i32.loc15_35: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  82. // CHECK:STDOUT: %a.param: %i32 = value_param runtime_param0
  83. // CHECK:STDOUT: %.loc15_19: type = splice_block %i32.loc15_19 [template = constants.%i32] {
  84. // CHECK:STDOUT: %int_32.loc15_19: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  85. // CHECK:STDOUT: %i32.loc15_19: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  86. // CHECK:STDOUT: }
  87. // CHECK:STDOUT: %a: %i32 = bind_name a, %a.param
  88. // CHECK:STDOUT: %b.param: %i32 = value_param runtime_param1
  89. // CHECK:STDOUT: %.loc15_27: type = splice_block %i32.loc15_27 [template = constants.%i32] {
  90. // CHECK:STDOUT: %int_32.loc15_27: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  91. // CHECK:STDOUT: %i32.loc15_27: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  92. // CHECK:STDOUT: }
  93. // CHECK:STDOUT: %b: %i32 = bind_name b, %b.param
  94. // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param2
  95. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  96. // CHECK:STDOUT: }
  97. // CHECK:STDOUT: }
  98. // CHECK:STDOUT:
  99. // CHECK:STDOUT: fn @Add.1(%a.param_patt: %i32, %b.param_patt: %i32) -> %i32 = "int.sadd";
  100. // CHECK:STDOUT:
  101. // CHECK:STDOUT: fn @RuntimeCall(%a.param_patt: %i32, %b.param_patt: %i32) -> %i32 {
  102. // CHECK:STDOUT: !entry:
  103. // CHECK:STDOUT: %Add.ref: %Add.type.b1f = name_ref Add, file.%Add.decl [template = constants.%Add]
  104. // CHECK:STDOUT: %a.ref: %i32 = name_ref a, %a
  105. // CHECK:STDOUT: %b.ref: %i32 = name_ref b, %b
  106. // CHECK:STDOUT: %int.sadd: init %i32 = call %Add.ref(%a.ref, %b.ref)
  107. // CHECK:STDOUT: %.loc16_19.1: %i32 = value_of_initializer %int.sadd
  108. // CHECK:STDOUT: %.loc16_19.2: %i32 = converted %int.sadd, %.loc16_19.1
  109. // CHECK:STDOUT: return %.loc16_19.2
  110. // CHECK:STDOUT: }
  111. // CHECK:STDOUT: