base.carbon 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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/array/base.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/array/base.carbon
  10. var a: [i32; 1] = (1,);
  11. var b: [f64; 2] = (11.1, 2.2,);
  12. var c: [(); 5] = ((), (), (), (), (),);
  13. // CHECK:STDOUT: --- base.carbon
  14. // CHECK:STDOUT:
  15. // CHECK:STDOUT: constants {
  16. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template]
  17. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [template]
  18. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [template]
  19. // CHECK:STDOUT: %int_1.5b8: Core.IntLiteral = int_value 1 [template]
  20. // CHECK:STDOUT: %array_type.0cb: type = array_type %int_1.5b8, %i32 [template]
  21. // CHECK:STDOUT: %tuple.type.985: type = tuple_type (Core.IntLiteral) [template]
  22. // CHECK:STDOUT: %int_0: Core.IntLiteral = int_value 0 [template]
  23. // CHECK:STDOUT: %Convert.type.1b6: type = fn_type @Convert.1, @ImplicitAs(%i32) [template]
  24. // CHECK:STDOUT: %impl_witness.d39: <witness> = impl_witness (imports.%import_ref.a5b), @impl.1(%int_32) [template]
  25. // CHECK:STDOUT: %Convert.type.035: type = fn_type @Convert.2, @impl.1(%int_32) [template]
  26. // CHECK:STDOUT: %Convert.956: %Convert.type.035 = struct_value () [template]
  27. // CHECK:STDOUT: %Convert.bound: <bound method> = bound_method %int_1.5b8, %Convert.956 [template]
  28. // CHECK:STDOUT: %Convert.specific_fn: <specific function> = specific_function %Convert.bound, @Convert.2(%int_32) [template]
  29. // CHECK:STDOUT: %int_1.5d2: %i32 = int_value 1 [template]
  30. // CHECK:STDOUT: %array.237: %array_type.0cb = tuple_value (%int_1.5d2) [template]
  31. // CHECK:STDOUT: %int_64: Core.IntLiteral = int_value 64 [template]
  32. // CHECK:STDOUT: %Float.type: type = fn_type @Float [template]
  33. // CHECK:STDOUT: %Float: %Float.type = struct_value () [template]
  34. // CHECK:STDOUT: %int_2: Core.IntLiteral = int_value 2 [template]
  35. // CHECK:STDOUT: %array_type.ce7: type = array_type %int_2, f64 [template]
  36. // CHECK:STDOUT: %float.6e4: f64 = float_literal 11.100000000000001 [template]
  37. // CHECK:STDOUT: %float.9f7: f64 = float_literal 2.2000000000000002 [template]
  38. // CHECK:STDOUT: %tuple.type.bdb: type = tuple_type (f64, f64) [template]
  39. // CHECK:STDOUT: %array.6a2: %array_type.ce7 = tuple_value (%float.6e4, %float.9f7) [template]
  40. // CHECK:STDOUT: %int_5: Core.IntLiteral = int_value 5 [template]
  41. // CHECK:STDOUT: %array_type.c13: type = array_type %int_5, %empty_tuple.type [template]
  42. // CHECK:STDOUT: %tuple.type.5b2: type = tuple_type (%empty_tuple.type, %empty_tuple.type, %empty_tuple.type, %empty_tuple.type, %empty_tuple.type) [template]
  43. // CHECK:STDOUT: %empty_tuple: %empty_tuple.type = tuple_value () [template]
  44. // CHECK:STDOUT: %int_3: Core.IntLiteral = int_value 3 [template]
  45. // CHECK:STDOUT: %int_4: Core.IntLiteral = int_value 4 [template]
  46. // CHECK:STDOUT: %array.1cb: %array_type.c13 = tuple_value (%empty_tuple, %empty_tuple, %empty_tuple, %empty_tuple, %empty_tuple) [template]
  47. // CHECK:STDOUT: }
  48. // CHECK:STDOUT:
  49. // CHECK:STDOUT: imports {
  50. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  51. // CHECK:STDOUT: .Int = %import_ref.485
  52. // CHECK:STDOUT: .ImplicitAs = %import_ref.d44
  53. // CHECK:STDOUT: .Float = %import_ref.1d6
  54. // CHECK:STDOUT: import Core//prelude
  55. // CHECK:STDOUT: import Core//prelude/...
  56. // CHECK:STDOUT: }
  57. // CHECK:STDOUT: }
  58. // CHECK:STDOUT:
  59. // CHECK:STDOUT: file {
  60. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  61. // CHECK:STDOUT: .Core = imports.%Core
  62. // CHECK:STDOUT: .a = %a
  63. // CHECK:STDOUT: .b = %b
  64. // CHECK:STDOUT: .c = %c
  65. // CHECK:STDOUT: }
  66. // CHECK:STDOUT: %Core.import = import Core
  67. // CHECK:STDOUT: name_binding_decl {
  68. // CHECK:STDOUT: %a.patt: %array_type.0cb = binding_pattern a
  69. // CHECK:STDOUT: %.loc11_1: %array_type.0cb = var_pattern %a.patt
  70. // CHECK:STDOUT: }
  71. // CHECK:STDOUT: %a.var: ref %array_type.0cb = var a
  72. // CHECK:STDOUT: %.loc11_15: type = splice_block %array_type.loc11 [template = constants.%array_type.0cb] {
  73. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template = constants.%int_32]
  74. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
  75. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [template = constants.%int_1.5b8]
  76. // CHECK:STDOUT: %array_type.loc11: type = array_type %int_1, %i32 [template = constants.%array_type.0cb]
  77. // CHECK:STDOUT: }
  78. // CHECK:STDOUT: %a: ref %array_type.0cb = bind_name a, %a.var
  79. // CHECK:STDOUT: name_binding_decl {
  80. // CHECK:STDOUT: %b.patt: %array_type.ce7 = binding_pattern b
  81. // CHECK:STDOUT: %.loc12_1: %array_type.ce7 = var_pattern %b.patt
  82. // CHECK:STDOUT: }
  83. // CHECK:STDOUT: %b.var: ref %array_type.ce7 = var b
  84. // CHECK:STDOUT: %.loc12_15: type = splice_block %array_type.loc12 [template = constants.%array_type.ce7] {
  85. // CHECK:STDOUT: %int_64: Core.IntLiteral = int_value 64 [template = constants.%int_64]
  86. // CHECK:STDOUT: %float.make_type: init type = call constants.%Float(%int_64) [template = f64]
  87. // CHECK:STDOUT: %int_2: Core.IntLiteral = int_value 2 [template = constants.%int_2]
  88. // CHECK:STDOUT: %.loc12_9.1: type = value_of_initializer %float.make_type [template = f64]
  89. // CHECK:STDOUT: %.loc12_9.2: type = converted %float.make_type, %.loc12_9.1 [template = f64]
  90. // CHECK:STDOUT: %array_type.loc12: type = array_type %int_2, f64 [template = constants.%array_type.ce7]
  91. // CHECK:STDOUT: }
  92. // CHECK:STDOUT: %b: ref %array_type.ce7 = bind_name b, %b.var
  93. // CHECK:STDOUT: name_binding_decl {
  94. // CHECK:STDOUT: %c.patt: %array_type.c13 = binding_pattern c
  95. // CHECK:STDOUT: %.loc13_1: %array_type.c13 = var_pattern %c.patt
  96. // CHECK:STDOUT: }
  97. // CHECK:STDOUT: %c.var: ref %array_type.c13 = var c
  98. // CHECK:STDOUT: %.loc13_14: type = splice_block %array_type.loc13 [template = constants.%array_type.c13] {
  99. // CHECK:STDOUT: %.loc13_10.1: %empty_tuple.type = tuple_literal ()
  100. // CHECK:STDOUT: %int_5: Core.IntLiteral = int_value 5 [template = constants.%int_5]
  101. // CHECK:STDOUT: %.loc13_10.2: type = converted %.loc13_10.1, constants.%empty_tuple.type [template = constants.%empty_tuple.type]
  102. // CHECK:STDOUT: %array_type.loc13: type = array_type %int_5, %empty_tuple.type [template = constants.%array_type.c13]
  103. // CHECK:STDOUT: }
  104. // CHECK:STDOUT: %c: ref %array_type.c13 = bind_name c, %c.var
  105. // CHECK:STDOUT: }
  106. // CHECK:STDOUT:
  107. // CHECK:STDOUT: fn @__global_init() {
  108. // CHECK:STDOUT: !entry:
  109. // CHECK:STDOUT: %int_1.loc11: Core.IntLiteral = int_value 1 [template = constants.%int_1.5b8]
  110. // CHECK:STDOUT: %.loc11_22.1: %tuple.type.985 = tuple_literal (%int_1.loc11)
  111. // CHECK:STDOUT: %impl.elem0: %Convert.type.1b6 = impl_witness_access constants.%impl_witness.d39, element0 [template = constants.%Convert.956]
  112. // CHECK:STDOUT: %Convert.bound: <bound method> = bound_method %int_1.loc11, %impl.elem0 [template = constants.%Convert.bound]
  113. // CHECK:STDOUT: %Convert.specific_fn: <specific function> = specific_function %Convert.bound, @Convert.2(constants.%int_32) [template = constants.%Convert.specific_fn]
  114. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %Convert.specific_fn(%int_1.loc11) [template = constants.%int_1.5d2]
  115. // CHECK:STDOUT: %.loc11_22.2: init %i32 = converted %int_1.loc11, %int.convert_checked [template = constants.%int_1.5d2]
  116. // CHECK:STDOUT: %int_0.loc11: Core.IntLiteral = int_value 0 [template = constants.%int_0]
  117. // CHECK:STDOUT: %.loc11_22.3: ref %i32 = array_index file.%a.var, %int_0.loc11
  118. // CHECK:STDOUT: %.loc11_22.4: init %i32 = initialize_from %.loc11_22.2 to %.loc11_22.3 [template = constants.%int_1.5d2]
  119. // CHECK:STDOUT: %.loc11_22.5: init %array_type.0cb = array_init (%.loc11_22.4) to file.%a.var [template = constants.%array.237]
  120. // CHECK:STDOUT: %.loc11_1: init %array_type.0cb = converted %.loc11_22.1, %.loc11_22.5 [template = constants.%array.237]
  121. // CHECK:STDOUT: assign file.%a.var, %.loc11_1
  122. // CHECK:STDOUT: %float.loc12_20: f64 = float_literal 11.100000000000001 [template = constants.%float.6e4]
  123. // CHECK:STDOUT: %float.loc12_26: f64 = float_literal 2.2000000000000002 [template = constants.%float.9f7]
  124. // CHECK:STDOUT: %.loc12_30.1: %tuple.type.bdb = tuple_literal (%float.loc12_20, %float.loc12_26)
  125. // CHECK:STDOUT: %int_0.loc12: Core.IntLiteral = int_value 0 [template = constants.%int_0]
  126. // CHECK:STDOUT: %.loc12_30.2: ref f64 = array_index file.%b.var, %int_0.loc12
  127. // CHECK:STDOUT: %.loc12_30.3: init f64 = initialize_from %float.loc12_20 to %.loc12_30.2 [template = constants.%float.6e4]
  128. // CHECK:STDOUT: %int_1.loc12: Core.IntLiteral = int_value 1 [template = constants.%int_1.5b8]
  129. // CHECK:STDOUT: %.loc12_30.4: ref f64 = array_index file.%b.var, %int_1.loc12
  130. // CHECK:STDOUT: %.loc12_30.5: init f64 = initialize_from %float.loc12_26 to %.loc12_30.4 [template = constants.%float.9f7]
  131. // CHECK:STDOUT: %.loc12_30.6: init %array_type.ce7 = array_init (%.loc12_30.3, %.loc12_30.5) to file.%b.var [template = constants.%array.6a2]
  132. // CHECK:STDOUT: %.loc12_1: init %array_type.ce7 = converted %.loc12_30.1, %.loc12_30.6 [template = constants.%array.6a2]
  133. // CHECK:STDOUT: assign file.%b.var, %.loc12_1
  134. // CHECK:STDOUT: %.loc13_20.1: %empty_tuple.type = tuple_literal ()
  135. // CHECK:STDOUT: %.loc13_24.1: %empty_tuple.type = tuple_literal ()
  136. // CHECK:STDOUT: %.loc13_28.1: %empty_tuple.type = tuple_literal ()
  137. // CHECK:STDOUT: %.loc13_32.1: %empty_tuple.type = tuple_literal ()
  138. // CHECK:STDOUT: %.loc13_36.1: %empty_tuple.type = tuple_literal ()
  139. // CHECK:STDOUT: %.loc13_38.1: %tuple.type.5b2 = tuple_literal (%.loc13_20.1, %.loc13_24.1, %.loc13_28.1, %.loc13_32.1, %.loc13_36.1)
  140. // CHECK:STDOUT: %int_0.loc13: Core.IntLiteral = int_value 0 [template = constants.%int_0]
  141. // CHECK:STDOUT: %.loc13_38.2: ref %empty_tuple.type = array_index file.%c.var, %int_0.loc13
  142. // CHECK:STDOUT: %.loc13_20.2: init %empty_tuple.type = tuple_init () to %.loc13_38.2 [template = constants.%empty_tuple]
  143. // CHECK:STDOUT: %.loc13_38.3: init %empty_tuple.type = converted %.loc13_20.1, %.loc13_20.2 [template = constants.%empty_tuple]
  144. // CHECK:STDOUT: %int_1.loc13: Core.IntLiteral = int_value 1 [template = constants.%int_1.5b8]
  145. // CHECK:STDOUT: %.loc13_38.4: ref %empty_tuple.type = array_index file.%c.var, %int_1.loc13
  146. // CHECK:STDOUT: %.loc13_24.2: init %empty_tuple.type = tuple_init () to %.loc13_38.4 [template = constants.%empty_tuple]
  147. // CHECK:STDOUT: %.loc13_38.5: init %empty_tuple.type = converted %.loc13_24.1, %.loc13_24.2 [template = constants.%empty_tuple]
  148. // CHECK:STDOUT: %int_2: Core.IntLiteral = int_value 2 [template = constants.%int_2]
  149. // CHECK:STDOUT: %.loc13_38.6: ref %empty_tuple.type = array_index file.%c.var, %int_2
  150. // CHECK:STDOUT: %.loc13_28.2: init %empty_tuple.type = tuple_init () to %.loc13_38.6 [template = constants.%empty_tuple]
  151. // CHECK:STDOUT: %.loc13_38.7: init %empty_tuple.type = converted %.loc13_28.1, %.loc13_28.2 [template = constants.%empty_tuple]
  152. // CHECK:STDOUT: %int_3: Core.IntLiteral = int_value 3 [template = constants.%int_3]
  153. // CHECK:STDOUT: %.loc13_38.8: ref %empty_tuple.type = array_index file.%c.var, %int_3
  154. // CHECK:STDOUT: %.loc13_32.2: init %empty_tuple.type = tuple_init () to %.loc13_38.8 [template = constants.%empty_tuple]
  155. // CHECK:STDOUT: %.loc13_38.9: init %empty_tuple.type = converted %.loc13_32.1, %.loc13_32.2 [template = constants.%empty_tuple]
  156. // CHECK:STDOUT: %int_4: Core.IntLiteral = int_value 4 [template = constants.%int_4]
  157. // CHECK:STDOUT: %.loc13_38.10: ref %empty_tuple.type = array_index file.%c.var, %int_4
  158. // CHECK:STDOUT: %.loc13_36.2: init %empty_tuple.type = tuple_init () to %.loc13_38.10 [template = constants.%empty_tuple]
  159. // CHECK:STDOUT: %.loc13_38.11: init %empty_tuple.type = converted %.loc13_36.1, %.loc13_36.2 [template = constants.%empty_tuple]
  160. // CHECK:STDOUT: %.loc13_38.12: init %array_type.c13 = array_init (%.loc13_38.3, %.loc13_38.5, %.loc13_38.7, %.loc13_38.9, %.loc13_38.11) to file.%c.var [template = constants.%array.1cb]
  161. // CHECK:STDOUT: %.loc13_1: init %array_type.c13 = converted %.loc13_38.1, %.loc13_38.12 [template = constants.%array.1cb]
  162. // CHECK:STDOUT: assign file.%c.var, %.loc13_1
  163. // CHECK:STDOUT: return
  164. // CHECK:STDOUT: }
  165. // CHECK:STDOUT: