mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
This removes the builtin FunctionType, replacing it with a FunctionType instruction. The constant for a FunctionDecl is now a StructValue with type of FunctionType. Note this means a function declaration produces _both_ a type, and a value of the type. This has some consequences in terms of circularity, and makes the importing of function declarations a little more complex. It'll get particularly peculiar for imports because of the behavior of the reference, but that's a known issue due to other things such as `alias`. The impact will hopefully be contained to ResolvePrevInstForMerge (and ImportRefs). To note a small formatting change in diagnostics: ``` - // CHECK:STDERR: fail_member_lookup.carbon:[[@LINE+4]]:3: ERROR: Value of type `<associated <function> in Interface>` is not callable. + // CHECK:STDERR: fail_member_lookup.carbon:[[@LINE+4]]:3: ERROR: Value of type `<associated F in Interface>` is not callable. - // CHECK:STDERR: fail_todo_facet_lookup.carbon:[[@LINE+4]]:3: ERROR: Value of type `<associated <function> in Interface>` is not callable. + // CHECK:STDERR: fail_todo_facet_lookup.carbon:[[@LINE+4]]:3: ERROR: Value of type `<associated F in Interface>` is not callable. ``` --------- Co-authored-by: Richard Smith <richard@metafoo.co.uk>
54 lines
2.0 KiB
Plaintext
54 lines
2.0 KiB
Plaintext
// 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
|
|
|
|
fn F() -> i32 {
|
|
var n: i32 = 0;
|
|
var p: i32* = &n;
|
|
|
|
return *p;
|
|
}
|
|
|
|
// CHECK:STDOUT: --- basic.carbon
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: constants {
|
|
// CHECK:STDOUT: %F: type = fn_type @F [template]
|
|
// CHECK:STDOUT: %.1: type = tuple_type () [template]
|
|
// CHECK:STDOUT: %struct: F = struct_value () [template]
|
|
// CHECK:STDOUT: %.2: i32 = int_literal 0 [template]
|
|
// CHECK:STDOUT: %.3: type = ptr_type i32 [template]
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: file {
|
|
// CHECK:STDOUT: package: <namespace> = namespace [template] {
|
|
// CHECK:STDOUT: .Core = %Core
|
|
// CHECK:STDOUT: .F = %F.decl
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
|
|
// CHECK:STDOUT: %F.decl: F = fn_decl @F [template = constants.%struct] {
|
|
// CHECK:STDOUT: @F.%return: ref i32 = var <return slot>
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: fn @F() -> i32 {
|
|
// CHECK:STDOUT: !entry:
|
|
// CHECK:STDOUT: %n.var: ref i32 = var n
|
|
// CHECK:STDOUT: %n: ref i32 = bind_name n, %n.var
|
|
// CHECK:STDOUT: %.loc8: i32 = int_literal 0 [template = constants.%.2]
|
|
// CHECK:STDOUT: assign %n.var, %.loc8
|
|
// CHECK:STDOUT: %.loc9_13: type = ptr_type i32 [template = constants.%.3]
|
|
// CHECK:STDOUT: %p.var: ref i32* = var p
|
|
// CHECK:STDOUT: %p: ref i32* = bind_name p, %p.var
|
|
// CHECK:STDOUT: %n.ref: ref i32 = name_ref n, %n
|
|
// CHECK:STDOUT: %.loc9_17: i32* = addr_of %n.ref
|
|
// CHECK:STDOUT: assign %p.var, %.loc9_17
|
|
// CHECK:STDOUT: %p.ref: ref i32* = name_ref p, %p
|
|
// CHECK:STDOUT: %.loc11_11: i32* = bind_value %p.ref
|
|
// CHECK:STDOUT: %.loc11_10.1: ref i32 = deref %.loc11_11
|
|
// CHECK:STDOUT: %.loc11_10.2: i32 = bind_value %.loc11_10.1
|
|
// CHECK:STDOUT: return %.loc11_10.2
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT:
|