| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- // AUTOUPDATE
- class Class {
- var n: i32;
- var next: Class*;
- }
- fn Make(n: i32, next: Class*) -> Class {
- return {.n = n, .next = next};
- }
- fn MakeReorder(n: i32, next: Class*) -> Class {
- return {.next = next, .n = n};
- }
- // CHECK:STDOUT: --- init.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %Class: type = class_type @Class [template]
- // CHECK:STDOUT: %.1: type = unbound_element_type Class, i32 [template]
- // CHECK:STDOUT: %.2: type = ptr_type Class [template]
- // CHECK:STDOUT: %.3: type = unbound_element_type Class, Class* [template]
- // CHECK:STDOUT: %.4: type = struct_type {.n: i32, .next: Class*} [template]
- // CHECK:STDOUT: %.5: type = ptr_type {.n: i32, .next: Class*} [template]
- // CHECK:STDOUT: %.6: type = struct_type {.next: Class*, .n: i32} [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace {.Class = %Class.decl, .Make = %Make, .MakeReorder = %MakeReorder} [template]
- // CHECK:STDOUT: %Class.decl = class_decl @Class, ()
- // CHECK:STDOUT: %Make: <function> = fn_decl @Make [template]
- // CHECK:STDOUT: %MakeReorder: <function> = fn_decl @MakeReorder [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @Class {
- // CHECK:STDOUT: %.loc8: <unbound element of class Class> = field_decl n, element0 [template]
- // CHECK:STDOUT: %Class.ref: type = name_ref Class, constants.%Class [template = constants.%Class]
- // CHECK:STDOUT: %.loc9_18: type = ptr_type Class [template = constants.%.2]
- // CHECK:STDOUT: %.loc9_11: <unbound element of class Class> = field_decl next, element1 [template]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .n = %.loc8
- // CHECK:STDOUT: .next = %.loc9_11
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @Make(%n: i32, %next: Class*) -> %return: Class {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %n.ref: i32 = name_ref n, %n
- // CHECK:STDOUT: %next.ref: Class* = name_ref next, %next
- // CHECK:STDOUT: %.loc13_31.1: {.n: i32, .next: Class*} = struct_literal (%n.ref, %next.ref)
- // CHECK:STDOUT: %.loc13_31.2: ref i32 = class_element_access %return, element0
- // CHECK:STDOUT: %.loc13_31.3: init i32 = initialize_from %n.ref to %.loc13_31.2
- // CHECK:STDOUT: %.loc13_31.4: ref Class* = class_element_access %return, element1
- // CHECK:STDOUT: %.loc13_31.5: init Class* = initialize_from %next.ref to %.loc13_31.4
- // CHECK:STDOUT: %.loc13_31.6: init Class = class_init (%.loc13_31.3, %.loc13_31.5), %return
- // CHECK:STDOUT: %.loc13_31.7: init Class = converted %.loc13_31.1, %.loc13_31.6
- // CHECK:STDOUT: return %.loc13_31.7
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @MakeReorder(%n: i32, %next: Class*) -> %return: Class {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %next.ref: Class* = name_ref next, %next
- // CHECK:STDOUT: %n.ref: i32 = name_ref n, %n
- // CHECK:STDOUT: %.loc17_31.1: {.next: Class*, .n: i32} = struct_literal (%next.ref, %n.ref)
- // CHECK:STDOUT: %.loc17_31.2: ref i32 = class_element_access %return, element1
- // CHECK:STDOUT: %.loc17_31.3: init i32 = initialize_from %n.ref to %.loc17_31.2
- // CHECK:STDOUT: %.loc17_31.4: ref Class* = class_element_access %return, element0
- // CHECK:STDOUT: %.loc17_31.5: init Class* = initialize_from %next.ref to %.loc17_31.4
- // CHECK:STDOUT: %.loc17_31.6: init Class = class_init (%.loc17_31.3, %.loc17_31.5), %return
- // CHECK:STDOUT: %.loc17_31.7: init Class = converted %.loc17_31.1, %.loc17_31.6
- // CHECK:STDOUT: return %.loc17_31.7
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
|