import.carbon 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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/const/import.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/const/import.carbon
  10. // --- implicit.carbon
  11. package Implicit;
  12. fn F() -> const i32;
  13. var a_ref: const i32 = F();
  14. var a_ptr_ref: const i32* = &a_ref;
  15. // --- implicit.impl.carbon
  16. impl package Implicit;
  17. // Take a reference to avoid unsupported copy logic. This still validates the
  18. // `const` is handled.
  19. var a: const i32* = &a_ref;
  20. var a_ptr: const i32* = a_ptr_ref;
  21. // CHECK:STDOUT: --- implicit.carbon
  22. // CHECK:STDOUT:
  23. // CHECK:STDOUT: constants {
  24. // CHECK:STDOUT: %Int32.type: type = fn_type @Int32 [template]
  25. // CHECK:STDOUT: %.1: type = tuple_type () [template]
  26. // CHECK:STDOUT: %Int32: %Int32.type = struct_value () [template]
  27. // CHECK:STDOUT: %.2: type = const_type i32 [template]
  28. // CHECK:STDOUT: %F.type: type = fn_type @F [template]
  29. // CHECK:STDOUT: %F: %F.type = struct_value () [template]
  30. // CHECK:STDOUT: %.3: type = ptr_type %.2 [template]
  31. // CHECK:STDOUT: }
  32. // CHECK:STDOUT:
  33. // CHECK:STDOUT: file {
  34. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  35. // CHECK:STDOUT: .Core = %Core
  36. // CHECK:STDOUT: .F = %F.decl
  37. // CHECK:STDOUT: .a_ref = %a_ref
  38. // CHECK:STDOUT: .a_ptr_ref = %a_ptr_ref
  39. // CHECK:STDOUT: }
  40. // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
  41. // CHECK:STDOUT: %import_ref.1: %Int32.type = import_ref ir3, inst+3, loaded [template = constants.%Int32]
  42. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {
  43. // CHECK:STDOUT: %int.make_type_32.loc4: init type = call constants.%Int32() [template = i32]
  44. // CHECK:STDOUT: %.loc4_11.1: type = value_of_initializer %int.make_type_32.loc4 [template = i32]
  45. // CHECK:STDOUT: %.loc4_11.2: type = converted %int.make_type_32.loc4, %.loc4_11.1 [template = i32]
  46. // CHECK:STDOUT: %.loc4_11.3: type = const_type i32 [template = constants.%.2]
  47. // CHECK:STDOUT: @F.%return: ref %.2 = var <return slot>
  48. // CHECK:STDOUT: }
  49. // CHECK:STDOUT: %import_ref.2: %Int32.type = import_ref ir3, inst+3, loaded [template = constants.%Int32]
  50. // CHECK:STDOUT: %int.make_type_32.loc6: init type = call constants.%Int32() [template = i32]
  51. // CHECK:STDOUT: %.loc6_12.1: type = value_of_initializer %int.make_type_32.loc6 [template = i32]
  52. // CHECK:STDOUT: %.loc6_12.2: type = converted %int.make_type_32.loc6, %.loc6_12.1 [template = i32]
  53. // CHECK:STDOUT: %.loc6_12.3: type = const_type i32 [template = constants.%.2]
  54. // CHECK:STDOUT: %a_ref.var: ref %.2 = var a_ref
  55. // CHECK:STDOUT: %a_ref: ref %.2 = bind_name a_ref, %a_ref.var
  56. // CHECK:STDOUT: %import_ref.3: %Int32.type = import_ref ir3, inst+3, loaded [template = constants.%Int32]
  57. // CHECK:STDOUT: %int.make_type_32.loc7: init type = call constants.%Int32() [template = i32]
  58. // CHECK:STDOUT: %.loc7_16.1: type = value_of_initializer %int.make_type_32.loc7 [template = i32]
  59. // CHECK:STDOUT: %.loc7_16.2: type = converted %int.make_type_32.loc7, %.loc7_16.1 [template = i32]
  60. // CHECK:STDOUT: %.loc7_16.3: type = const_type i32 [template = constants.%.2]
  61. // CHECK:STDOUT: %.loc7_25: type = ptr_type %.2 [template = constants.%.3]
  62. // CHECK:STDOUT: %a_ptr_ref.var: ref %.3 = var a_ptr_ref
  63. // CHECK:STDOUT: %a_ptr_ref: ref %.3 = bind_name a_ptr_ref, %a_ptr_ref.var
  64. // CHECK:STDOUT: }
  65. // CHECK:STDOUT:
  66. // CHECK:STDOUT: fn @Int32() -> type = "int.make_type_32";
  67. // CHECK:STDOUT:
  68. // CHECK:STDOUT: fn @F() -> %.2;
  69. // CHECK:STDOUT:
  70. // CHECK:STDOUT: fn @__global_init() {
  71. // CHECK:STDOUT: !entry:
  72. // CHECK:STDOUT: %F.ref: %F.type = name_ref F, file.%F.decl [template = constants.%F]
  73. // CHECK:STDOUT: %F.call: init %.2 = call %F.ref()
  74. // CHECK:STDOUT: assign file.%a_ref.var, %F.call
  75. // CHECK:STDOUT: %a_ref.ref: ref %.2 = name_ref a_ref, file.%a_ref
  76. // CHECK:STDOUT: %.loc7: %.3 = addr_of %a_ref.ref
  77. // CHECK:STDOUT: assign file.%a_ptr_ref.var, %.loc7
  78. // CHECK:STDOUT: return
  79. // CHECK:STDOUT: }
  80. // CHECK:STDOUT:
  81. // CHECK:STDOUT: --- implicit.impl.carbon
  82. // CHECK:STDOUT:
  83. // CHECK:STDOUT: constants {
  84. // CHECK:STDOUT: %Int32.type: type = fn_type @Int32 [template]
  85. // CHECK:STDOUT: %.1: type = tuple_type () [template]
  86. // CHECK:STDOUT: %Int32: %Int32.type = struct_value () [template]
  87. // CHECK:STDOUT: %.2: type = const_type i32 [template]
  88. // CHECK:STDOUT: %.3: type = ptr_type %.2 [template]
  89. // CHECK:STDOUT: }
  90. // CHECK:STDOUT:
  91. // CHECK:STDOUT: file {
  92. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  93. // CHECK:STDOUT: .F = %import_ref.1
  94. // CHECK:STDOUT: .a_ref = %import_ref.2
  95. // CHECK:STDOUT: .a_ptr_ref = %import_ref.3
  96. // CHECK:STDOUT: .Core = %Core
  97. // CHECK:STDOUT: .a = %a
  98. // CHECK:STDOUT: .a_ptr = %a_ptr
  99. // CHECK:STDOUT: }
  100. // CHECK:STDOUT: %import_ref.1 = import_ref ir0, inst+14, unloaded
  101. // CHECK:STDOUT: %import_ref.2: ref %.2 = import_ref ir0, inst+23, loaded
  102. // CHECK:STDOUT: %import_ref.3: ref %.3 = import_ref ir0, inst+35, loaded
  103. // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
  104. // CHECK:STDOUT: %import_ref.4: %Int32.type = import_ref ir3, inst+3, loaded [template = constants.%Int32]
  105. // CHECK:STDOUT: %int.make_type_32.loc6: init type = call constants.%Int32() [template = i32]
  106. // CHECK:STDOUT: %.loc6_8.1: type = value_of_initializer %int.make_type_32.loc6 [template = i32]
  107. // CHECK:STDOUT: %.loc6_8.2: type = converted %int.make_type_32.loc6, %.loc6_8.1 [template = i32]
  108. // CHECK:STDOUT: %.loc6_8.3: type = const_type i32 [template = constants.%.2]
  109. // CHECK:STDOUT: %.loc6_17: type = ptr_type %.2 [template = constants.%.3]
  110. // CHECK:STDOUT: %a.var: ref %.3 = var a
  111. // CHECK:STDOUT: %a: ref %.3 = bind_name a, %a.var
  112. // CHECK:STDOUT: %import_ref.5: %Int32.type = import_ref ir3, inst+3, loaded [template = constants.%Int32]
  113. // CHECK:STDOUT: %int.make_type_32.loc7: init type = call constants.%Int32() [template = i32]
  114. // CHECK:STDOUT: %.loc7_12.1: type = value_of_initializer %int.make_type_32.loc7 [template = i32]
  115. // CHECK:STDOUT: %.loc7_12.2: type = converted %int.make_type_32.loc7, %.loc7_12.1 [template = i32]
  116. // CHECK:STDOUT: %.loc7_12.3: type = const_type i32 [template = constants.%.2]
  117. // CHECK:STDOUT: %.loc7_21: type = ptr_type %.2 [template = constants.%.3]
  118. // CHECK:STDOUT: %a_ptr.var: ref %.3 = var a_ptr
  119. // CHECK:STDOUT: %a_ptr: ref %.3 = bind_name a_ptr, %a_ptr.var
  120. // CHECK:STDOUT: }
  121. // CHECK:STDOUT:
  122. // CHECK:STDOUT: fn @Int32() -> type = "int.make_type_32";
  123. // CHECK:STDOUT:
  124. // CHECK:STDOUT: fn @__global_init() {
  125. // CHECK:STDOUT: !entry:
  126. // CHECK:STDOUT: %a_ref.ref: ref %.2 = name_ref a_ref, file.%import_ref.2
  127. // CHECK:STDOUT: %.loc6: %.3 = addr_of %a_ref.ref
  128. // CHECK:STDOUT: assign file.%a.var, %.loc6
  129. // CHECK:STDOUT: %a_ptr_ref.ref: ref %.3 = name_ref a_ptr_ref, file.%import_ref.3
  130. // CHECK:STDOUT: %.loc7: %.3 = bind_value %a_ptr_ref.ref
  131. // CHECK:STDOUT: assign file.%a_ptr.var, %.loc7
  132. // CHECK:STDOUT: return
  133. // CHECK:STDOUT: }
  134. // CHECK:STDOUT: