import.carbon 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. // --- core.carbon
  7. package Core api;
  8. import library "prelude";
  9. fn Add(a: i32, b: i32) -> i32 = "int.sadd";
  10. // --- use.carbon
  11. import Core;
  12. var arr: [i32; Core.Add(1, 2)] = (1, 2, 3);
  13. // CHECK:STDOUT: --- core.carbon
  14. // CHECK:STDOUT:
  15. // CHECK:STDOUT: constants {
  16. // CHECK:STDOUT: %Add: type = fn_type @Add [template]
  17. // CHECK:STDOUT: %.1: type = tuple_type () [template]
  18. // CHECK:STDOUT: %struct: Add = struct_value () [template]
  19. // CHECK:STDOUT: }
  20. // CHECK:STDOUT:
  21. // CHECK:STDOUT: file {
  22. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  23. // CHECK:STDOUT: .Add = %Add.decl
  24. // CHECK:STDOUT: }
  25. // CHECK:STDOUT: %Add.decl: Add = fn_decl @Add [template = constants.%struct] {
  26. // CHECK:STDOUT: %a.loc6_8.1: i32 = param a
  27. // CHECK:STDOUT: @Add.%a: i32 = bind_name a, %a.loc6_8.1
  28. // CHECK:STDOUT: %b.loc6_16.1: i32 = param b
  29. // CHECK:STDOUT: @Add.%b: i32 = bind_name b, %b.loc6_16.1
  30. // CHECK:STDOUT: @Add.%return: ref i32 = var <return slot>
  31. // CHECK:STDOUT: }
  32. // CHECK:STDOUT: }
  33. // CHECK:STDOUT:
  34. // CHECK:STDOUT: fn @Add(%a: i32, %b: i32) -> i32 = "int.sadd";
  35. // CHECK:STDOUT:
  36. // CHECK:STDOUT: --- use.carbon
  37. // CHECK:STDOUT:
  38. // CHECK:STDOUT: constants {
  39. // CHECK:STDOUT: %Add: type = fn_type @Add [template]
  40. // CHECK:STDOUT: %.1: type = tuple_type () [template]
  41. // CHECK:STDOUT: %struct: Add = struct_value () [template]
  42. // CHECK:STDOUT: %.2: i32 = int_literal 1 [template]
  43. // CHECK:STDOUT: %.3: i32 = int_literal 2 [template]
  44. // CHECK:STDOUT: %.4: i32 = int_literal 3 [template]
  45. // CHECK:STDOUT: %.5: type = array_type %.4, i32 [template]
  46. // CHECK:STDOUT: %.6: type = ptr_type [i32; 3] [template]
  47. // CHECK:STDOUT: %.7: type = tuple_type (i32, i32, i32) [template]
  48. // CHECK:STDOUT: %.8: i32 = int_literal 0 [template]
  49. // CHECK:STDOUT: %array: [i32; 3] = tuple_value (%.2, %.3, %.4) [template]
  50. // CHECK:STDOUT: }
  51. // CHECK:STDOUT:
  52. // CHECK:STDOUT: file {
  53. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  54. // CHECK:STDOUT: .Core = %Core
  55. // CHECK:STDOUT: .arr = %arr
  56. // CHECK:STDOUT: }
  57. // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
  58. // CHECK:STDOUT: %Core.ref: <namespace> = name_ref Core, %Core [template = %Core]
  59. // CHECK:STDOUT: %import_ref: Add = import_ref ir2, inst+6, loaded [template = constants.%struct]
  60. // CHECK:STDOUT: %Add.ref: Add = name_ref Add, %import_ref [template = constants.%struct]
  61. // CHECK:STDOUT: %.loc4_25: i32 = int_literal 1 [template = constants.%.2]
  62. // CHECK:STDOUT: %.loc4_28: i32 = int_literal 2 [template = constants.%.3]
  63. // CHECK:STDOUT: %int.sadd: init i32 = call %Add.ref(%.loc4_25, %.loc4_28) [template = constants.%.4]
  64. // CHECK:STDOUT: %.loc4_30: type = array_type %int.sadd, i32 [template = constants.%.5]
  65. // CHECK:STDOUT: %arr.var: ref [i32; 3] = var arr
  66. // CHECK:STDOUT: %arr: ref [i32; 3] = bind_name arr, %arr.var
  67. // CHECK:STDOUT: }
  68. // CHECK:STDOUT:
  69. // CHECK:STDOUT: fn @Add(%a: i32, %b: i32) -> i32 = "int.sadd";
  70. // CHECK:STDOUT:
  71. // CHECK:STDOUT: fn @__global_init() {
  72. // CHECK:STDOUT: !entry:
  73. // CHECK:STDOUT: %.loc4_35: i32 = int_literal 1 [template = constants.%.2]
  74. // CHECK:STDOUT: %.loc4_38: i32 = int_literal 2 [template = constants.%.3]
  75. // CHECK:STDOUT: %.loc4_41: i32 = int_literal 3 [template = constants.%.4]
  76. // CHECK:STDOUT: %.loc4_42.1: (i32, i32, i32) = tuple_literal (%.loc4_35, %.loc4_38, %.loc4_41)
  77. // CHECK:STDOUT: %.loc4_42.2: i32 = int_literal 0 [template = constants.%.8]
  78. // CHECK:STDOUT: %.loc4_42.3: ref i32 = array_index file.%arr.var, %.loc4_42.2
  79. // CHECK:STDOUT: %.loc4_42.4: init i32 = initialize_from %.loc4_35 to %.loc4_42.3 [template = constants.%.2]
  80. // CHECK:STDOUT: %.loc4_42.5: i32 = int_literal 1 [template = constants.%.2]
  81. // CHECK:STDOUT: %.loc4_42.6: ref i32 = array_index file.%arr.var, %.loc4_42.5
  82. // CHECK:STDOUT: %.loc4_42.7: init i32 = initialize_from %.loc4_38 to %.loc4_42.6 [template = constants.%.3]
  83. // CHECK:STDOUT: %.loc4_42.8: i32 = int_literal 2 [template = constants.%.3]
  84. // CHECK:STDOUT: %.loc4_42.9: ref i32 = array_index file.%arr.var, %.loc4_42.8
  85. // CHECK:STDOUT: %.loc4_42.10: init i32 = initialize_from %.loc4_41 to %.loc4_42.9 [template = constants.%.4]
  86. // CHECK:STDOUT: %.loc4_42.11: init [i32; 3] = array_init (%.loc4_42.4, %.loc4_42.7, %.loc4_42.10) to file.%arr.var [template = constants.%array]
  87. // CHECK:STDOUT: %.loc4_43: init [i32; 3] = converted %.loc4_42.1, %.loc4_42.11 [template = constants.%array]
  88. // CHECK:STDOUT: assign file.%arr.var, %.loc4_43
  89. // CHECK:STDOUT: return
  90. // CHECK:STDOUT: }
  91. // CHECK:STDOUT: