import.carbon 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. // --- implicit.carbon
  7. package Implicit api;
  8. fn F() -> const i32;
  9. var a_ref: const i32 = F();
  10. var a_ptr_ref: const i32* = &a_ref;
  11. // --- implicit.impl.carbon
  12. package Implicit impl;
  13. // Take a reference to avoid unsupported copy logic. This still validates the
  14. // `const` is handled.
  15. var a: const i32* = &a_ref;
  16. var a_ptr: const i32* = a_ptr_ref;
  17. // CHECK:STDOUT: --- implicit.carbon
  18. // CHECK:STDOUT:
  19. // CHECK:STDOUT: constants {
  20. // CHECK:STDOUT: %.1: type = const_type i32 [template]
  21. // CHECK:STDOUT: %.2: type = ptr_type const i32 [template]
  22. // CHECK:STDOUT: }
  23. // CHECK:STDOUT:
  24. // CHECK:STDOUT: file {
  25. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  26. // CHECK:STDOUT: .Core = %Core
  27. // CHECK:STDOUT: .F = %F
  28. // CHECK:STDOUT: .a_ref = %a_ref
  29. // CHECK:STDOUT: .a_ptr_ref = %a_ptr_ref
  30. // CHECK:STDOUT: }
  31. // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
  32. // CHECK:STDOUT: %F: <function> = fn_decl @F [template] {
  33. // CHECK:STDOUT: %.loc4: type = const_type i32 [template = constants.%.1]
  34. // CHECK:STDOUT: %return.var: ref const i32 = var <return slot>
  35. // CHECK:STDOUT: }
  36. // CHECK:STDOUT: %.loc6: type = const_type i32 [template = constants.%.1]
  37. // CHECK:STDOUT: %a_ref.var: ref const i32 = var a_ref
  38. // CHECK:STDOUT: %a_ref: ref const i32 = bind_name a_ref, %a_ref.var
  39. // CHECK:STDOUT: %.loc7_16: type = const_type i32 [template = constants.%.1]
  40. // CHECK:STDOUT: %.loc7_25: type = ptr_type const i32 [template = constants.%.2]
  41. // CHECK:STDOUT: %a_ptr_ref.var: ref const i32* = var a_ptr_ref
  42. // CHECK:STDOUT: %a_ptr_ref: ref const i32* = bind_name a_ptr_ref, %a_ptr_ref.var
  43. // CHECK:STDOUT: }
  44. // CHECK:STDOUT:
  45. // CHECK:STDOUT: fn @F() -> const i32;
  46. // CHECK:STDOUT:
  47. // CHECK:STDOUT: fn @__global_init() {
  48. // CHECK:STDOUT: !entry:
  49. // CHECK:STDOUT: %F.ref: <function> = name_ref F, file.%F [template = file.%F]
  50. // CHECK:STDOUT: %.loc6: init const i32 = call %F.ref()
  51. // CHECK:STDOUT: assign file.%a_ref.var, %.loc6
  52. // CHECK:STDOUT: %a_ref.ref: ref const i32 = name_ref a_ref, file.%a_ref
  53. // CHECK:STDOUT: %.loc7: const i32* = addr_of %a_ref.ref
  54. // CHECK:STDOUT: assign file.%a_ptr_ref.var, %.loc7
  55. // CHECK:STDOUT: return
  56. // CHECK:STDOUT: }
  57. // CHECK:STDOUT:
  58. // CHECK:STDOUT: --- implicit.impl.carbon
  59. // CHECK:STDOUT:
  60. // CHECK:STDOUT: constants {
  61. // CHECK:STDOUT: %.1: type = const_type i32 [template]
  62. // CHECK:STDOUT: %.2: type = ptr_type const i32 [template]
  63. // CHECK:STDOUT: }
  64. // CHECK:STDOUT:
  65. // CHECK:STDOUT: file {
  66. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  67. // CHECK:STDOUT: .F = %import_ref.1
  68. // CHECK:STDOUT: .a_ref = %import_ref.2
  69. // CHECK:STDOUT: .a_ptr_ref = %import_ref.3
  70. // CHECK:STDOUT: .Core = %Core
  71. // CHECK:STDOUT: .a = %a
  72. // CHECK:STDOUT: .a_ptr = %a_ptr
  73. // CHECK:STDOUT: }
  74. // CHECK:STDOUT: %import_ref.1 = import_ref ir1, inst+5, unloaded
  75. // CHECK:STDOUT: %import_ref.2: ref const i32 = import_ref ir1, inst+8, loc_12
  76. // CHECK:STDOUT: %import_ref.3: ref const i32* = import_ref ir1, inst+16, loc_22
  77. // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
  78. // CHECK:STDOUT: %.loc6_8: type = const_type i32 [template = constants.%.1]
  79. // CHECK:STDOUT: %.loc6_17: type = ptr_type const i32 [template = constants.%.2]
  80. // CHECK:STDOUT: %a.var: ref const i32* = var a
  81. // CHECK:STDOUT: %a: ref const i32* = bind_name a, %a.var
  82. // CHECK:STDOUT: %.loc7_12: type = const_type i32 [template = constants.%.1]
  83. // CHECK:STDOUT: %.loc7_21: type = ptr_type const i32 [template = constants.%.2]
  84. // CHECK:STDOUT: %a_ptr.var: ref const i32* = var a_ptr
  85. // CHECK:STDOUT: %a_ptr: ref const i32* = bind_name a_ptr, %a_ptr.var
  86. // CHECK:STDOUT: }
  87. // CHECK:STDOUT:
  88. // CHECK:STDOUT: fn @__global_init() {
  89. // CHECK:STDOUT: !entry:
  90. // CHECK:STDOUT: %a_ref.ref: ref const i32 = name_ref a_ref, file.%import_ref.2
  91. // CHECK:STDOUT: %.loc6: const i32* = addr_of %a_ref.ref
  92. // CHECK:STDOUT: assign file.%a.var, %.loc6
  93. // CHECK:STDOUT: %a_ptr_ref.ref: ref const i32* = name_ref a_ptr_ref, file.%import_ref.3
  94. // CHECK:STDOUT: %.loc7: const i32* = bind_value %a_ptr_ref.ref
  95. // CHECK:STDOUT: assign file.%a_ptr.var, %.loc7
  96. // CHECK:STDOUT: return
  97. // CHECK:STDOUT: }
  98. // CHECK:STDOUT: