import.carbon 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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/pointer/import.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/pointer/import.carbon
  10. // --- implicit.carbon
  11. package Implicit;
  12. var a_orig: i32 = 0;
  13. var a_ref: i32* = &a_orig;
  14. // --- implicit.impl.carbon
  15. impl package Implicit;
  16. var a: i32* = a_ref;
  17. // CHECK:STDOUT: --- implicit.carbon
  18. // CHECK:STDOUT:
  19. // CHECK:STDOUT: constants {
  20. // CHECK:STDOUT: %Int32.type: type = fn_type @Int32 [template]
  21. // CHECK:STDOUT: %.1: type = tuple_type () [template]
  22. // CHECK:STDOUT: %Int32: %Int32.type = struct_value () [template]
  23. // CHECK:STDOUT: %.2: i32 = int_literal 0 [template]
  24. // CHECK:STDOUT: %.3: type = ptr_type i32 [template]
  25. // CHECK:STDOUT: }
  26. // CHECK:STDOUT:
  27. // CHECK:STDOUT: file {
  28. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  29. // CHECK:STDOUT: .Core = %Core
  30. // CHECK:STDOUT: .a_orig = %a_orig
  31. // CHECK:STDOUT: .a_ref = %a_ref
  32. // CHECK:STDOUT: }
  33. // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
  34. // CHECK:STDOUT: %import_ref.1: %Int32.type = import_ref ir3, inst+3, loaded [template = constants.%Int32]
  35. // CHECK:STDOUT: %int.make_type_32.loc4: init type = call constants.%Int32() [template = i32]
  36. // CHECK:STDOUT: %.loc4_13.1: type = value_of_initializer %int.make_type_32.loc4 [template = i32]
  37. // CHECK:STDOUT: %.loc4_13.2: type = converted %int.make_type_32.loc4, %.loc4_13.1 [template = i32]
  38. // CHECK:STDOUT: %a_orig.var: ref i32 = var a_orig
  39. // CHECK:STDOUT: %a_orig: ref i32 = bind_name a_orig, %a_orig.var
  40. // CHECK:STDOUT: %import_ref.2: %Int32.type = import_ref ir3, inst+3, loaded [template = constants.%Int32]
  41. // CHECK:STDOUT: %int.make_type_32.loc5: init type = call constants.%Int32() [template = i32]
  42. // CHECK:STDOUT: %.loc5_15.1: type = value_of_initializer %int.make_type_32.loc5 [template = i32]
  43. // CHECK:STDOUT: %.loc5_15.2: type = converted %int.make_type_32.loc5, %.loc5_15.1 [template = i32]
  44. // CHECK:STDOUT: %.loc5_15.3: type = ptr_type i32 [template = constants.%.3]
  45. // CHECK:STDOUT: %a_ref.var: ref %.3 = var a_ref
  46. // CHECK:STDOUT: %a_ref: ref %.3 = bind_name a_ref, %a_ref.var
  47. // CHECK:STDOUT: }
  48. // CHECK:STDOUT:
  49. // CHECK:STDOUT: fn @Int32() -> type = "int.make_type_32";
  50. // CHECK:STDOUT:
  51. // CHECK:STDOUT: fn @__global_init() {
  52. // CHECK:STDOUT: !entry:
  53. // CHECK:STDOUT: %.loc4: i32 = int_literal 0 [template = constants.%.2]
  54. // CHECK:STDOUT: assign file.%a_orig.var, %.loc4
  55. // CHECK:STDOUT: %a_orig.ref: ref i32 = name_ref a_orig, file.%a_orig
  56. // CHECK:STDOUT: %.loc5: %.3 = addr_of %a_orig.ref
  57. // CHECK:STDOUT: assign file.%a_ref.var, %.loc5
  58. // CHECK:STDOUT: return
  59. // CHECK:STDOUT: }
  60. // CHECK:STDOUT:
  61. // CHECK:STDOUT: --- implicit.impl.carbon
  62. // CHECK:STDOUT:
  63. // CHECK:STDOUT: constants {
  64. // CHECK:STDOUT: %Int32.type: type = fn_type @Int32 [template]
  65. // CHECK:STDOUT: %.1: type = tuple_type () [template]
  66. // CHECK:STDOUT: %Int32: %Int32.type = struct_value () [template]
  67. // CHECK:STDOUT: %.2: type = ptr_type i32 [template]
  68. // CHECK:STDOUT: }
  69. // CHECK:STDOUT:
  70. // CHECK:STDOUT: file {
  71. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  72. // CHECK:STDOUT: .a_orig = %import_ref.1
  73. // CHECK:STDOUT: .a_ref = %import_ref.2
  74. // CHECK:STDOUT: .Core = %Core
  75. // CHECK:STDOUT: .a = %a
  76. // CHECK:STDOUT: }
  77. // CHECK:STDOUT: %import_ref.1 = import_ref ir0, inst+12, unloaded
  78. // CHECK:STDOUT: %import_ref.2: ref %.2 = import_ref ir0, inst+23, loaded
  79. // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
  80. // CHECK:STDOUT: %import_ref.3: %Int32.type = import_ref ir3, inst+3, loaded [template = constants.%Int32]
  81. // CHECK:STDOUT: %int.make_type_32: init type = call constants.%Int32() [template = i32]
  82. // CHECK:STDOUT: %.loc4_11.1: type = value_of_initializer %int.make_type_32 [template = i32]
  83. // CHECK:STDOUT: %.loc4_11.2: type = converted %int.make_type_32, %.loc4_11.1 [template = i32]
  84. // CHECK:STDOUT: %.loc4_11.3: type = ptr_type i32 [template = constants.%.2]
  85. // CHECK:STDOUT: %a.var: ref %.2 = var a
  86. // CHECK:STDOUT: %a: ref %.2 = bind_name a, %a.var
  87. // CHECK:STDOUT: }
  88. // CHECK:STDOUT:
  89. // CHECK:STDOUT: fn @Int32() -> type = "int.make_type_32";
  90. // CHECK:STDOUT:
  91. // CHECK:STDOUT: fn @__global_init() {
  92. // CHECK:STDOUT: !entry:
  93. // CHECK:STDOUT: %a_ref.ref: ref %.2 = name_ref a_ref, file.%import_ref.2
  94. // CHECK:STDOUT: %.loc4: %.2 = bind_value %a_ref.ref
  95. // CHECK:STDOUT: assign file.%a.var, %.loc4
  96. // CHECK:STDOUT: return
  97. // CHECK:STDOUT: }
  98. // CHECK:STDOUT: