nested_struct_in_place.carbon 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. fn F() -> (i32, i32, i32);
  7. fn G() {
  8. var v: {.a: (i32, i32, i32), .b: (i32, i32, i32)} = {.a = F(), .b = F()};
  9. }
  10. // CHECK:STDOUT: --- nested_struct_in_place.carbon
  11. // CHECK:STDOUT:
  12. // CHECK:STDOUT: constants {
  13. // CHECK:STDOUT: %.1: type = tuple_type (type, type, type) [template]
  14. // CHECK:STDOUT: %.2: type = tuple_type (i32, i32, i32) [template]
  15. // CHECK:STDOUT: %.3: type = ptr_type (i32, i32, i32) [template]
  16. // CHECK:STDOUT: %.4: type = struct_type {.a: (i32, i32, i32), .b: (i32, i32, i32)} [template]
  17. // CHECK:STDOUT: %.5: type = struct_type {.a: (i32, i32, i32)*, .b: (i32, i32, i32)*} [template]
  18. // CHECK:STDOUT: %.6: type = ptr_type {.a: (i32, i32, i32)*, .b: (i32, i32, i32)*} [template]
  19. // CHECK:STDOUT: }
  20. // CHECK:STDOUT:
  21. // CHECK:STDOUT: file {
  22. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  23. // CHECK:STDOUT: .F = %F
  24. // CHECK:STDOUT: .G = %G
  25. // CHECK:STDOUT: }
  26. // CHECK:STDOUT: %F: <function> = fn_decl @F [template] {
  27. // CHECK:STDOUT: %.loc7_25.1: (type, type, type) = tuple_literal (i32, i32, i32)
  28. // CHECK:STDOUT: %.loc7_25.2: type = converted %.loc7_25.1, constants.%.2 [template = constants.%.2]
  29. // CHECK:STDOUT: @F.%return: ref (i32, i32, i32) = var <return slot>
  30. // CHECK:STDOUT: }
  31. // CHECK:STDOUT: %G: <function> = fn_decl @G [template] {}
  32. // CHECK:STDOUT: }
  33. // CHECK:STDOUT:
  34. // CHECK:STDOUT: fn @F() -> %return: (i32, i32, i32);
  35. // CHECK:STDOUT:
  36. // CHECK:STDOUT: fn @G() {
  37. // CHECK:STDOUT: !entry:
  38. // CHECK:STDOUT: %.loc10_29.1: (type, type, type) = tuple_literal (i32, i32, i32)
  39. // CHECK:STDOUT: %.loc10_29.2: type = converted %.loc10_29.1, constants.%.2 [template = constants.%.2]
  40. // CHECK:STDOUT: %.loc10_50.1: (type, type, type) = tuple_literal (i32, i32, i32)
  41. // CHECK:STDOUT: %.loc10_50.2: type = converted %.loc10_50.1, constants.%.2 [template = constants.%.2]
  42. // CHECK:STDOUT: %.loc10_51: type = struct_type {.a: (i32, i32, i32), .b: (i32, i32, i32)} [template = constants.%.4]
  43. // CHECK:STDOUT: %v.var: ref {.a: (i32, i32, i32), .b: (i32, i32, i32)} = var v
  44. // CHECK:STDOUT: %v: ref {.a: (i32, i32, i32), .b: (i32, i32, i32)} = bind_name v, %v.var
  45. // CHECK:STDOUT: %F.ref.loc10_61: <function> = name_ref F, file.%F [template = file.%F]
  46. // CHECK:STDOUT: %.loc10_74.1: ref (i32, i32, i32) = struct_access %v.var, element0
  47. // CHECK:STDOUT: %.loc10_62: init (i32, i32, i32) = call %F.ref.loc10_61() to %.loc10_74.1
  48. // CHECK:STDOUT: %F.ref.loc10_71: <function> = name_ref F, file.%F [template = file.%F]
  49. // CHECK:STDOUT: %.loc10_74.2: ref (i32, i32, i32) = struct_access %v.var, element1
  50. // CHECK:STDOUT: %.loc10_72: init (i32, i32, i32) = call %F.ref.loc10_71() to %.loc10_74.2
  51. // CHECK:STDOUT: %.loc10_74.3: {.a: (i32, i32, i32), .b: (i32, i32, i32)} = struct_literal (%.loc10_62, %.loc10_72)
  52. // CHECK:STDOUT: %.loc10_74.4: init {.a: (i32, i32, i32), .b: (i32, i32, i32)} = struct_init (%.loc10_62, %.loc10_72) to %v.var
  53. // CHECK:STDOUT: %.loc10_74.5: init {.a: (i32, i32, i32), .b: (i32, i32, i32)} = converted %.loc10_74.3, %.loc10_74.4
  54. // CHECK:STDOUT: assign %v.var, %.loc10_74.5
  55. // CHECK:STDOUT: return
  56. // CHECK:STDOUT: }
  57. // CHECK:STDOUT: