init.carbon 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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: --- init.carbon
  17. // CHECK:STDOUT:
  18. // CHECK:STDOUT: constants {
  19. // CHECK:STDOUT: %.loc10_1.1: type = struct_type {.n: i32, .next: Class*}
  20. // CHECK:STDOUT: %.loc10_1.2: type = ptr_type {.n: i32, .next: Class*}
  21. // CHECK:STDOUT: %.loc17: type = struct_type {.next: Class*, .n: i32}
  22. // CHECK:STDOUT: }
  23. // CHECK:STDOUT:
  24. // CHECK:STDOUT: file {
  25. // CHECK:STDOUT: %Class.decl = class_decl @Class, ()
  26. // CHECK:STDOUT: %Class: type = class_type @Class
  27. // CHECK:STDOUT: %Make: <function> = fn_decl @Make
  28. // CHECK:STDOUT: %MakeReorder: <function> = fn_decl @MakeReorder
  29. // CHECK:STDOUT: }
  30. // CHECK:STDOUT:
  31. // CHECK:STDOUT: class @Class {
  32. // CHECK:STDOUT: %.loc8_8.1: type = unbound_element_type Class, i32
  33. // CHECK:STDOUT: %.loc8_8.2: <unbound field of class Class> = field n, element0
  34. // CHECK:STDOUT: %n: <unbound field of class Class> = bind_name n, %.loc8_8.2
  35. // CHECK:STDOUT: %Class.ref: type = name_ref Class, file.%Class
  36. // CHECK:STDOUT: %.loc9_18: type = ptr_type Class
  37. // CHECK:STDOUT: %.loc9_11.1: type = unbound_element_type Class, Class*
  38. // CHECK:STDOUT: %.loc9_11.2: <unbound field of class Class> = field next, element1
  39. // CHECK:STDOUT: %next: <unbound field of class Class> = bind_name next, %.loc9_11.2
  40. // CHECK:STDOUT:
  41. // CHECK:STDOUT: !members:
  42. // CHECK:STDOUT: .n = %n
  43. // CHECK:STDOUT: .next = %next
  44. // CHECK:STDOUT: }
  45. // CHECK:STDOUT:
  46. // CHECK:STDOUT: fn @Make(%n: i32, %next: Class*) -> %return: Class {
  47. // CHECK:STDOUT: !entry:
  48. // CHECK:STDOUT: %n.ref: i32 = name_ref n, %n
  49. // CHECK:STDOUT: %next.ref: Class* = name_ref next, %next
  50. // CHECK:STDOUT: %.loc13_31.1: {.n: i32, .next: Class*} = struct_literal (%n.ref, %next.ref)
  51. // CHECK:STDOUT: %.loc13_31.2: ref i32 = class_element_access %return, element0
  52. // CHECK:STDOUT: %.loc13_31.3: init i32 = initialize_from %n.ref to %.loc13_31.2
  53. // CHECK:STDOUT: %.loc13_31.4: ref Class* = class_element_access %return, element1
  54. // CHECK:STDOUT: %.loc13_31.5: init Class* = initialize_from %next.ref to %.loc13_31.4
  55. // CHECK:STDOUT: %.loc13_31.6: init Class = class_init (%.loc13_31.3, %.loc13_31.5), %return
  56. // CHECK:STDOUT: %.loc13_31.7: init Class = converted %.loc13_31.1, %.loc13_31.6
  57. // CHECK:STDOUT: return %.loc13_31.7
  58. // CHECK:STDOUT: }
  59. // CHECK:STDOUT:
  60. // CHECK:STDOUT: fn @MakeReorder(%n: i32, %next: Class*) -> %return: Class {
  61. // CHECK:STDOUT: !entry:
  62. // CHECK:STDOUT: %next.ref: Class* = name_ref next, %next
  63. // CHECK:STDOUT: %n.ref: i32 = name_ref n, %n
  64. // CHECK:STDOUT: %.loc17_31.1: {.next: Class*, .n: i32} = struct_literal (%next.ref, %n.ref)
  65. // CHECK:STDOUT: %.loc17_31.2: ref i32 = class_element_access %return, element1
  66. // CHECK:STDOUT: %.loc17_31.3: init i32 = initialize_from %n.ref to %.loc17_31.2
  67. // CHECK:STDOUT: %.loc17_31.4: ref Class* = class_element_access %return, element0
  68. // CHECK:STDOUT: %.loc17_31.5: init Class* = initialize_from %next.ref to %.loc17_31.4
  69. // CHECK:STDOUT: %.loc17_31.6: init Class = class_init (%.loc17_31.3, %.loc17_31.5), %return
  70. // CHECK:STDOUT: %.loc17_31.7: init Class = converted %.loc17_31.1, %.loc17_31.6
  71. // CHECK:STDOUT: return %.loc17_31.7
  72. // CHECK:STDOUT: }
  73. // CHECK:STDOUT: