overloaded.carbon 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  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/as/overloaded.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/as/overloaded.carbon
  10. class X {
  11. var n: i32;
  12. }
  13. impl i32 as Core.As(X) {
  14. fn Convert[self: i32]() -> X { return {.n = self}; }
  15. }
  16. impl X as Core.As(i32) {
  17. fn Convert[self: X]() -> i32 { return self.n; }
  18. }
  19. let n: i32 = ((4 as i32) as X) as i32;
  20. // CHECK:STDOUT: --- overloaded.carbon
  21. // CHECK:STDOUT:
  22. // CHECK:STDOUT: constants {
  23. // CHECK:STDOUT: %X: type = class_type @X [template]
  24. // CHECK:STDOUT: %Int32.type: type = fn_type @Int32 [template]
  25. // CHECK:STDOUT: %.1: type = tuple_type () [template]
  26. // CHECK:STDOUT: %Int32: %Int32.type = struct_value () [template]
  27. // CHECK:STDOUT: %.2: type = unbound_element_type %X, i32 [template]
  28. // CHECK:STDOUT: %.3: type = struct_type {.n: i32} [template]
  29. // CHECK:STDOUT: %As.type: type = generic_interface_type @As [template]
  30. // CHECK:STDOUT: %As: %As.type = struct_value () [template]
  31. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest 0 [symbolic]
  32. // CHECK:STDOUT: %.4: type = interface_type @As, @As(%Dest) [symbolic]
  33. // CHECK:STDOUT: %Self.1: @As.%.1 (%.4) = bind_symbolic_name Self 1 [symbolic]
  34. // CHECK:STDOUT: %Self.2: %.4 = bind_symbolic_name Self 1 [symbolic]
  35. // CHECK:STDOUT: %Convert.type.1: type = fn_type @Convert.1, @As(%Dest) [symbolic]
  36. // CHECK:STDOUT: %Convert.1: %Convert.type.1 = struct_value () [symbolic]
  37. // CHECK:STDOUT: %.5: type = assoc_entity_type %.4, %Convert.type.1 [symbolic]
  38. // CHECK:STDOUT: %.6: %.5 = assoc_entity element0, imports.%import_ref.6 [symbolic]
  39. // CHECK:STDOUT: %.7: type = interface_type @As, @As(%X) [template]
  40. // CHECK:STDOUT: %Convert.type.2: type = fn_type @Convert.2 [template]
  41. // CHECK:STDOUT: %Convert.2: %Convert.type.2 = struct_value () [template]
  42. // CHECK:STDOUT: %Convert.type.3: type = fn_type @Convert.1, @As(%X) [template]
  43. // CHECK:STDOUT: %Convert.3: %Convert.type.3 = struct_value () [template]
  44. // CHECK:STDOUT: %.8: type = assoc_entity_type %.7, %Convert.type.3 [template]
  45. // CHECK:STDOUT: %.9: %.8 = assoc_entity element0, imports.%import_ref.6 [template]
  46. // CHECK:STDOUT: %.10: <witness> = interface_witness (%Convert.2) [template]
  47. // CHECK:STDOUT: %.11: type = ptr_type %.3 [template]
  48. // CHECK:STDOUT: %.12: type = interface_type @As, @As(i32) [template]
  49. // CHECK:STDOUT: %Convert.type.4: type = fn_type @Convert.3 [template]
  50. // CHECK:STDOUT: %Convert.4: %Convert.type.4 = struct_value () [template]
  51. // CHECK:STDOUT: %Convert.type.5: type = fn_type @Convert.1, @As(i32) [template]
  52. // CHECK:STDOUT: %Convert.5: %Convert.type.5 = struct_value () [template]
  53. // CHECK:STDOUT: %.13: type = assoc_entity_type %.12, %Convert.type.5 [template]
  54. // CHECK:STDOUT: %.14: %.13 = assoc_entity element0, imports.%import_ref.6 [template]
  55. // CHECK:STDOUT: %.15: <witness> = interface_witness (%Convert.4) [template]
  56. // CHECK:STDOUT: %.16: i32 = int_literal 4 [template]
  57. // CHECK:STDOUT: %.17: %.5 = assoc_entity element0, imports.%import_ref.7 [symbolic]
  58. // CHECK:STDOUT: %.18: <bound method> = bound_method %.16, %Convert.2 [template]
  59. // CHECK:STDOUT: }
  60. // CHECK:STDOUT:
  61. // CHECK:STDOUT: imports {
  62. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  63. // CHECK:STDOUT: .Int32 = %import_ref.1
  64. // CHECK:STDOUT: .As = %import_ref.2
  65. // CHECK:STDOUT: import Core//prelude
  66. // CHECK:STDOUT: import Core//prelude/operators
  67. // CHECK:STDOUT: import Core//prelude/types
  68. // CHECK:STDOUT: import Core//prelude/operators/arithmetic
  69. // CHECK:STDOUT: import Core//prelude/operators/as
  70. // CHECK:STDOUT: import Core//prelude/operators/bitwise
  71. // CHECK:STDOUT: import Core//prelude/operators/comparison
  72. // CHECK:STDOUT: import Core//prelude/types/bool
  73. // CHECK:STDOUT: }
  74. // CHECK:STDOUT: %import_ref.1: %Int32.type = import_ref Core//prelude/types, inst+4, loaded [template = constants.%Int32]
  75. // CHECK:STDOUT: %import_ref.2: %As.type = import_ref Core//prelude/operators/as, inst+4, loaded [template = constants.%As]
  76. // CHECK:STDOUT: %import_ref.3 = import_ref Core//prelude/operators/as, inst+10, unloaded
  77. // CHECK:STDOUT: %import_ref.4: @As.%.2 (%.5) = import_ref Core//prelude/operators/as, inst+27, loaded [symbolic = @As.%.3 (constants.%.17)]
  78. // CHECK:STDOUT: %import_ref.5: @As.%Convert.type (%Convert.type.1) = import_ref Core//prelude/operators/as, inst+20, loaded [symbolic = @As.%Convert (constants.%Convert.1)]
  79. // CHECK:STDOUT: %import_ref.6 = import_ref Core//prelude/operators/as, inst+20, unloaded
  80. // CHECK:STDOUT: %import_ref.7 = import_ref Core//prelude/operators/as, inst+20, unloaded
  81. // CHECK:STDOUT: }
  82. // CHECK:STDOUT:
  83. // CHECK:STDOUT: file {
  84. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  85. // CHECK:STDOUT: .Core = imports.%Core
  86. // CHECK:STDOUT: .X = %X.decl
  87. // CHECK:STDOUT: .n = @__global_init.%n
  88. // CHECK:STDOUT: }
  89. // CHECK:STDOUT: %Core.import = import Core
  90. // CHECK:STDOUT: %X.decl: type = class_decl @X [template = constants.%X] {}
  91. // CHECK:STDOUT: %.loc15_22.1: type = value_of_initializer %.loc15_20 [template = constants.%.7]
  92. // CHECK:STDOUT: %.loc15_22.2: type = converted %.loc15_20, %.loc15_22.1 [template = constants.%.7]
  93. // CHECK:STDOUT: impl_decl @impl.1 {
  94. // CHECK:STDOUT: %int.make_type_32.loc15: init type = call constants.%Int32() [template = i32]
  95. // CHECK:STDOUT: %.loc15_6.1: type = value_of_initializer %int.make_type_32.loc15 [template = i32]
  96. // CHECK:STDOUT: %.loc15_6.2: type = converted %int.make_type_32.loc15, %.loc15_6.1 [template = i32]
  97. // CHECK:STDOUT: %Core.ref.loc15: <namespace> = name_ref Core, imports.%Core [template = imports.%Core]
  98. // CHECK:STDOUT: %As.ref.loc15: %As.type = name_ref As, imports.%import_ref.2 [template = constants.%As]
  99. // CHECK:STDOUT: %X.ref.loc15: type = name_ref X, %X.decl [template = constants.%X]
  100. // CHECK:STDOUT: %.loc15_20: init type = call %As.ref.loc15(%X.ref.loc15) [template = constants.%.7]
  101. // CHECK:STDOUT: }
  102. // CHECK:STDOUT: %.loc19_22.1: type = value_of_initializer %.loc19_18.3 [template = constants.%.12]
  103. // CHECK:STDOUT: %.loc19_22.2: type = converted %.loc19_18.3, %.loc19_22.1 [template = constants.%.12]
  104. // CHECK:STDOUT: impl_decl @impl.2 {
  105. // CHECK:STDOUT: %X.ref.loc19: type = name_ref X, %X.decl [template = constants.%X]
  106. // CHECK:STDOUT: %Core.ref.loc19: <namespace> = name_ref Core, imports.%Core [template = imports.%Core]
  107. // CHECK:STDOUT: %As.ref.loc19: %As.type = name_ref As, imports.%import_ref.2 [template = constants.%As]
  108. // CHECK:STDOUT: %int.make_type_32.loc19: init type = call constants.%Int32() [template = i32]
  109. // CHECK:STDOUT: %.loc19_18.1: type = value_of_initializer %int.make_type_32.loc19 [template = i32]
  110. // CHECK:STDOUT: %.loc19_18.2: type = converted %int.make_type_32.loc19, %.loc19_18.1 [template = i32]
  111. // CHECK:STDOUT: %.loc19_18.3: init type = call %As.ref.loc19(%.loc19_18.2) [template = constants.%.12]
  112. // CHECK:STDOUT: }
  113. // CHECK:STDOUT: %int.make_type_32.loc23: init type = call constants.%Int32() [template = i32]
  114. // CHECK:STDOUT: %.loc23_8.1: type = value_of_initializer %int.make_type_32.loc23 [template = i32]
  115. // CHECK:STDOUT: %.loc23_8.2: type = converted %int.make_type_32.loc23, %.loc23_8.1 [template = i32]
  116. // CHECK:STDOUT: }
  117. // CHECK:STDOUT:
  118. // CHECK:STDOUT: generic interface @As(constants.%Dest: type) {
  119. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest 0 [symbolic = %Dest (constants.%Dest)]
  120. // CHECK:STDOUT:
  121. // CHECK:STDOUT: !definition:
  122. // CHECK:STDOUT: %.1: type = interface_type @As, @As(%Dest) [symbolic = %.1 (constants.%.4)]
  123. // CHECK:STDOUT: %Self: %.4 = bind_symbolic_name Self 1 [symbolic = %Self (constants.%Self.2)]
  124. // CHECK:STDOUT: %Convert.type: type = fn_type @Convert.1, @As(%Dest) [symbolic = %Convert.type (constants.%Convert.type.1)]
  125. // CHECK:STDOUT: %Convert: @As.%Convert.type (%Convert.type.1) = struct_value () [symbolic = %Convert (constants.%Convert.1)]
  126. // CHECK:STDOUT: %.2: type = assoc_entity_type @As.%.1 (%.4), @As.%Convert.type (%Convert.type.1) [symbolic = %.2 (constants.%.5)]
  127. // CHECK:STDOUT: %.3: @As.%.2 (%.5) = assoc_entity element0, imports.%import_ref.6 [symbolic = %.3 (constants.%.6)]
  128. // CHECK:STDOUT:
  129. // CHECK:STDOUT: interface {
  130. // CHECK:STDOUT: !members:
  131. // CHECK:STDOUT: .Self = imports.%import_ref.3
  132. // CHECK:STDOUT: .Convert = imports.%import_ref.4
  133. // CHECK:STDOUT: witness = (imports.%import_ref.5)
  134. // CHECK:STDOUT: }
  135. // CHECK:STDOUT: }
  136. // CHECK:STDOUT:
  137. // CHECK:STDOUT: impl @impl.1: i32 as %.7 {
  138. // CHECK:STDOUT: %Convert.decl: %Convert.type.2 = fn_decl @Convert.2 [template = constants.%Convert.2] {
  139. // CHECK:STDOUT: %int.make_type_32: init type = call constants.%Int32() [template = i32]
  140. // CHECK:STDOUT: %.loc16_20.1: type = value_of_initializer %int.make_type_32 [template = i32]
  141. // CHECK:STDOUT: %.loc16_20.2: type = converted %int.make_type_32, %.loc16_20.1 [template = i32]
  142. // CHECK:STDOUT: %self.loc16_14.1: i32 = param self
  143. // CHECK:STDOUT: %self.loc16_14.2: i32 = bind_name self, %self.loc16_14.1
  144. // CHECK:STDOUT: %X.ref: type = name_ref X, file.%X.decl [template = constants.%X]
  145. // CHECK:STDOUT: %return.var: ref %X = var <return slot>
  146. // CHECK:STDOUT: }
  147. // CHECK:STDOUT: %.loc15: <witness> = interface_witness (%Convert.decl) [template = constants.%.10]
  148. // CHECK:STDOUT:
  149. // CHECK:STDOUT: !members:
  150. // CHECK:STDOUT: .Convert = %Convert.decl
  151. // CHECK:STDOUT: witness = %.loc15
  152. // CHECK:STDOUT: }
  153. // CHECK:STDOUT:
  154. // CHECK:STDOUT: impl @impl.2: %X as %.12 {
  155. // CHECK:STDOUT: %Convert.decl: %Convert.type.4 = fn_decl @Convert.3 [template = constants.%Convert.4] {
  156. // CHECK:STDOUT: %X.ref: type = name_ref X, file.%X.decl [template = constants.%X]
  157. // CHECK:STDOUT: %self.loc20_14.1: %X = param self
  158. // CHECK:STDOUT: %self.loc20_14.2: %X = bind_name self, %self.loc20_14.1
  159. // CHECK:STDOUT: %int.make_type_32: init type = call constants.%Int32() [template = i32]
  160. // CHECK:STDOUT: %.loc20_28.1: type = value_of_initializer %int.make_type_32 [template = i32]
  161. // CHECK:STDOUT: %.loc20_28.2: type = converted %int.make_type_32, %.loc20_28.1 [template = i32]
  162. // CHECK:STDOUT: %return.var: ref i32 = var <return slot>
  163. // CHECK:STDOUT: }
  164. // CHECK:STDOUT: %.loc19: <witness> = interface_witness (%Convert.decl) [template = constants.%.15]
  165. // CHECK:STDOUT:
  166. // CHECK:STDOUT: !members:
  167. // CHECK:STDOUT: .Convert = %Convert.decl
  168. // CHECK:STDOUT: witness = %.loc19
  169. // CHECK:STDOUT: }
  170. // CHECK:STDOUT:
  171. // CHECK:STDOUT: class @X {
  172. // CHECK:STDOUT: %int.make_type_32: init type = call constants.%Int32() [template = i32]
  173. // CHECK:STDOUT: %.loc12_10.1: type = value_of_initializer %int.make_type_32 [template = i32]
  174. // CHECK:STDOUT: %.loc12_10.2: type = converted %int.make_type_32, %.loc12_10.1 [template = i32]
  175. // CHECK:STDOUT: %.loc12_8: %.2 = field_decl n, element0 [template]
  176. // CHECK:STDOUT:
  177. // CHECK:STDOUT: !members:
  178. // CHECK:STDOUT: .Self = constants.%X
  179. // CHECK:STDOUT: .n = %.loc12_8
  180. // CHECK:STDOUT: }
  181. // CHECK:STDOUT:
  182. // CHECK:STDOUT: fn @Int32() -> type = "int.make_type_32";
  183. // CHECK:STDOUT:
  184. // CHECK:STDOUT: generic fn @Convert.1(constants.%Dest: type, constants.%Self.1: @As.%.1 (%.4)) {
  185. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest 0 [symbolic = %Dest (constants.%Dest)]
  186. // CHECK:STDOUT: %.1: type = interface_type @As, @As(%Dest) [symbolic = %.1 (constants.%.4)]
  187. // CHECK:STDOUT: %Self: %.4 = bind_symbolic_name Self 1 [symbolic = %Self (constants.%Self.2)]
  188. // CHECK:STDOUT:
  189. // CHECK:STDOUT: fn[%self: @Convert.1.%Self (%Self.2)]() -> @Convert.1.%Dest (%Dest);
  190. // CHECK:STDOUT: }
  191. // CHECK:STDOUT:
  192. // CHECK:STDOUT: fn @Convert.2[@impl.1.%self.loc16_14.2: i32]() -> @impl.1.%return.var: %X {
  193. // CHECK:STDOUT: !entry:
  194. // CHECK:STDOUT: %self.ref: i32 = name_ref self, @impl.1.%self.loc16_14.2
  195. // CHECK:STDOUT: %.loc16_51.1: %.3 = struct_literal (%self.ref)
  196. // CHECK:STDOUT: %.loc16_51.2: ref i32 = class_element_access @impl.1.%return.var, element0
  197. // CHECK:STDOUT: %.loc16_51.3: init i32 = initialize_from %self.ref to %.loc16_51.2
  198. // CHECK:STDOUT: %.loc16_51.4: init %X = class_init (%.loc16_51.3), @impl.1.%return.var
  199. // CHECK:STDOUT: %.loc16_52: init %X = converted %.loc16_51.1, %.loc16_51.4
  200. // CHECK:STDOUT: return %.loc16_52 to @impl.1.%return.var
  201. // CHECK:STDOUT: }
  202. // CHECK:STDOUT:
  203. // CHECK:STDOUT: fn @Convert.3[@impl.2.%self.loc20_14.2: %X]() -> i32 {
  204. // CHECK:STDOUT: !entry:
  205. // CHECK:STDOUT: %self.ref: %X = name_ref self, @impl.2.%self.loc20_14.2
  206. // CHECK:STDOUT: %n.ref: %.2 = name_ref n, @X.%.loc12_8 [template = @X.%.loc12_8]
  207. // CHECK:STDOUT: %.loc20_45.1: ref i32 = class_element_access %self.ref, element0
  208. // CHECK:STDOUT: %.loc20_45.2: i32 = bind_value %.loc20_45.1
  209. // CHECK:STDOUT: return %.loc20_45.2
  210. // CHECK:STDOUT: }
  211. // CHECK:STDOUT:
  212. // CHECK:STDOUT: fn @__global_init() {
  213. // CHECK:STDOUT: !entry:
  214. // CHECK:STDOUT: %.loc23_16: i32 = int_literal 4 [template = constants.%.16]
  215. // CHECK:STDOUT: %int.make_type_32.loc23_21: init type = call constants.%Int32() [template = i32]
  216. // CHECK:STDOUT: %.loc23_21.1: type = value_of_initializer %int.make_type_32.loc23_21 [template = i32]
  217. // CHECK:STDOUT: %.loc23_21.2: type = converted %int.make_type_32.loc23_21, %.loc23_21.1 [template = i32]
  218. // CHECK:STDOUT: %X.ref: type = name_ref X, file.%X.decl [template = constants.%X]
  219. // CHECK:STDOUT: %.loc23_26.1: init type = call constants.%As(constants.%X) [template = constants.%.7]
  220. // CHECK:STDOUT: %.loc23_26.2: %.8 = specific_constant imports.%import_ref.4, @As(constants.%X) [template = constants.%.9]
  221. // CHECK:STDOUT: %Convert.ref.loc23_26: %.8 = name_ref Convert, %.loc23_26.2 [template = constants.%.9]
  222. // CHECK:STDOUT: %.loc23_26.3: %Convert.type.3 = interface_witness_access @impl.1.%.loc15, element0 [template = constants.%Convert.2]
  223. // CHECK:STDOUT: %.loc23_26.4: <bound method> = bound_method %.loc23_16, %.loc23_26.3 [template = constants.%.18]
  224. // CHECK:STDOUT: %.loc23_26.5: ref %X = temporary_storage
  225. // CHECK:STDOUT: %Convert.call.loc23_26: init %X = call %.loc23_26.4(%.loc23_16) to %.loc23_26.5
  226. // CHECK:STDOUT: %.loc23_26.6: init %X = converted %.loc23_16, %Convert.call.loc23_26
  227. // CHECK:STDOUT: %int.make_type_32.loc23_35: init type = call constants.%Int32() [template = i32]
  228. // CHECK:STDOUT: %.loc23_35.1: type = value_of_initializer %int.make_type_32.loc23_35 [template = i32]
  229. // CHECK:STDOUT: %.loc23_35.2: type = converted %int.make_type_32.loc23_35, %.loc23_35.1 [template = i32]
  230. // CHECK:STDOUT: %.loc23_32.1: init type = call constants.%As(i32) [template = constants.%.12]
  231. // CHECK:STDOUT: %.loc23_32.2: %.13 = specific_constant imports.%import_ref.4, @As(i32) [template = constants.%.14]
  232. // CHECK:STDOUT: %Convert.ref.loc23_32: %.13 = name_ref Convert, %.loc23_32.2 [template = constants.%.14]
  233. // CHECK:STDOUT: %.loc23_26.7: ref %X = temporary %.loc23_26.5, %.loc23_26.6
  234. // CHECK:STDOUT: %.loc23_32.3: %Convert.type.5 = interface_witness_access @impl.2.%.loc19, element0 [template = constants.%Convert.4]
  235. // CHECK:STDOUT: %.loc23_32.4: <bound method> = bound_method %.loc23_26.7, %.loc23_32.3
  236. // CHECK:STDOUT: %.loc23_26.8: %X = bind_value %.loc23_26.7
  237. // CHECK:STDOUT: %Convert.call.loc23_32: init i32 = call %.loc23_32.4(%.loc23_26.8)
  238. // CHECK:STDOUT: %.loc23_32.5: init i32 = converted %.loc23_26.6, %Convert.call.loc23_32
  239. // CHECK:STDOUT: %.loc23_38.1: i32 = value_of_initializer %.loc23_32.5
  240. // CHECK:STDOUT: %.loc23_38.2: i32 = converted %.loc23_32.5, %.loc23_38.1
  241. // CHECK:STDOUT: %n: i32 = bind_name n, %.loc23_38.2
  242. // CHECK:STDOUT: return
  243. // CHECK:STDOUT: }
  244. // CHECK:STDOUT:
  245. // CHECK:STDOUT: specific @As(constants.%Dest) {
  246. // CHECK:STDOUT: %Dest => constants.%Dest
  247. // CHECK:STDOUT: }
  248. // CHECK:STDOUT:
  249. // CHECK:STDOUT: specific @As(@As.%Dest) {
  250. // CHECK:STDOUT: %Dest => constants.%Dest
  251. // CHECK:STDOUT: }
  252. // CHECK:STDOUT:
  253. // CHECK:STDOUT: specific @As(@Convert.1.%Dest) {
  254. // CHECK:STDOUT: %Dest => constants.%Dest
  255. // CHECK:STDOUT: }
  256. // CHECK:STDOUT:
  257. // CHECK:STDOUT: specific @Convert.1(constants.%Dest, constants.%Self.1) {
  258. // CHECK:STDOUT: %Dest => constants.%Dest
  259. // CHECK:STDOUT: %.1 => constants.%.4
  260. // CHECK:STDOUT: %Self => constants.%Self.1
  261. // CHECK:STDOUT: }
  262. // CHECK:STDOUT:
  263. // CHECK:STDOUT: specific @As(constants.%X) {
  264. // CHECK:STDOUT: %Dest => constants.%X
  265. // CHECK:STDOUT:
  266. // CHECK:STDOUT: !definition:
  267. // CHECK:STDOUT: %.1 => constants.%.7
  268. // CHECK:STDOUT: %Self => constants.%Self.2
  269. // CHECK:STDOUT: %Convert.type => constants.%Convert.type.3
  270. // CHECK:STDOUT: %Convert => constants.%Convert.3
  271. // CHECK:STDOUT: %.2 => constants.%.8
  272. // CHECK:STDOUT: %.3 => constants.%.9
  273. // CHECK:STDOUT: }
  274. // CHECK:STDOUT:
  275. // CHECK:STDOUT: specific @Convert.1(constants.%X, i32) {
  276. // CHECK:STDOUT: %Dest => constants.%X
  277. // CHECK:STDOUT: %.1 => constants.%.7
  278. // CHECK:STDOUT: %Self => i32
  279. // CHECK:STDOUT: }
  280. // CHECK:STDOUT:
  281. // CHECK:STDOUT: specific @As(i32) {
  282. // CHECK:STDOUT: %Dest => i32
  283. // CHECK:STDOUT:
  284. // CHECK:STDOUT: !definition:
  285. // CHECK:STDOUT: %.1 => constants.%.12
  286. // CHECK:STDOUT: %Self => constants.%Self.2
  287. // CHECK:STDOUT: %Convert.type => constants.%Convert.type.5
  288. // CHECK:STDOUT: %Convert => constants.%Convert.5
  289. // CHECK:STDOUT: %.2 => constants.%.13
  290. // CHECK:STDOUT: %.3 => constants.%.14
  291. // CHECK:STDOUT: }
  292. // CHECK:STDOUT:
  293. // CHECK:STDOUT: specific @Convert.1(i32, constants.%X) {
  294. // CHECK:STDOUT: %Dest => i32
  295. // CHECK:STDOUT: %.1 => constants.%.12
  296. // CHECK:STDOUT: %Self => constants.%X
  297. // CHECK:STDOUT: }
  298. // CHECK:STDOUT: