init.carbon 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. class Class {
  7. var n: i32;
  8. var next: Class*;
  9. }
  10. fn Make(n: i32, next: Class*) -> Class {
  11. return {.n = n, .next = next};
  12. }
  13. fn MakeReorder(n: i32, next: Class*) -> Class {
  14. return {.next = next, .n = n};
  15. }
  16. // CHECK:STDOUT: constants {
  17. // CHECK:STDOUT: %.loc10_1.1: type = struct_type {.n: i32, .next: Class*}
  18. // CHECK:STDOUT: %.loc10_1.2: type = ptr_type {.n: i32, .next: Class*}
  19. // CHECK:STDOUT: %.loc17: type = struct_type {.next: Class*, .n: i32}
  20. // CHECK:STDOUT: }
  21. // CHECK:STDOUT:
  22. // CHECK:STDOUT: file "init.carbon" {
  23. // CHECK:STDOUT: class_declaration @Class, ()
  24. // CHECK:STDOUT: %Class: type = class_type @Class
  25. // CHECK:STDOUT: %Make: <function> = fn_decl @Make
  26. // CHECK:STDOUT: %MakeReorder: <function> = fn_decl @MakeReorder
  27. // CHECK:STDOUT: }
  28. // CHECK:STDOUT:
  29. // CHECK:STDOUT: class @Class {
  30. // CHECK:STDOUT: %.loc8_8.1: type = unbound_field_type Class, i32
  31. // CHECK:STDOUT: %.loc8_8.2: <unbound field of class Class> = field "n", member0
  32. // CHECK:STDOUT: %n: <unbound field of class Class> = bind_name "n", %.loc8_8.2
  33. // CHECK:STDOUT: %Class.ref: type = name_reference "Class", file.%Class
  34. // CHECK:STDOUT: %.loc9_18: type = ptr_type Class
  35. // CHECK:STDOUT: %.loc9_11.1: type = unbound_field_type Class, Class*
  36. // CHECK:STDOUT: %.loc9_11.2: <unbound field of class Class> = field "next", member1
  37. // CHECK:STDOUT: %next: <unbound field of class Class> = bind_name "next", %.loc9_11.2
  38. // CHECK:STDOUT:
  39. // CHECK:STDOUT: !members:
  40. // CHECK:STDOUT: .n = %n
  41. // CHECK:STDOUT: .next = %next
  42. // CHECK:STDOUT: }
  43. // CHECK:STDOUT:
  44. // CHECK:STDOUT: fn @Make(%n: i32, %next: Class*) -> %return: Class {
  45. // CHECK:STDOUT: !entry:
  46. // CHECK:STDOUT: %n.ref: i32 = name_reference "n", %n
  47. // CHECK:STDOUT: %next.ref: Class* = name_reference "next", %next
  48. // CHECK:STDOUT: %.loc13_31.1: {.n: i32, .next: Class*} = struct_literal (%n.ref, %next.ref)
  49. // CHECK:STDOUT: %.loc13_31.2: ref i32 = class_field_access %return, member0
  50. // CHECK:STDOUT: %.loc13_31.3: init i32 = initialize_from %n.ref to %.loc13_31.2
  51. // CHECK:STDOUT: %.loc13_31.4: ref Class* = class_field_access %return, member1
  52. // CHECK:STDOUT: %.loc13_31.5: init Class* = initialize_from %next.ref to %.loc13_31.4
  53. // CHECK:STDOUT: %.loc13_31.6: init Class = class_init %.loc13_31.1, (%.loc13_31.3, %.loc13_31.5)
  54. // CHECK:STDOUT: return %.loc13_31.6
  55. // CHECK:STDOUT: }
  56. // CHECK:STDOUT:
  57. // CHECK:STDOUT: fn @MakeReorder(%n: i32, %next: Class*) -> %return: Class {
  58. // CHECK:STDOUT: !entry:
  59. // CHECK:STDOUT: %next.ref: Class* = name_reference "next", %next
  60. // CHECK:STDOUT: %n.ref: i32 = name_reference "n", %n
  61. // CHECK:STDOUT: %.loc17_31.1: {.next: Class*, .n: i32} = struct_literal (%next.ref, %n.ref)
  62. // CHECK:STDOUT: %.loc17_31.2: ref i32 = class_field_access %return, member1
  63. // CHECK:STDOUT: %.loc17_31.3: init i32 = initialize_from %n.ref to %.loc17_31.2
  64. // CHECK:STDOUT: %.loc17_31.4: ref Class* = class_field_access %return, member0
  65. // CHECK:STDOUT: %.loc17_31.5: init Class* = initialize_from %next.ref to %.loc17_31.4
  66. // CHECK:STDOUT: %.loc17_31.6: init Class = class_init %.loc17_31.1, (%.loc17_31.3, %.loc17_31.5)
  67. // CHECK:STDOUT: return %.loc17_31.6
  68. // CHECK:STDOUT: }