method.carbon 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558
  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. // INCLUDE-FILE: toolchain/testing/testdata/min_prelude/int.carbon
  6. // EXTRA-ARGS: --clang-arg=-std=c++23
  7. //
  8. // AUTOUPDATE
  9. // TIP: To test this file alone, run:
  10. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/interop/cpp/class/method.carbon
  11. // TIP: To dump output, run:
  12. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/interop/cpp/class/method.carbon
  13. // --- object_param_qualifiers.h
  14. struct HasQualifiers {
  15. void plain();
  16. void const_this() const;
  17. void volatile_this() volatile;
  18. void ref_this() &;
  19. void const_ref_this() const&;
  20. void ref_ref_this() &&;
  21. void const_ref_ref_this() const&&;
  22. };
  23. // --- use_object_param_qualifiers.carbon
  24. library "[[@TEST_NAME]]";
  25. import Cpp library "object_param_qualifiers.h";
  26. fn F(v: Cpp.HasQualifiers, p: Cpp.HasQualifiers*) {
  27. //@dump-sem-ir-begin
  28. v.const_this();
  29. v.const_ref_this();
  30. p->plain();
  31. p->ref_this();
  32. p->const_this();
  33. p->const_ref_this();
  34. //@dump-sem-ir-end
  35. }
  36. // --- fail_bad_object_param_qualifiers_by_value.carbon
  37. library "[[@TEST_NAME]]";
  38. import Cpp library "object_param_qualifiers.h";
  39. fn Value(v: Cpp.HasQualifiers) {
  40. // CHECK:STDERR: fail_bad_object_param_qualifiers_by_value.carbon:[[@LINE+5]]:3: error: `addr self` method cannot be invoked on a value [AddrSelfIsNonRef]
  41. // CHECK:STDERR: v.plain();
  42. // CHECK:STDERR: ^
  43. // CHECK:STDERR: fail_bad_object_param_qualifiers_by_value.carbon: note: initializing function parameter [InCallToFunctionParam]
  44. // CHECK:STDERR:
  45. v.plain();
  46. // TODO: This should remain invalid once we support `volatile`.
  47. // CHECK:STDERR: fail_bad_object_param_qualifiers_by_value.carbon:[[@LINE+7]]:3: error: semantics TODO: `Unsupported: object parameter type: volatile struct HasQualifiers` [SemanticsTodo]
  48. // CHECK:STDERR: v.volatile_this();
  49. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~
  50. // CHECK:STDERR: fail_bad_object_param_qualifiers_by_value.carbon:[[@LINE+4]]:3: note: in call to Cpp function here [InCallToCppFunction]
  51. // CHECK:STDERR: v.volatile_this();
  52. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~
  53. // CHECK:STDERR:
  54. v.volatile_this();
  55. // CHECK:STDERR: fail_bad_object_param_qualifiers_by_value.carbon:[[@LINE+7]]:3: error: no matching function for call to `ref_this` [CppOverloadingNoViableFunctionFound]
  56. // CHECK:STDERR: v.ref_this();
  57. // CHECK:STDERR: ^~~~~~~~~~~~
  58. // CHECK:STDERR: fail_bad_object_param_qualifiers_by_value.carbon:[[@LINE+4]]:3: note: in call to Cpp function here [InCallToCppFunction]
  59. // CHECK:STDERR: v.ref_this();
  60. // CHECK:STDERR: ^~~~~~~~~~~~
  61. // CHECK:STDERR:
  62. v.ref_this();
  63. // CHECK:STDERR: fail_bad_object_param_qualifiers_by_value.carbon:[[@LINE+7]]:3: error: semantics TODO: `Unsupported: object parameter type: struct HasQualifiers &&` [SemanticsTodo]
  64. // CHECK:STDERR: v.ref_ref_this();
  65. // CHECK:STDERR: ^~~~~~~~~~~~~~~~
  66. // CHECK:STDERR: fail_bad_object_param_qualifiers_by_value.carbon:[[@LINE+4]]:3: note: in call to Cpp function here [InCallToCppFunction]
  67. // CHECK:STDERR: v.ref_ref_this();
  68. // CHECK:STDERR: ^~~~~~~~~~~~~~~~
  69. // CHECK:STDERR:
  70. v.ref_ref_this();
  71. // CHECK:STDERR: fail_bad_object_param_qualifiers_by_value.carbon:[[@LINE+7]]:3: error: semantics TODO: `Unsupported: object parameter type: const struct HasQualifiers &&` [SemanticsTodo]
  72. // CHECK:STDERR: v.const_ref_ref_this();
  73. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~
  74. // CHECK:STDERR: fail_bad_object_param_qualifiers_by_value.carbon:[[@LINE+4]]:3: note: in call to Cpp function here [InCallToCppFunction]
  75. // CHECK:STDERR: v.const_ref_ref_this();
  76. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~
  77. // CHECK:STDERR:
  78. v.const_ref_ref_this();
  79. }
  80. // --- fail_todo_bad_object_param_qualifiers_by_ref.carbon
  81. library "[[@TEST_NAME]]";
  82. import Cpp library "object_param_qualifiers.h";
  83. fn Ref(p: Cpp.HasQualifiers*) {
  84. // TODO: This should eventually be accepted if we support `volatile`.
  85. // CHECK:STDERR: fail_todo_bad_object_param_qualifiers_by_ref.carbon:[[@LINE+7]]:3: error: semantics TODO: `Unsupported: object parameter type: volatile struct HasQualifiers` [SemanticsTodo]
  86. // CHECK:STDERR: p->volatile_this();
  87. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~
  88. // CHECK:STDERR: fail_todo_bad_object_param_qualifiers_by_ref.carbon:[[@LINE+4]]:3: note: in call to Cpp function here [InCallToCppFunction]
  89. // CHECK:STDERR: p->volatile_this();
  90. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~
  91. // CHECK:STDERR:
  92. p->volatile_this();
  93. }
  94. // --- fail_bad_object_param_qualifiers_ref_ref.carbon
  95. library "[[@TEST_NAME]]";
  96. import Cpp library "object_param_qualifiers.h";
  97. fn Ref(p: Cpp.HasQualifiers*) {
  98. // CHECK:STDERR: fail_bad_object_param_qualifiers_ref_ref.carbon:[[@LINE+7]]:3: error: no matching function for call to `ref_ref_this` [CppOverloadingNoViableFunctionFound]
  99. // CHECK:STDERR: p->ref_ref_this();
  100. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~
  101. // CHECK:STDERR: fail_bad_object_param_qualifiers_ref_ref.carbon:[[@LINE+4]]:3: note: in call to Cpp function here [InCallToCppFunction]
  102. // CHECK:STDERR: p->ref_ref_this();
  103. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~
  104. // CHECK:STDERR:
  105. p->ref_ref_this();
  106. // CHECK:STDERR: fail_bad_object_param_qualifiers_ref_ref.carbon:[[@LINE+7]]:3: error: no matching function for call to `const_ref_ref_this` [CppOverloadingNoViableFunctionFound]
  107. // CHECK:STDERR: p->const_ref_ref_this();
  108. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~
  109. // CHECK:STDERR: fail_bad_object_param_qualifiers_ref_ref.carbon:[[@LINE+4]]:3: note: in call to Cpp function here [InCallToCppFunction]
  110. // CHECK:STDERR: p->const_ref_ref_this();
  111. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~
  112. // CHECK:STDERR:
  113. p->const_ref_ref_this();
  114. }
  115. // --- object_param_qualifiers_overloaded.h
  116. struct HasQualifiers {
  117. int* _Nonnull F() &;
  118. int F() const &;
  119. void F() volatile &;
  120. };
  121. // --- use_object_param_qualifiers_overloaded.carbon
  122. library "[[@TEST_NAME]]";
  123. import Cpp library "object_param_qualifiers_overloaded.h";
  124. fn CallF(v: Cpp.HasQualifiers, p: Cpp.HasQualifiers*) {
  125. //@dump-sem-ir-begin
  126. var a: i32 = v.F();
  127. var b: i32* = p->F();
  128. //@dump-sem-ir-end
  129. }
  130. // --- explicit_object_param.h
  131. struct Another {
  132. };
  133. struct ExplicitObjectParam {
  134. void F(this ExplicitObjectParam);
  135. void G(this int);
  136. void H(this Another);
  137. };
  138. // --- call_explicit_object_param.carbon
  139. library "[[@TEST_NAME]]";
  140. import Cpp library "explicit_object_param.h";
  141. fn Call(e: Cpp.ExplicitObjectParam, n: i32, a: Cpp.Another) {
  142. //@dump-sem-ir-begin
  143. e.F();
  144. n.(Cpp.ExplicitObjectParam.G)();
  145. a.(Cpp.ExplicitObjectParam.H)();
  146. //@dump-sem-ir-end
  147. }
  148. // --- explicit_object_param_overloaded.h
  149. struct Another {
  150. };
  151. struct ExplicitObjectParam {
  152. void F(this ExplicitObjectParam);
  153. void F(this int);
  154. void F(this Another);
  155. };
  156. // --- call_explicit_object_param_overloaded.carbon
  157. library "[[@TEST_NAME]]";
  158. import Cpp library "explicit_object_param_overloaded.h";
  159. fn Call(e: Cpp.ExplicitObjectParam, n: i32, a: Cpp.Another) {
  160. //@dump-sem-ir-begin
  161. e.F();
  162. n.(Cpp.ExplicitObjectParam.F)();
  163. a.(Cpp.ExplicitObjectParam.F)();
  164. //@dump-sem-ir-end
  165. }
  166. // CHECK:STDOUT: --- use_object_param_qualifiers.carbon
  167. // CHECK:STDOUT:
  168. // CHECK:STDOUT: constants {
  169. // CHECK:STDOUT: %HasQualifiers: type = class_type @HasQualifiers [concrete]
  170. // CHECK:STDOUT: %ptr.ec3: type = ptr_type %HasQualifiers [concrete]
  171. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  172. // CHECK:STDOUT: %.602: type = cpp_overload_set_type @const_ref_this__carbon_thunk [concrete]
  173. // CHECK:STDOUT: %empty_struct.63b: %.602 = struct_value () [concrete]
  174. // CHECK:STDOUT: %const: type = const_type %HasQualifiers [concrete]
  175. // CHECK:STDOUT: %ptr.2cb: type = ptr_type %const [concrete]
  176. // CHECK:STDOUT: %const_this__carbon_thunk.type: type = fn_type @const_this__carbon_thunk [concrete]
  177. // CHECK:STDOUT: %const_this__carbon_thunk: %const_this__carbon_thunk.type = struct_value () [concrete]
  178. // CHECK:STDOUT: %.bf0: type = cpp_overload_set_type @HasQualifiers.plain [concrete]
  179. // CHECK:STDOUT: %empty_struct.4f2: %.bf0 = struct_value () [concrete]
  180. // CHECK:STDOUT: %const_ref_this__carbon_thunk.type: type = fn_type @const_ref_this__carbon_thunk [concrete]
  181. // CHECK:STDOUT: %const_ref_this__carbon_thunk: %const_ref_this__carbon_thunk.type = struct_value () [concrete]
  182. // CHECK:STDOUT: %.64b: type = cpp_overload_set_type @HasQualifiers.ref_this [concrete]
  183. // CHECK:STDOUT: %empty_struct.a83: %.64b = struct_value () [concrete]
  184. // CHECK:STDOUT: %HasQualifiers.plain.type: type = fn_type @HasQualifiers.plain [concrete]
  185. // CHECK:STDOUT: %HasQualifiers.plain: %HasQualifiers.plain.type = struct_value () [concrete]
  186. // CHECK:STDOUT: %.352: type = cpp_overload_set_type @<null name> [concrete]
  187. // CHECK:STDOUT: %empty_struct.f58: %.352 = struct_value () [concrete]
  188. // CHECK:STDOUT: %HasQualifiers.ref_this.type: type = fn_type @HasQualifiers.ref_this [concrete]
  189. // CHECK:STDOUT: %HasQualifiers.ref_this: %HasQualifiers.ref_this.type = struct_value () [concrete]
  190. // CHECK:STDOUT: }
  191. // CHECK:STDOUT:
  192. // CHECK:STDOUT: imports {
  193. // CHECK:STDOUT: %.ce8: %.602 = cpp_overload_set_value @const_ref_this__carbon_thunk [concrete = constants.%empty_struct.63b]
  194. // CHECK:STDOUT: %const_this__carbon_thunk.decl: %const_this__carbon_thunk.type = fn_decl @const_this__carbon_thunk [concrete = constants.%const_this__carbon_thunk] {
  195. // CHECK:STDOUT: <elided>
  196. // CHECK:STDOUT: } {
  197. // CHECK:STDOUT: <elided>
  198. // CHECK:STDOUT: }
  199. // CHECK:STDOUT: %.667: %.bf0 = cpp_overload_set_value @HasQualifiers.plain [concrete = constants.%empty_struct.4f2]
  200. // CHECK:STDOUT: %const_ref_this__carbon_thunk.decl: %const_ref_this__carbon_thunk.type = fn_decl @const_ref_this__carbon_thunk [concrete = constants.%const_ref_this__carbon_thunk] {
  201. // CHECK:STDOUT: <elided>
  202. // CHECK:STDOUT: } {
  203. // CHECK:STDOUT: <elided>
  204. // CHECK:STDOUT: }
  205. // CHECK:STDOUT: %.646: %.64b = cpp_overload_set_value @HasQualifiers.ref_this [concrete = constants.%empty_struct.a83]
  206. // CHECK:STDOUT: %HasQualifiers.plain.decl: %HasQualifiers.plain.type = fn_decl @HasQualifiers.plain [concrete = constants.%HasQualifiers.plain] {
  207. // CHECK:STDOUT: <elided>
  208. // CHECK:STDOUT: } {
  209. // CHECK:STDOUT: <elided>
  210. // CHECK:STDOUT: }
  211. // CHECK:STDOUT: %.145: %.352 = cpp_overload_set_value @<null name> [concrete = constants.%empty_struct.f58]
  212. // CHECK:STDOUT: %HasQualifiers.ref_this.decl: %HasQualifiers.ref_this.type = fn_decl @HasQualifiers.ref_this [concrete = constants.%HasQualifiers.ref_this] {
  213. // CHECK:STDOUT: <elided>
  214. // CHECK:STDOUT: } {
  215. // CHECK:STDOUT: <elided>
  216. // CHECK:STDOUT: }
  217. // CHECK:STDOUT: }
  218. // CHECK:STDOUT:
  219. // CHECK:STDOUT: fn @F(%v.param: %HasQualifiers, %p.param: %ptr.ec3) {
  220. // CHECK:STDOUT: !entry:
  221. // CHECK:STDOUT: %v.ref.loc8: %HasQualifiers = name_ref v, %v
  222. // CHECK:STDOUT: %const_this.ref.loc8: %.602 = name_ref const_this, imports.%.ce8 [concrete = constants.%empty_struct.63b]
  223. // CHECK:STDOUT: %bound_method.loc8: <bound method> = bound_method %v.ref.loc8, %const_this.ref.loc8
  224. // CHECK:STDOUT: %.loc8_3: ref %HasQualifiers = value_as_ref %v.ref.loc8
  225. // CHECK:STDOUT: %addr.loc8: %ptr.ec3 = addr_of %.loc8_3
  226. // CHECK:STDOUT: %.loc8_16.1: %ptr.2cb = as_compatible %addr.loc8
  227. // CHECK:STDOUT: %.loc8_16.2: %ptr.2cb = converted %addr.loc8, %.loc8_16.1
  228. // CHECK:STDOUT: %const_this__carbon_thunk.call.loc8: init %empty_tuple.type = call imports.%const_this__carbon_thunk.decl(%.loc8_16.2)
  229. // CHECK:STDOUT: %v.ref.loc9: %HasQualifiers = name_ref v, %v
  230. // CHECK:STDOUT: %const_ref_this.ref.loc9: %.bf0 = name_ref const_ref_this, imports.%.667 [concrete = constants.%empty_struct.4f2]
  231. // CHECK:STDOUT: %bound_method.loc9: <bound method> = bound_method %v.ref.loc9, %const_ref_this.ref.loc9
  232. // CHECK:STDOUT: %.loc9_3: ref %HasQualifiers = value_as_ref %v.ref.loc9
  233. // CHECK:STDOUT: %addr.loc9: %ptr.ec3 = addr_of %.loc9_3
  234. // CHECK:STDOUT: %.loc9_20.1: %ptr.2cb = as_compatible %addr.loc9
  235. // CHECK:STDOUT: %.loc9_20.2: %ptr.2cb = converted %addr.loc9, %.loc9_20.1
  236. // CHECK:STDOUT: %const_ref_this__carbon_thunk.call.loc9: init %empty_tuple.type = call imports.%const_ref_this__carbon_thunk.decl(%.loc9_20.2)
  237. // CHECK:STDOUT: %p.ref.loc11: %ptr.ec3 = name_ref p, %p
  238. // CHECK:STDOUT: %.loc11: ref %HasQualifiers = deref %p.ref.loc11
  239. // CHECK:STDOUT: %plain.ref: %.64b = name_ref plain, imports.%.646 [concrete = constants.%empty_struct.a83]
  240. // CHECK:STDOUT: %bound_method.loc11: <bound method> = bound_method %.loc11, %plain.ref
  241. // CHECK:STDOUT: %addr.loc11: %ptr.ec3 = addr_of %.loc11
  242. // CHECK:STDOUT: %HasQualifiers.plain.call: init %empty_tuple.type = call imports.%HasQualifiers.plain.decl(%addr.loc11)
  243. // CHECK:STDOUT: %p.ref.loc12: %ptr.ec3 = name_ref p, %p
  244. // CHECK:STDOUT: %.loc12: ref %HasQualifiers = deref %p.ref.loc12
  245. // CHECK:STDOUT: %ref_this.ref: %.352 = name_ref ref_this, imports.%.145 [concrete = constants.%empty_struct.f58]
  246. // CHECK:STDOUT: %bound_method.loc12: <bound method> = bound_method %.loc12, %ref_this.ref
  247. // CHECK:STDOUT: %addr.loc12: %ptr.ec3 = addr_of %.loc12
  248. // CHECK:STDOUT: %HasQualifiers.ref_this.call: init %empty_tuple.type = call imports.%HasQualifiers.ref_this.decl(%addr.loc12)
  249. // CHECK:STDOUT: %p.ref.loc13: %ptr.ec3 = name_ref p, %p
  250. // CHECK:STDOUT: %.loc13_4.1: ref %HasQualifiers = deref %p.ref.loc13
  251. // CHECK:STDOUT: %const_this.ref.loc13: %.602 = name_ref const_this, imports.%.ce8 [concrete = constants.%empty_struct.63b]
  252. // CHECK:STDOUT: %bound_method.loc13: <bound method> = bound_method %.loc13_4.1, %const_this.ref.loc13
  253. // CHECK:STDOUT: %.loc13_4.2: %HasQualifiers = bind_value %.loc13_4.1
  254. // CHECK:STDOUT: %.loc13_4.3: ref %HasQualifiers = value_as_ref %.loc13_4.2
  255. // CHECK:STDOUT: %addr.loc13: %ptr.ec3 = addr_of %.loc13_4.3
  256. // CHECK:STDOUT: %.loc13_17.1: %ptr.2cb = as_compatible %addr.loc13
  257. // CHECK:STDOUT: %.loc13_17.2: %ptr.2cb = converted %addr.loc13, %.loc13_17.1
  258. // CHECK:STDOUT: %const_this__carbon_thunk.call.loc13: init %empty_tuple.type = call imports.%const_this__carbon_thunk.decl(%.loc13_17.2)
  259. // CHECK:STDOUT: %p.ref.loc14: %ptr.ec3 = name_ref p, %p
  260. // CHECK:STDOUT: %.loc14_4.1: ref %HasQualifiers = deref %p.ref.loc14
  261. // CHECK:STDOUT: %const_ref_this.ref.loc14: %.bf0 = name_ref const_ref_this, imports.%.667 [concrete = constants.%empty_struct.4f2]
  262. // CHECK:STDOUT: %bound_method.loc14: <bound method> = bound_method %.loc14_4.1, %const_ref_this.ref.loc14
  263. // CHECK:STDOUT: %.loc14_4.2: %HasQualifiers = bind_value %.loc14_4.1
  264. // CHECK:STDOUT: %.loc14_4.3: ref %HasQualifiers = value_as_ref %.loc14_4.2
  265. // CHECK:STDOUT: %addr.loc14: %ptr.ec3 = addr_of %.loc14_4.3
  266. // CHECK:STDOUT: %.loc14_21.1: %ptr.2cb = as_compatible %addr.loc14
  267. // CHECK:STDOUT: %.loc14_21.2: %ptr.2cb = converted %addr.loc14, %.loc14_21.1
  268. // CHECK:STDOUT: %const_ref_this__carbon_thunk.call.loc14: init %empty_tuple.type = call imports.%const_ref_this__carbon_thunk.decl(%.loc14_21.2)
  269. // CHECK:STDOUT: <elided>
  270. // CHECK:STDOUT: }
  271. // CHECK:STDOUT:
  272. // CHECK:STDOUT: --- use_object_param_qualifiers_overloaded.carbon
  273. // CHECK:STDOUT:
  274. // CHECK:STDOUT: constants {
  275. // CHECK:STDOUT: %HasQualifiers: type = class_type @HasQualifiers [concrete]
  276. // CHECK:STDOUT: %ptr.ec3: type = ptr_type %HasQualifiers [concrete]
  277. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  278. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  279. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  280. // CHECK:STDOUT: %pattern_type.7ce: type = pattern_type %i32 [concrete]
  281. // CHECK:STDOUT: %.4ab: type = cpp_overload_set_type @HasQualifiers.F.1 [concrete]
  282. // CHECK:STDOUT: %empty_struct: %.4ab = struct_value () [concrete]
  283. // CHECK:STDOUT: %const: type = const_type %HasQualifiers [concrete]
  284. // CHECK:STDOUT: %ptr.2cb: type = ptr_type %const [concrete]
  285. // CHECK:STDOUT: %F__carbon_thunk.type: type = fn_type @F__carbon_thunk [concrete]
  286. // CHECK:STDOUT: %F__carbon_thunk: %F__carbon_thunk.type = struct_value () [concrete]
  287. // CHECK:STDOUT: %ptr.235: type = ptr_type %i32 [concrete]
  288. // CHECK:STDOUT: %pattern_type.fe8: type = pattern_type %ptr.235 [concrete]
  289. // CHECK:STDOUT: %HasQualifiers.F.type.d208f0.2: type = fn_type @HasQualifiers.F.2 [concrete]
  290. // CHECK:STDOUT: %HasQualifiers.F.efd4e4.2: %HasQualifiers.F.type.d208f0.2 = struct_value () [concrete]
  291. // CHECK:STDOUT: %T.as.Destroy.impl.Op.type.f3e: type = fn_type @T.as.Destroy.impl.Op, @T.as.Destroy.impl(%ptr.235) [concrete]
  292. // CHECK:STDOUT: %T.as.Destroy.impl.Op.a18: %T.as.Destroy.impl.Op.type.f3e = struct_value () [concrete]
  293. // CHECK:STDOUT: %ptr.5d5: type = ptr_type %ptr.235 [concrete]
  294. // CHECK:STDOUT: %Int.as.Destroy.impl.Op.type.4f9: type = fn_type @Int.as.Destroy.impl.Op, @Int.as.Destroy.impl(%int_32) [concrete]
  295. // CHECK:STDOUT: %Int.as.Destroy.impl.Op.796: %Int.as.Destroy.impl.Op.type.4f9 = struct_value () [concrete]
  296. // CHECK:STDOUT: }
  297. // CHECK:STDOUT:
  298. // CHECK:STDOUT: imports {
  299. // CHECK:STDOUT: %.570: %.4ab = cpp_overload_set_value @HasQualifiers.F.1 [concrete = constants.%empty_struct]
  300. // CHECK:STDOUT: %F__carbon_thunk.decl: %F__carbon_thunk.type = fn_decl @F__carbon_thunk [concrete = constants.%F__carbon_thunk] {
  301. // CHECK:STDOUT: <elided>
  302. // CHECK:STDOUT: } {
  303. // CHECK:STDOUT: <elided>
  304. // CHECK:STDOUT: }
  305. // CHECK:STDOUT: %HasQualifiers.F.decl.f862ea.2: %HasQualifiers.F.type.d208f0.2 = fn_decl @HasQualifiers.F.2 [concrete = constants.%HasQualifiers.F.efd4e4.2] {
  306. // CHECK:STDOUT: <elided>
  307. // CHECK:STDOUT: } {
  308. // CHECK:STDOUT: <elided>
  309. // CHECK:STDOUT: }
  310. // CHECK:STDOUT: }
  311. // CHECK:STDOUT:
  312. // CHECK:STDOUT: fn @CallF(%v.param: %HasQualifiers, %p.param: %ptr.ec3) {
  313. // CHECK:STDOUT: !entry:
  314. // CHECK:STDOUT: name_binding_decl {
  315. // CHECK:STDOUT: %a.patt: %pattern_type.7ce = binding_pattern a [concrete]
  316. // CHECK:STDOUT: %a.var_patt: %pattern_type.7ce = var_pattern %a.patt [concrete]
  317. // CHECK:STDOUT: }
  318. // CHECK:STDOUT: %a.var: ref %i32 = var %a.var_patt
  319. // CHECK:STDOUT: %v.ref: %HasQualifiers = name_ref v, %v
  320. // CHECK:STDOUT: %F.ref.loc8: %.4ab = name_ref F, imports.%.570 [concrete = constants.%empty_struct]
  321. // CHECK:STDOUT: %bound_method.loc8_17: <bound method> = bound_method %v.ref, %F.ref.loc8
  322. // CHECK:STDOUT: %.loc8_16: ref %HasQualifiers = value_as_ref %v.ref
  323. // CHECK:STDOUT: %addr.loc8_20: %ptr.ec3 = addr_of %.loc8_16
  324. // CHECK:STDOUT: %.loc8_20.1: %ptr.2cb = as_compatible %addr.loc8_20
  325. // CHECK:STDOUT: %.loc8_20.2: %ptr.2cb = converted %addr.loc8_20, %.loc8_20.1
  326. // CHECK:STDOUT: %F__carbon_thunk.call: init %i32 = call imports.%F__carbon_thunk.decl(%.loc8_20.2)
  327. // CHECK:STDOUT: assign %a.var, %F__carbon_thunk.call
  328. // CHECK:STDOUT: %.loc8_10: type = splice_block %i32.loc8 [concrete = constants.%i32] {
  329. // CHECK:STDOUT: %int_32.loc8: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  330. // CHECK:STDOUT: %i32.loc8: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  331. // CHECK:STDOUT: }
  332. // CHECK:STDOUT: %a: ref %i32 = bind_name a, %a.var
  333. // CHECK:STDOUT: name_binding_decl {
  334. // CHECK:STDOUT: %b.patt: %pattern_type.fe8 = binding_pattern b [concrete]
  335. // CHECK:STDOUT: %b.var_patt: %pattern_type.fe8 = var_pattern %b.patt [concrete]
  336. // CHECK:STDOUT: }
  337. // CHECK:STDOUT: %b.var: ref %ptr.235 = var %b.var_patt
  338. // CHECK:STDOUT: %p.ref: %ptr.ec3 = name_ref p, %p
  339. // CHECK:STDOUT: %.loc9_18: ref %HasQualifiers = deref %p.ref
  340. // CHECK:STDOUT: %F.ref.loc9: %.4ab = name_ref F, imports.%.570 [concrete = constants.%empty_struct]
  341. // CHECK:STDOUT: %bound_method.loc9_18: <bound method> = bound_method %.loc9_18, %F.ref.loc9
  342. // CHECK:STDOUT: %addr.loc9_18: %ptr.ec3 = addr_of %.loc9_18
  343. // CHECK:STDOUT: %HasQualifiers.F.call: init %ptr.235 = call imports.%HasQualifiers.F.decl.f862ea.2(%addr.loc9_18)
  344. // CHECK:STDOUT: assign %b.var, %HasQualifiers.F.call
  345. // CHECK:STDOUT: %.loc9_13: type = splice_block %ptr.loc9 [concrete = constants.%ptr.235] {
  346. // CHECK:STDOUT: %int_32.loc9: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  347. // CHECK:STDOUT: %i32.loc9: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  348. // CHECK:STDOUT: %ptr.loc9: type = ptr_type %i32.loc9 [concrete = constants.%ptr.235]
  349. // CHECK:STDOUT: }
  350. // CHECK:STDOUT: %b: ref %ptr.235 = bind_name b, %b.var
  351. // CHECK:STDOUT: %T.as.Destroy.impl.Op.bound: <bound method> = bound_method %b.var, constants.%T.as.Destroy.impl.Op.a18
  352. // CHECK:STDOUT: <elided>
  353. // CHECK:STDOUT: %bound_method.loc9_3: <bound method> = bound_method %b.var, %T.as.Destroy.impl.Op.specific_fn
  354. // CHECK:STDOUT: %addr.loc9_3: %ptr.5d5 = addr_of %b.var
  355. // CHECK:STDOUT: %T.as.Destroy.impl.Op.call: init %empty_tuple.type = call %bound_method.loc9_3(%addr.loc9_3)
  356. // CHECK:STDOUT: %Int.as.Destroy.impl.Op.bound: <bound method> = bound_method %a.var, constants.%Int.as.Destroy.impl.Op.796
  357. // CHECK:STDOUT: <elided>
  358. // CHECK:STDOUT: %bound_method.loc8_3: <bound method> = bound_method %a.var, %Int.as.Destroy.impl.Op.specific_fn
  359. // CHECK:STDOUT: %addr.loc8_3: %ptr.235 = addr_of %a.var
  360. // CHECK:STDOUT: %Int.as.Destroy.impl.Op.call: init %empty_tuple.type = call %bound_method.loc8_3(%addr.loc8_3)
  361. // CHECK:STDOUT: <elided>
  362. // CHECK:STDOUT: }
  363. // CHECK:STDOUT:
  364. // CHECK:STDOUT: --- call_explicit_object_param.carbon
  365. // CHECK:STDOUT:
  366. // CHECK:STDOUT: constants {
  367. // CHECK:STDOUT: %ExplicitObjectParam: type = class_type @ExplicitObjectParam [concrete]
  368. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  369. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  370. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  371. // CHECK:STDOUT: %Another: type = class_type @Another [concrete]
  372. // CHECK:STDOUT: %.3e2: type = cpp_overload_set_type @ExplicitObjectParam.G [concrete]
  373. // CHECK:STDOUT: %empty_struct.48d: %.3e2 = struct_value () [concrete]
  374. // CHECK:STDOUT: %ptr.7f5: type = ptr_type %ExplicitObjectParam [concrete]
  375. // CHECK:STDOUT: %F__carbon_thunk.type: type = fn_type @F__carbon_thunk [concrete]
  376. // CHECK:STDOUT: %F__carbon_thunk: %F__carbon_thunk.type = struct_value () [concrete]
  377. // CHECK:STDOUT: %.d44: type = cpp_overload_set_type @ExplicitObjectParam.H [concrete]
  378. // CHECK:STDOUT: %empty_struct.a7c: %.d44 = struct_value () [concrete]
  379. // CHECK:STDOUT: %ExplicitObjectParam.G.type: type = fn_type @ExplicitObjectParam.G [concrete]
  380. // CHECK:STDOUT: %ExplicitObjectParam.G: %ExplicitObjectParam.G.type = struct_value () [concrete]
  381. // CHECK:STDOUT: %.9fb: type = cpp_overload_set_type @H__carbon_thunk [concrete]
  382. // CHECK:STDOUT: %empty_struct.b14: %.9fb = struct_value () [concrete]
  383. // CHECK:STDOUT: %ptr.289: type = ptr_type %Another [concrete]
  384. // CHECK:STDOUT: %H__carbon_thunk.type: type = fn_type @H__carbon_thunk [concrete]
  385. // CHECK:STDOUT: %H__carbon_thunk: %H__carbon_thunk.type = struct_value () [concrete]
  386. // CHECK:STDOUT: }
  387. // CHECK:STDOUT:
  388. // CHECK:STDOUT: imports {
  389. // CHECK:STDOUT: %Cpp: <namespace> = namespace file.%Cpp.import_cpp, [concrete] {
  390. // CHECK:STDOUT: .ExplicitObjectParam = %ExplicitObjectParam.decl
  391. // CHECK:STDOUT: .Another = %Another.decl
  392. // CHECK:STDOUT: import Cpp//...
  393. // CHECK:STDOUT: }
  394. // CHECK:STDOUT: %ExplicitObjectParam.decl: type = class_decl @ExplicitObjectParam [concrete = constants.%ExplicitObjectParam] {} {}
  395. // CHECK:STDOUT: %Another.decl: type = class_decl @Another [concrete = constants.%Another] {} {}
  396. // CHECK:STDOUT: %.037: %.3e2 = cpp_overload_set_value @ExplicitObjectParam.G [concrete = constants.%empty_struct.48d]
  397. // CHECK:STDOUT: %F__carbon_thunk.decl: %F__carbon_thunk.type = fn_decl @F__carbon_thunk [concrete = constants.%F__carbon_thunk] {
  398. // CHECK:STDOUT: <elided>
  399. // CHECK:STDOUT: } {
  400. // CHECK:STDOUT: <elided>
  401. // CHECK:STDOUT: }
  402. // CHECK:STDOUT: %.151: %.d44 = cpp_overload_set_value @ExplicitObjectParam.H [concrete = constants.%empty_struct.a7c]
  403. // CHECK:STDOUT: %ExplicitObjectParam.G.decl: %ExplicitObjectParam.G.type = fn_decl @ExplicitObjectParam.G [concrete = constants.%ExplicitObjectParam.G] {
  404. // CHECK:STDOUT: <elided>
  405. // CHECK:STDOUT: } {
  406. // CHECK:STDOUT: <elided>
  407. // CHECK:STDOUT: }
  408. // CHECK:STDOUT: %.34a: %.9fb = cpp_overload_set_value @H__carbon_thunk [concrete = constants.%empty_struct.b14]
  409. // CHECK:STDOUT: %H__carbon_thunk.decl: %H__carbon_thunk.type = fn_decl @H__carbon_thunk [concrete = constants.%H__carbon_thunk] {
  410. // CHECK:STDOUT: <elided>
  411. // CHECK:STDOUT: } {
  412. // CHECK:STDOUT: <elided>
  413. // CHECK:STDOUT: }
  414. // CHECK:STDOUT: }
  415. // CHECK:STDOUT:
  416. // CHECK:STDOUT: fn @Call(%e.param: %ExplicitObjectParam, %n.param: %i32, %a.param: %Another) {
  417. // CHECK:STDOUT: !entry:
  418. // CHECK:STDOUT: %e.ref: %ExplicitObjectParam = name_ref e, %e
  419. // CHECK:STDOUT: %F.ref: %.3e2 = name_ref F, imports.%.037 [concrete = constants.%empty_struct.48d]
  420. // CHECK:STDOUT: %bound_method.loc8: <bound method> = bound_method %e.ref, %F.ref
  421. // CHECK:STDOUT: %.loc8: ref %ExplicitObjectParam = value_as_ref %e.ref
  422. // CHECK:STDOUT: %addr.loc8: %ptr.7f5 = addr_of %.loc8
  423. // CHECK:STDOUT: %F__carbon_thunk.call: init %empty_tuple.type = call imports.%F__carbon_thunk.decl(%addr.loc8)
  424. // CHECK:STDOUT: %n.ref: %i32 = name_ref n, %n
  425. // CHECK:STDOUT: %Cpp.ref.loc9: <namespace> = name_ref Cpp, imports.%Cpp [concrete = imports.%Cpp]
  426. // CHECK:STDOUT: %ExplicitObjectParam.ref.loc9: type = name_ref ExplicitObjectParam, imports.%ExplicitObjectParam.decl [concrete = constants.%ExplicitObjectParam]
  427. // CHECK:STDOUT: %G.ref: %.d44 = name_ref G, imports.%.151 [concrete = constants.%empty_struct.a7c]
  428. // CHECK:STDOUT: %bound_method.loc9: <bound method> = bound_method %n.ref, %G.ref
  429. // CHECK:STDOUT: %ExplicitObjectParam.G.call: init %empty_tuple.type = call imports.%ExplicitObjectParam.G.decl(%n.ref)
  430. // CHECK:STDOUT: %a.ref: %Another = name_ref a, %a
  431. // CHECK:STDOUT: %Cpp.ref.loc10: <namespace> = name_ref Cpp, imports.%Cpp [concrete = imports.%Cpp]
  432. // CHECK:STDOUT: %ExplicitObjectParam.ref.loc10: type = name_ref ExplicitObjectParam, imports.%ExplicitObjectParam.decl [concrete = constants.%ExplicitObjectParam]
  433. // CHECK:STDOUT: %H.ref: %.9fb = name_ref H, imports.%.34a [concrete = constants.%empty_struct.b14]
  434. // CHECK:STDOUT: %bound_method.loc10: <bound method> = bound_method %a.ref, %H.ref
  435. // CHECK:STDOUT: %.loc10: ref %Another = value_as_ref %a.ref
  436. // CHECK:STDOUT: %addr.loc10: %ptr.289 = addr_of %.loc10
  437. // CHECK:STDOUT: %H__carbon_thunk.call: init %empty_tuple.type = call imports.%H__carbon_thunk.decl(%addr.loc10)
  438. // CHECK:STDOUT: <elided>
  439. // CHECK:STDOUT: }
  440. // CHECK:STDOUT:
  441. // CHECK:STDOUT: --- call_explicit_object_param_overloaded.carbon
  442. // CHECK:STDOUT:
  443. // CHECK:STDOUT: constants {
  444. // CHECK:STDOUT: %ExplicitObjectParam: type = class_type @ExplicitObjectParam [concrete]
  445. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  446. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  447. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  448. // CHECK:STDOUT: %Another: type = class_type @Another [concrete]
  449. // CHECK:STDOUT: %.3e2: type = cpp_overload_set_type @ExplicitObjectParam.F.1 [concrete]
  450. // CHECK:STDOUT: %empty_struct: %.3e2 = struct_value () [concrete]
  451. // CHECK:STDOUT: %ptr.7f5: type = ptr_type %ExplicitObjectParam [concrete]
  452. // CHECK:STDOUT: %F__carbon_thunk.type.eda1ac.1: type = fn_type @F__carbon_thunk.1 [concrete]
  453. // CHECK:STDOUT: %F__carbon_thunk.0cd6a8.1: %F__carbon_thunk.type.eda1ac.1 = struct_value () [concrete]
  454. // CHECK:STDOUT: %ExplicitObjectParam.F.type.5d25a8.2: type = fn_type @ExplicitObjectParam.F.2 [concrete]
  455. // CHECK:STDOUT: %ExplicitObjectParam.F.28cf2e.2: %ExplicitObjectParam.F.type.5d25a8.2 = struct_value () [concrete]
  456. // CHECK:STDOUT: %ptr.289: type = ptr_type %Another [concrete]
  457. // CHECK:STDOUT: %F__carbon_thunk.type.eda1ac.2: type = fn_type @F__carbon_thunk.2 [concrete]
  458. // CHECK:STDOUT: %F__carbon_thunk.0cd6a8.2: %F__carbon_thunk.type.eda1ac.2 = struct_value () [concrete]
  459. // CHECK:STDOUT: }
  460. // CHECK:STDOUT:
  461. // CHECK:STDOUT: imports {
  462. // CHECK:STDOUT: %Cpp: <namespace> = namespace file.%Cpp.import_cpp, [concrete] {
  463. // CHECK:STDOUT: .ExplicitObjectParam = %ExplicitObjectParam.decl
  464. // CHECK:STDOUT: .Another = %Another.decl
  465. // CHECK:STDOUT: import Cpp//...
  466. // CHECK:STDOUT: }
  467. // CHECK:STDOUT: %ExplicitObjectParam.decl: type = class_decl @ExplicitObjectParam [concrete = constants.%ExplicitObjectParam] {} {}
  468. // CHECK:STDOUT: %Another.decl: type = class_decl @Another [concrete = constants.%Another] {} {}
  469. // CHECK:STDOUT: %.037: %.3e2 = cpp_overload_set_value @ExplicitObjectParam.F.1 [concrete = constants.%empty_struct]
  470. // CHECK:STDOUT: %F__carbon_thunk.decl.e1b8ec.1: %F__carbon_thunk.type.eda1ac.1 = fn_decl @F__carbon_thunk.1 [concrete = constants.%F__carbon_thunk.0cd6a8.1] {
  471. // CHECK:STDOUT: <elided>
  472. // CHECK:STDOUT: } {
  473. // CHECK:STDOUT: <elided>
  474. // CHECK:STDOUT: }
  475. // CHECK:STDOUT: %ExplicitObjectParam.F.decl.28f5af.2: %ExplicitObjectParam.F.type.5d25a8.2 = fn_decl @ExplicitObjectParam.F.2 [concrete = constants.%ExplicitObjectParam.F.28cf2e.2] {
  476. // CHECK:STDOUT: <elided>
  477. // CHECK:STDOUT: } {
  478. // CHECK:STDOUT: <elided>
  479. // CHECK:STDOUT: }
  480. // CHECK:STDOUT: %F__carbon_thunk.decl.e1b8ec.2: %F__carbon_thunk.type.eda1ac.2 = fn_decl @F__carbon_thunk.2 [concrete = constants.%F__carbon_thunk.0cd6a8.2] {
  481. // CHECK:STDOUT: <elided>
  482. // CHECK:STDOUT: } {
  483. // CHECK:STDOUT: <elided>
  484. // CHECK:STDOUT: }
  485. // CHECK:STDOUT: }
  486. // CHECK:STDOUT:
  487. // CHECK:STDOUT: fn @Call(%e.param: %ExplicitObjectParam, %n.param: %i32, %a.param: %Another) {
  488. // CHECK:STDOUT: !entry:
  489. // CHECK:STDOUT: %e.ref: %ExplicitObjectParam = name_ref e, %e
  490. // CHECK:STDOUT: %F.ref.loc8: %.3e2 = name_ref F, imports.%.037 [concrete = constants.%empty_struct]
  491. // CHECK:STDOUT: %bound_method.loc8: <bound method> = bound_method %e.ref, %F.ref.loc8
  492. // CHECK:STDOUT: %.loc8: ref %ExplicitObjectParam = value_as_ref %e.ref
  493. // CHECK:STDOUT: %addr.loc8: %ptr.7f5 = addr_of %.loc8
  494. // CHECK:STDOUT: %F__carbon_thunk.call.loc8: init %empty_tuple.type = call imports.%F__carbon_thunk.decl.e1b8ec.1(%addr.loc8)
  495. // CHECK:STDOUT: %n.ref: %i32 = name_ref n, %n
  496. // CHECK:STDOUT: %Cpp.ref.loc9: <namespace> = name_ref Cpp, imports.%Cpp [concrete = imports.%Cpp]
  497. // CHECK:STDOUT: %ExplicitObjectParam.ref.loc9: type = name_ref ExplicitObjectParam, imports.%ExplicitObjectParam.decl [concrete = constants.%ExplicitObjectParam]
  498. // CHECK:STDOUT: %F.ref.loc9: %.3e2 = name_ref F, imports.%.037 [concrete = constants.%empty_struct]
  499. // CHECK:STDOUT: %bound_method.loc9: <bound method> = bound_method %n.ref, %F.ref.loc9
  500. // CHECK:STDOUT: %ExplicitObjectParam.F.call: init %empty_tuple.type = call imports.%ExplicitObjectParam.F.decl.28f5af.2(%n.ref)
  501. // CHECK:STDOUT: %a.ref: %Another = name_ref a, %a
  502. // CHECK:STDOUT: %Cpp.ref.loc10: <namespace> = name_ref Cpp, imports.%Cpp [concrete = imports.%Cpp]
  503. // CHECK:STDOUT: %ExplicitObjectParam.ref.loc10: type = name_ref ExplicitObjectParam, imports.%ExplicitObjectParam.decl [concrete = constants.%ExplicitObjectParam]
  504. // CHECK:STDOUT: %F.ref.loc10: %.3e2 = name_ref F, imports.%.037 [concrete = constants.%empty_struct]
  505. // CHECK:STDOUT: %bound_method.loc10: <bound method> = bound_method %a.ref, %F.ref.loc10
  506. // CHECK:STDOUT: %.loc10: ref %Another = value_as_ref %a.ref
  507. // CHECK:STDOUT: %addr.loc10: %ptr.289 = addr_of %.loc10
  508. // CHECK:STDOUT: %F__carbon_thunk.call.loc10: init %empty_tuple.type = call imports.%F__carbon_thunk.decl.e1b8ec.2(%addr.loc10)
  509. // CHECK:STDOUT: <elided>
  510. // CHECK:STDOUT: }
  511. // CHECK:STDOUT: