import.carbon 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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: .F = %F
  27. // CHECK:STDOUT: .a_ref = %a_ref
  28. // CHECK:STDOUT: .a_ptr_ref = %a_ptr_ref
  29. // CHECK:STDOUT: }
  30. // CHECK:STDOUT: %F: <function> = fn_decl @F [template] {
  31. // CHECK:STDOUT: %.loc4: type = const_type i32 [template = constants.%.1]
  32. // CHECK:STDOUT: %return.var: ref const i32 = var <return slot>
  33. // CHECK:STDOUT: }
  34. // CHECK:STDOUT: %.loc6: type = const_type i32 [template = constants.%.1]
  35. // CHECK:STDOUT: %a_ref.var: ref const i32 = var a_ref
  36. // CHECK:STDOUT: %a_ref: ref const i32 = bind_name a_ref, %a_ref.var
  37. // CHECK:STDOUT: %.loc7_16: type = const_type i32 [template = constants.%.1]
  38. // CHECK:STDOUT: %.loc7_25: type = ptr_type const i32 [template = constants.%.2]
  39. // CHECK:STDOUT: %a_ptr_ref.var: ref const i32* = var a_ptr_ref
  40. // CHECK:STDOUT: %a_ptr_ref: ref const i32* = bind_name a_ptr_ref, %a_ptr_ref.var
  41. // CHECK:STDOUT: }
  42. // CHECK:STDOUT:
  43. // CHECK:STDOUT: fn @F() -> const i32;
  44. // CHECK:STDOUT:
  45. // CHECK:STDOUT: fn @__global_init() {
  46. // CHECK:STDOUT: !entry:
  47. // CHECK:STDOUT: %F.ref: <function> = name_ref F, file.%F [template = file.%F]
  48. // CHECK:STDOUT: %.loc6: init const i32 = call %F.ref()
  49. // CHECK:STDOUT: assign file.%a_ref.var, %.loc6
  50. // CHECK:STDOUT: %a_ref.ref: ref const i32 = name_ref a_ref, file.%a_ref
  51. // CHECK:STDOUT: %.loc7: const i32* = addr_of %a_ref.ref
  52. // CHECK:STDOUT: assign file.%a_ptr_ref.var, %.loc7
  53. // CHECK:STDOUT: return
  54. // CHECK:STDOUT: }
  55. // CHECK:STDOUT:
  56. // CHECK:STDOUT: --- implicit.impl.carbon
  57. // CHECK:STDOUT:
  58. // CHECK:STDOUT: constants {
  59. // CHECK:STDOUT: %.1: type = const_type i32 [template]
  60. // CHECK:STDOUT: %.2: type = ptr_type const i32 [template]
  61. // CHECK:STDOUT: }
  62. // CHECK:STDOUT:
  63. // CHECK:STDOUT: file {
  64. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  65. // CHECK:STDOUT: .F = %import_ref.1
  66. // CHECK:STDOUT: .a_ref = %import_ref.2
  67. // CHECK:STDOUT: .a_ptr_ref = %import_ref.3
  68. // CHECK:STDOUT: .a = %a
  69. // CHECK:STDOUT: .a_ptr = %a_ptr
  70. // CHECK:STDOUT: }
  71. // CHECK:STDOUT: %import_ref.1 = import_ref ir1, inst+4, unused
  72. // CHECK:STDOUT: %import_ref.2: ref const i32 = import_ref ir1, inst+7, used
  73. // CHECK:STDOUT: %import_ref.3: ref const i32* = import_ref ir1, inst+15, used
  74. // CHECK:STDOUT: %.loc6_8: type = const_type i32 [template = constants.%.1]
  75. // CHECK:STDOUT: %.loc6_17: type = ptr_type const i32 [template = constants.%.2]
  76. // CHECK:STDOUT: %a.var: ref const i32* = var a
  77. // CHECK:STDOUT: %a: ref const i32* = bind_name a, %a.var
  78. // CHECK:STDOUT: %.loc7_12: type = const_type i32 [template = constants.%.1]
  79. // CHECK:STDOUT: %.loc7_21: type = ptr_type const i32 [template = constants.%.2]
  80. // CHECK:STDOUT: %a_ptr.var: ref const i32* = var a_ptr
  81. // CHECK:STDOUT: %a_ptr: ref const i32* = bind_name a_ptr, %a_ptr.var
  82. // CHECK:STDOUT: }
  83. // CHECK:STDOUT:
  84. // CHECK:STDOUT: fn @__global_init() {
  85. // CHECK:STDOUT: !entry:
  86. // CHECK:STDOUT: %a_ref.ref: ref const i32 = name_ref a_ref, file.%import_ref.2
  87. // CHECK:STDOUT: %.loc6: const i32* = addr_of %a_ref.ref
  88. // CHECK:STDOUT: assign file.%a.var, %.loc6
  89. // CHECK:STDOUT: %a_ptr_ref.ref: ref const i32* = name_ref a_ptr_ref, file.%import_ref.3
  90. // CHECK:STDOUT: %.loc7: const i32* = bind_value %a_ptr_ref.ref
  91. // CHECK:STDOUT: assign file.%a_ptr.var, %.loc7
  92. // CHECK:STDOUT: return
  93. // CHECK:STDOUT: }
  94. // CHECK:STDOUT: