one_entry.carbon 5.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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/struct/one_entry.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/struct/one_entry.carbon
  10. var x: {.a: i32} = {.a = 4};
  11. var y: {.a: i32} = x;
  12. // CHECK:STDOUT: --- one_entry.carbon
  13. // CHECK:STDOUT:
  14. // CHECK:STDOUT: constants {
  15. // CHECK:STDOUT: %.1: Core.IntLiteral = int_value 32 [template]
  16. // CHECK:STDOUT: %Int.type: type = fn_type @Int [template]
  17. // CHECK:STDOUT: %Int: %Int.type = struct_value () [template]
  18. // CHECK:STDOUT: %i32: type = int_type signed, %.1 [template]
  19. // CHECK:STDOUT: %.2: type = struct_type {.a: %i32} [template]
  20. // CHECK:STDOUT: %.3: Core.IntLiteral = int_value 4 [template]
  21. // CHECK:STDOUT: %.4: type = struct_type {.a: Core.IntLiteral} [template]
  22. // CHECK:STDOUT: %Convert.type.2: type = fn_type @Convert.1, @ImplicitAs(%i32) [template]
  23. // CHECK:STDOUT: %Convert.type.14: type = fn_type @Convert.2, @impl.1(%.1) [template]
  24. // CHECK:STDOUT: %Convert.14: %Convert.type.14 = struct_value () [template]
  25. // CHECK:STDOUT: %.24: <witness> = interface_witness (%Convert.14) [template]
  26. // CHECK:STDOUT: %.25: <bound method> = bound_method %.3, %Convert.14 [template]
  27. // CHECK:STDOUT: %.26: <specific function> = specific_function %.25, @Convert.2(%.1) [template]
  28. // CHECK:STDOUT: %.27: %i32 = int_value 4 [template]
  29. // CHECK:STDOUT: %struct: %.2 = struct_value (%.27) [template]
  30. // CHECK:STDOUT: }
  31. // CHECK:STDOUT:
  32. // CHECK:STDOUT: imports {
  33. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  34. // CHECK:STDOUT: .Int = %import_ref.1
  35. // CHECK:STDOUT: .ImplicitAs = %import_ref.2
  36. // CHECK:STDOUT: import Core//prelude
  37. // CHECK:STDOUT: import Core//prelude/...
  38. // CHECK:STDOUT: }
  39. // CHECK:STDOUT: }
  40. // CHECK:STDOUT:
  41. // CHECK:STDOUT: file {
  42. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  43. // CHECK:STDOUT: .Core = imports.%Core
  44. // CHECK:STDOUT: .x = %x
  45. // CHECK:STDOUT: .y = %y
  46. // CHECK:STDOUT: }
  47. // CHECK:STDOUT: %Core.import = import Core
  48. // CHECK:STDOUT: %.loc11_13.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  49. // CHECK:STDOUT: %int.make_type_signed.loc11: init type = call constants.%Int(%.loc11_13.1) [template = constants.%i32]
  50. // CHECK:STDOUT: %.loc11_13.2: type = value_of_initializer %int.make_type_signed.loc11 [template = constants.%i32]
  51. // CHECK:STDOUT: %.loc11_13.3: type = converted %int.make_type_signed.loc11, %.loc11_13.2 [template = constants.%i32]
  52. // CHECK:STDOUT: %.loc11_16: type = struct_type {.a: %i32} [template = constants.%.2]
  53. // CHECK:STDOUT: %x.var: ref %.2 = var x
  54. // CHECK:STDOUT: %x: ref %.2 = bind_name x, %x.var
  55. // CHECK:STDOUT: %.loc12_13.1: Core.IntLiteral = int_value 32 [template = constants.%.1]
  56. // CHECK:STDOUT: %int.make_type_signed.loc12: init type = call constants.%Int(%.loc12_13.1) [template = constants.%i32]
  57. // CHECK:STDOUT: %.loc12_13.2: type = value_of_initializer %int.make_type_signed.loc12 [template = constants.%i32]
  58. // CHECK:STDOUT: %.loc12_13.3: type = converted %int.make_type_signed.loc12, %.loc12_13.2 [template = constants.%i32]
  59. // CHECK:STDOUT: %.loc12_16: type = struct_type {.a: %i32} [template = constants.%.2]
  60. // CHECK:STDOUT: %y.var: ref %.2 = var y
  61. // CHECK:STDOUT: %y: ref %.2 = bind_name y, %y.var
  62. // CHECK:STDOUT: }
  63. // CHECK:STDOUT:
  64. // CHECK:STDOUT: fn @__global_init() {
  65. // CHECK:STDOUT: !entry:
  66. // CHECK:STDOUT: %.loc11_26: Core.IntLiteral = int_value 4 [template = constants.%.3]
  67. // CHECK:STDOUT: %.loc11_27.1: %.4 = struct_literal (%.loc11_26)
  68. // CHECK:STDOUT: %.loc11_27.2: %Convert.type.2 = interface_witness_access constants.%.24, element0 [template = constants.%Convert.14]
  69. // CHECK:STDOUT: %.loc11_27.3: <bound method> = bound_method %.loc11_26, %.loc11_27.2 [template = constants.%.25]
  70. // CHECK:STDOUT: %.loc11_27.4: <specific function> = specific_function %.loc11_27.3, @Convert.2(constants.%.1) [template = constants.%.26]
  71. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %.loc11_27.4(%.loc11_26) [template = constants.%.27]
  72. // CHECK:STDOUT: %.loc11_27.5: init %i32 = converted %.loc11_26, %int.convert_checked [template = constants.%.27]
  73. // CHECK:STDOUT: %.loc11_27.6: init %.2 = struct_init (%.loc11_27.5) to file.%x.var [template = constants.%struct]
  74. // CHECK:STDOUT: %.loc11_28: init %.2 = converted %.loc11_27.1, %.loc11_27.6 [template = constants.%struct]
  75. // CHECK:STDOUT: assign file.%x.var, %.loc11_28
  76. // CHECK:STDOUT: %x.ref: ref %.2 = name_ref x, file.%x
  77. // CHECK:STDOUT: %.loc12_20.1: ref %i32 = struct_access %x.ref, element0
  78. // CHECK:STDOUT: %.loc12_20.2: %i32 = bind_value %.loc12_20.1
  79. // CHECK:STDOUT: %.loc12_20.3: init %.2 = struct_init (%.loc12_20.2) to file.%y.var
  80. // CHECK:STDOUT: %.loc12_21: init %.2 = converted %x.ref, %.loc12_20.3
  81. // CHECK:STDOUT: assign file.%y.var, %.loc12_21
  82. // CHECK:STDOUT: return
  83. // CHECK:STDOUT: }
  84. // CHECK:STDOUT: