address_of_lvalue.carbon 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  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/address_of_lvalue.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/pointer/address_of_lvalue.carbon
  10. fn F() {
  11. var s: {.a: i32, .b: i32} = {.a = 1, .b = 2};
  12. var p: {.a: i32, .b: i32}* = &s;
  13. var q: i32* = &s.a;
  14. var r: i32* = &s.b;
  15. var t: (i32, i32) = (1, 2);
  16. var t0: i32* = &t.0;
  17. var t1: i32* = &t.1;
  18. }
  19. // CHECK:STDOUT: --- address_of_lvalue.carbon
  20. // CHECK:STDOUT:
  21. // CHECK:STDOUT: constants {
  22. // CHECK:STDOUT: %F.type: type = fn_type @F [template]
  23. // CHECK:STDOUT: %F: %F.type = struct_value () [template]
  24. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template]
  25. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [template]
  26. // CHECK:STDOUT: %struct_type.a.b.501: type = struct_type {.a: %i32, .b: %i32} [template]
  27. // CHECK:STDOUT: %ptr.3ee: type = ptr_type %struct_type.a.b.501 [template]
  28. // CHECK:STDOUT: %int_1.5b8: Core.IntLiteral = int_value 1 [template]
  29. // CHECK:STDOUT: %int_2.ecc: Core.IntLiteral = int_value 2 [template]
  30. // CHECK:STDOUT: %struct_type.a.b.cfd: type = struct_type {.a: Core.IntLiteral, .b: Core.IntLiteral} [template]
  31. // CHECK:STDOUT: %ImplicitAs.type.205: type = facet_type <@ImplicitAs, @ImplicitAs(%i32)> [template]
  32. // CHECK:STDOUT: %Convert.type.1b6: type = fn_type @Convert.1, @ImplicitAs(%i32) [template]
  33. // CHECK:STDOUT: %impl_witness.d39: <witness> = impl_witness (imports.%Core.import_ref.a5b), @impl.1(%int_32) [template]
  34. // CHECK:STDOUT: %Convert.type.035: type = fn_type @Convert.2, @impl.1(%int_32) [template]
  35. // CHECK:STDOUT: %Convert.956: %Convert.type.035 = struct_value () [template]
  36. // CHECK:STDOUT: %ImplicitAs.facet: %ImplicitAs.type.205 = facet_value Core.IntLiteral, %impl_witness.d39 [template]
  37. // CHECK:STDOUT: %.a0b: type = fn_type_with_self_type %Convert.type.1b6, %ImplicitAs.facet [template]
  38. // CHECK:STDOUT: %Convert.bound.ab5: <bound method> = bound_method %int_1.5b8, %Convert.956 [template]
  39. // CHECK:STDOUT: %Convert.specific_fn.70c: <specific function> = specific_function %Convert.bound.ab5, @Convert.2(%int_32) [template]
  40. // CHECK:STDOUT: %int_1.5d2: %i32 = int_value 1 [template]
  41. // CHECK:STDOUT: %Convert.bound.ef9: <bound method> = bound_method %int_2.ecc, %Convert.956 [template]
  42. // CHECK:STDOUT: %Convert.specific_fn.787: <specific function> = specific_function %Convert.bound.ef9, @Convert.2(%int_32) [template]
  43. // CHECK:STDOUT: %int_2.ef8: %i32 = int_value 2 [template]
  44. // CHECK:STDOUT: %struct: %struct_type.a.b.501 = struct_value (%int_1.5d2, %int_2.ef8) [template]
  45. // CHECK:STDOUT: %ptr.235: type = ptr_type %i32 [template]
  46. // CHECK:STDOUT: %tuple.type.24b: type = tuple_type (type, type) [template]
  47. // CHECK:STDOUT: %tuple.type.d07: type = tuple_type (%i32, %i32) [template]
  48. // CHECK:STDOUT: %tuple.type.f94: type = tuple_type (Core.IntLiteral, Core.IntLiteral) [template]
  49. // CHECK:STDOUT: %tuple: %tuple.type.d07 = tuple_value (%int_1.5d2, %int_2.ef8) [template]
  50. // CHECK:STDOUT: %int_0: Core.IntLiteral = int_value 0 [template]
  51. // CHECK:STDOUT: }
  52. // CHECK:STDOUT:
  53. // CHECK:STDOUT: imports {
  54. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  55. // CHECK:STDOUT: .Int = %Core.Int
  56. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  57. // CHECK:STDOUT: import Core//prelude
  58. // CHECK:STDOUT: import Core//prelude/...
  59. // CHECK:STDOUT: }
  60. // CHECK:STDOUT: }
  61. // CHECK:STDOUT:
  62. // CHECK:STDOUT: file {
  63. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  64. // CHECK:STDOUT: .Core = imports.%Core
  65. // CHECK:STDOUT: .F = %F.decl
  66. // CHECK:STDOUT: }
  67. // CHECK:STDOUT: %Core.import = import Core
  68. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {} {}
  69. // CHECK:STDOUT: }
  70. // CHECK:STDOUT:
  71. // CHECK:STDOUT: fn @F() {
  72. // CHECK:STDOUT: !entry:
  73. // CHECK:STDOUT: name_binding_decl {
  74. // CHECK:STDOUT: %s.patt: %struct_type.a.b.501 = binding_pattern s
  75. // CHECK:STDOUT: %.loc12_3.1: %struct_type.a.b.501 = var_pattern %s.patt
  76. // CHECK:STDOUT: }
  77. // CHECK:STDOUT: %s.var: ref %struct_type.a.b.501 = var s
  78. // CHECK:STDOUT: %int_1.loc12: Core.IntLiteral = int_value 1 [template = constants.%int_1.5b8]
  79. // CHECK:STDOUT: %int_2.loc12: Core.IntLiteral = int_value 2 [template = constants.%int_2.ecc]
  80. // CHECK:STDOUT: %.loc12_46.1: %struct_type.a.b.cfd = struct_literal (%int_1.loc12, %int_2.loc12)
  81. // CHECK:STDOUT: %impl.elem0.loc12_46.1: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  82. // CHECK:STDOUT: %bound_method.loc12_46.1: <bound method> = bound_method %int_1.loc12, %impl.elem0.loc12_46.1 [template = constants.%Convert.bound.ab5]
  83. // CHECK:STDOUT: %specific_fn.loc12_46.1: <specific function> = specific_function %bound_method.loc12_46.1, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.70c]
  84. // CHECK:STDOUT: %int.convert_checked.loc12_46.1: init %i32 = call %specific_fn.loc12_46.1(%int_1.loc12) [template = constants.%int_1.5d2]
  85. // CHECK:STDOUT: %.loc12_46.2: init %i32 = converted %int_1.loc12, %int.convert_checked.loc12_46.1 [template = constants.%int_1.5d2]
  86. // CHECK:STDOUT: %.loc12_46.3: ref %i32 = struct_access %s.var, element0
  87. // CHECK:STDOUT: %.loc12_46.4: init %i32 = initialize_from %.loc12_46.2 to %.loc12_46.3 [template = constants.%int_1.5d2]
  88. // CHECK:STDOUT: %impl.elem0.loc12_46.2: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  89. // CHECK:STDOUT: %bound_method.loc12_46.2: <bound method> = bound_method %int_2.loc12, %impl.elem0.loc12_46.2 [template = constants.%Convert.bound.ef9]
  90. // CHECK:STDOUT: %specific_fn.loc12_46.2: <specific function> = specific_function %bound_method.loc12_46.2, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.787]
  91. // CHECK:STDOUT: %int.convert_checked.loc12_46.2: init %i32 = call %specific_fn.loc12_46.2(%int_2.loc12) [template = constants.%int_2.ef8]
  92. // CHECK:STDOUT: %.loc12_46.5: init %i32 = converted %int_2.loc12, %int.convert_checked.loc12_46.2 [template = constants.%int_2.ef8]
  93. // CHECK:STDOUT: %.loc12_46.6: ref %i32 = struct_access %s.var, element1
  94. // CHECK:STDOUT: %.loc12_46.7: init %i32 = initialize_from %.loc12_46.5 to %.loc12_46.6 [template = constants.%int_2.ef8]
  95. // CHECK:STDOUT: %.loc12_46.8: init %struct_type.a.b.501 = struct_init (%.loc12_46.4, %.loc12_46.7) to %s.var [template = constants.%struct]
  96. // CHECK:STDOUT: %.loc12_3.2: init %struct_type.a.b.501 = converted %.loc12_46.1, %.loc12_46.8 [template = constants.%struct]
  97. // CHECK:STDOUT: assign %s.var, %.loc12_3.2
  98. // CHECK:STDOUT: %.loc12_27: type = splice_block %struct_type.a.b.loc12 [template = constants.%struct_type.a.b.501] {
  99. // CHECK:STDOUT: %int_32.loc12_15: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  100. // CHECK:STDOUT: %i32.loc12_15: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  101. // CHECK:STDOUT: %int_32.loc12_24: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  102. // CHECK:STDOUT: %i32.loc12_24: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  103. // CHECK:STDOUT: %struct_type.a.b.loc12: type = struct_type {.a: %i32, .b: %i32} [template = constants.%struct_type.a.b.501]
  104. // CHECK:STDOUT: }
  105. // CHECK:STDOUT: %s: ref %struct_type.a.b.501 = bind_name s, %s.var
  106. // CHECK:STDOUT: name_binding_decl {
  107. // CHECK:STDOUT: %p.patt: %ptr.3ee = binding_pattern p
  108. // CHECK:STDOUT: %.loc14_3: %ptr.3ee = var_pattern %p.patt
  109. // CHECK:STDOUT: }
  110. // CHECK:STDOUT: %p.var: ref %ptr.3ee = var p
  111. // CHECK:STDOUT: %s.ref.loc14: ref %struct_type.a.b.501 = name_ref s, %s
  112. // CHECK:STDOUT: %addr.loc14: %ptr.3ee = addr_of %s.ref.loc14
  113. // CHECK:STDOUT: assign %p.var, %addr.loc14
  114. // CHECK:STDOUT: %.loc14_28: type = splice_block %ptr.loc14 [template = constants.%ptr.3ee] {
  115. // CHECK:STDOUT: %int_32.loc14_15: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  116. // CHECK:STDOUT: %i32.loc14_15: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  117. // CHECK:STDOUT: %int_32.loc14_24: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  118. // CHECK:STDOUT: %i32.loc14_24: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  119. // CHECK:STDOUT: %struct_type.a.b.loc14: type = struct_type {.a: %i32, .b: %i32} [template = constants.%struct_type.a.b.501]
  120. // CHECK:STDOUT: %ptr.loc14: type = ptr_type %struct_type.a.b.501 [template = constants.%ptr.3ee]
  121. // CHECK:STDOUT: }
  122. // CHECK:STDOUT: %p: ref %ptr.3ee = bind_name p, %p.var
  123. // CHECK:STDOUT: name_binding_decl {
  124. // CHECK:STDOUT: %q.patt: %ptr.235 = binding_pattern q
  125. // CHECK:STDOUT: %.loc15_3: %ptr.235 = var_pattern %q.patt
  126. // CHECK:STDOUT: }
  127. // CHECK:STDOUT: %q.var: ref %ptr.235 = var q
  128. // CHECK:STDOUT: %s.ref.loc15: ref %struct_type.a.b.501 = name_ref s, %s
  129. // CHECK:STDOUT: %.loc15_19: ref %i32 = struct_access %s.ref.loc15, element0
  130. // CHECK:STDOUT: %addr.loc15: %ptr.235 = addr_of %.loc15_19
  131. // CHECK:STDOUT: assign %q.var, %addr.loc15
  132. // CHECK:STDOUT: %.loc15_13: type = splice_block %ptr.loc15 [template = constants.%ptr.235] {
  133. // CHECK:STDOUT: %int_32.loc15: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  134. // CHECK:STDOUT: %i32.loc15: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  135. // CHECK:STDOUT: %ptr.loc15: type = ptr_type %i32 [template = constants.%ptr.235]
  136. // CHECK:STDOUT: }
  137. // CHECK:STDOUT: %q: ref %ptr.235 = bind_name q, %q.var
  138. // CHECK:STDOUT: name_binding_decl {
  139. // CHECK:STDOUT: %r.patt: %ptr.235 = binding_pattern r
  140. // CHECK:STDOUT: %.loc16_3: %ptr.235 = var_pattern %r.patt
  141. // CHECK:STDOUT: }
  142. // CHECK:STDOUT: %r.var: ref %ptr.235 = var r
  143. // CHECK:STDOUT: %s.ref.loc16: ref %struct_type.a.b.501 = name_ref s, %s
  144. // CHECK:STDOUT: %.loc16_19: ref %i32 = struct_access %s.ref.loc16, element1
  145. // CHECK:STDOUT: %addr.loc16: %ptr.235 = addr_of %.loc16_19
  146. // CHECK:STDOUT: assign %r.var, %addr.loc16
  147. // CHECK:STDOUT: %.loc16_13: type = splice_block %ptr.loc16 [template = constants.%ptr.235] {
  148. // CHECK:STDOUT: %int_32.loc16: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  149. // CHECK:STDOUT: %i32.loc16: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  150. // CHECK:STDOUT: %ptr.loc16: type = ptr_type %i32 [template = constants.%ptr.235]
  151. // CHECK:STDOUT: }
  152. // CHECK:STDOUT: %r: ref %ptr.235 = bind_name r, %r.var
  153. // CHECK:STDOUT: name_binding_decl {
  154. // CHECK:STDOUT: %t.patt: %tuple.type.d07 = binding_pattern t
  155. // CHECK:STDOUT: %.loc18_3.1: %tuple.type.d07 = var_pattern %t.patt
  156. // CHECK:STDOUT: }
  157. // CHECK:STDOUT: %t.var: ref %tuple.type.d07 = var t
  158. // CHECK:STDOUT: %int_1.loc18: Core.IntLiteral = int_value 1 [template = constants.%int_1.5b8]
  159. // CHECK:STDOUT: %int_2.loc18: Core.IntLiteral = int_value 2 [template = constants.%int_2.ecc]
  160. // CHECK:STDOUT: %.loc18_28.1: %tuple.type.f94 = tuple_literal (%int_1.loc18, %int_2.loc18)
  161. // CHECK:STDOUT: %impl.elem0.loc18_28.1: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  162. // CHECK:STDOUT: %bound_method.loc18_28.1: <bound method> = bound_method %int_1.loc18, %impl.elem0.loc18_28.1 [template = constants.%Convert.bound.ab5]
  163. // CHECK:STDOUT: %specific_fn.loc18_28.1: <specific function> = specific_function %bound_method.loc18_28.1, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.70c]
  164. // CHECK:STDOUT: %int.convert_checked.loc18_28.1: init %i32 = call %specific_fn.loc18_28.1(%int_1.loc18) [template = constants.%int_1.5d2]
  165. // CHECK:STDOUT: %.loc18_28.2: init %i32 = converted %int_1.loc18, %int.convert_checked.loc18_28.1 [template = constants.%int_1.5d2]
  166. // CHECK:STDOUT: %tuple.elem0.loc18: ref %i32 = tuple_access %t.var, element0
  167. // CHECK:STDOUT: %.loc18_28.3: init %i32 = initialize_from %.loc18_28.2 to %tuple.elem0.loc18 [template = constants.%int_1.5d2]
  168. // CHECK:STDOUT: %impl.elem0.loc18_28.2: %.a0b = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  169. // CHECK:STDOUT: %bound_method.loc18_28.2: <bound method> = bound_method %int_2.loc18, %impl.elem0.loc18_28.2 [template = constants.%Convert.bound.ef9]
  170. // CHECK:STDOUT: %specific_fn.loc18_28.2: <specific function> = specific_function %bound_method.loc18_28.2, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn.787]
  171. // CHECK:STDOUT: %int.convert_checked.loc18_28.2: init %i32 = call %specific_fn.loc18_28.2(%int_2.loc18) [template = constants.%int_2.ef8]
  172. // CHECK:STDOUT: %.loc18_28.4: init %i32 = converted %int_2.loc18, %int.convert_checked.loc18_28.2 [template = constants.%int_2.ef8]
  173. // CHECK:STDOUT: %tuple.elem1.loc18: ref %i32 = tuple_access %t.var, element1
  174. // CHECK:STDOUT: %.loc18_28.5: init %i32 = initialize_from %.loc18_28.4 to %tuple.elem1.loc18 [template = constants.%int_2.ef8]
  175. // CHECK:STDOUT: %.loc18_28.6: init %tuple.type.d07 = tuple_init (%.loc18_28.3, %.loc18_28.5) to %t.var [template = constants.%tuple]
  176. // CHECK:STDOUT: %.loc18_3.2: init %tuple.type.d07 = converted %.loc18_28.1, %.loc18_28.6 [template = constants.%tuple]
  177. // CHECK:STDOUT: assign %t.var, %.loc18_3.2
  178. // CHECK:STDOUT: %.loc18_19.1: type = splice_block %.loc18_19.3 [template = constants.%tuple.type.d07] {
  179. // CHECK:STDOUT: %int_32.loc18_11: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  180. // CHECK:STDOUT: %i32.loc18_11: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  181. // CHECK:STDOUT: %int_32.loc18_16: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  182. // CHECK:STDOUT: %i32.loc18_16: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  183. // CHECK:STDOUT: %.loc18_19.2: %tuple.type.24b = tuple_literal (%i32.loc18_11, %i32.loc18_16)
  184. // CHECK:STDOUT: %.loc18_19.3: type = converted %.loc18_19.2, constants.%tuple.type.d07 [template = constants.%tuple.type.d07]
  185. // CHECK:STDOUT: }
  186. // CHECK:STDOUT: %t: ref %tuple.type.d07 = bind_name t, %t.var
  187. // CHECK:STDOUT: name_binding_decl {
  188. // CHECK:STDOUT: %t0.patt: %ptr.235 = binding_pattern t0
  189. // CHECK:STDOUT: %.loc19_3: %ptr.235 = var_pattern %t0.patt
  190. // CHECK:STDOUT: }
  191. // CHECK:STDOUT: %t0.var: ref %ptr.235 = var t0
  192. // CHECK:STDOUT: %t.ref.loc19: ref %tuple.type.d07 = name_ref t, %t
  193. // CHECK:STDOUT: %int_0: Core.IntLiteral = int_value 0 [template = constants.%int_0]
  194. // CHECK:STDOUT: %tuple.elem0.loc19: ref %i32 = tuple_access %t.ref.loc19, element0
  195. // CHECK:STDOUT: %addr.loc19: %ptr.235 = addr_of %tuple.elem0.loc19
  196. // CHECK:STDOUT: assign %t0.var, %addr.loc19
  197. // CHECK:STDOUT: %.loc19_14: type = splice_block %ptr.loc19 [template = constants.%ptr.235] {
  198. // CHECK:STDOUT: %int_32.loc19: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  199. // CHECK:STDOUT: %i32.loc19: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  200. // CHECK:STDOUT: %ptr.loc19: type = ptr_type %i32 [template = constants.%ptr.235]
  201. // CHECK:STDOUT: }
  202. // CHECK:STDOUT: %t0: ref %ptr.235 = bind_name t0, %t0.var
  203. // CHECK:STDOUT: name_binding_decl {
  204. // CHECK:STDOUT: %t1.patt: %ptr.235 = binding_pattern t1
  205. // CHECK:STDOUT: %.loc20_3: %ptr.235 = var_pattern %t1.patt
  206. // CHECK:STDOUT: }
  207. // CHECK:STDOUT: %t1.var: ref %ptr.235 = var t1
  208. // CHECK:STDOUT: %t.ref.loc20: ref %tuple.type.d07 = name_ref t, %t
  209. // CHECK:STDOUT: %int_1.loc20: Core.IntLiteral = int_value 1 [template = constants.%int_1.5b8]
  210. // CHECK:STDOUT: %tuple.elem1.loc20: ref %i32 = tuple_access %t.ref.loc20, element1
  211. // CHECK:STDOUT: %addr.loc20: %ptr.235 = addr_of %tuple.elem1.loc20
  212. // CHECK:STDOUT: assign %t1.var, %addr.loc20
  213. // CHECK:STDOUT: %.loc20_14: type = splice_block %ptr.loc20 [template = constants.%ptr.235] {
  214. // CHECK:STDOUT: %int_32.loc20: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  215. // CHECK:STDOUT: %i32.loc20: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  216. // CHECK:STDOUT: %ptr.loc20: type = ptr_type %i32 [template = constants.%ptr.235]
  217. // CHECK:STDOUT: }
  218. // CHECK:STDOUT: %t1: ref %ptr.235 = bind_name t1, %t1.var
  219. // CHECK:STDOUT: return
  220. // CHECK:STDOUT: }
  221. // CHECK:STDOUT: