Files
carbon-lang/toolchain/check/testdata/pointer/nested_const.carbon
T
Geoff RomerandRichard Smith a112cbde5c Model type expressions as regions (#4698)
This is a precondition for enabling the new pattern-matching subsystem
to support binding patterns that have `if` expressions in the type
position.

---------

Co-authored-by: Richard Smith <richard@metafoo.co.uk>
2024-12-19 21:41:06 +00:00

79 lines
4.1 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
// TIP: To test this file alone, run:
// TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/pointer/nested_const.carbon
// TIP: To dump output, run:
// TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/pointer/nested_const.carbon
// TODO: The `const` in the return type should not be necessary.
fn F(p: const (const (const i32*)*)) -> const i32 {
return **p;
}
// CHECK:STDOUT: --- nested_const.carbon
// CHECK:STDOUT:
// CHECK:STDOUT: constants {
// CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template]
// CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [template]
// CHECK:STDOUT: %const.1: type = const_type %i32 [template]
// CHECK:STDOUT: %ptr.1: type = ptr_type %const.1 [template]
// CHECK:STDOUT: %const.2: type = const_type %ptr.1 [template]
// CHECK:STDOUT: %ptr.2: type = ptr_type %const.2 [template]
// CHECK:STDOUT: %const.3: type = const_type %ptr.2 [template]
// CHECK:STDOUT: %F.type: type = fn_type @F [template]
// CHECK:STDOUT: %F: %F.type = struct_value () [template]
// CHECK:STDOUT: }
// CHECK:STDOUT:
// CHECK:STDOUT: imports {
// CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
// CHECK:STDOUT: .Int = %import_ref.1
// CHECK:STDOUT: import Core//prelude
// CHECK:STDOUT: import Core//prelude/...
// CHECK:STDOUT: }
// CHECK:STDOUT: }
// CHECK:STDOUT:
// CHECK:STDOUT: file {
// CHECK:STDOUT: package: <namespace> = namespace [template] {
// CHECK:STDOUT: .Core = imports.%Core
// CHECK:STDOUT: .F = %F.decl
// CHECK:STDOUT: }
// CHECK:STDOUT: %Core.import = import Core
// CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {
// CHECK:STDOUT: %p.patt: %const.3 = binding_pattern p
// CHECK:STDOUT: %p.param_patt: %const.3 = value_param_pattern %p.patt, runtime_param0
// CHECK:STDOUT: %return.patt: %const.1 = return_slot_pattern
// CHECK:STDOUT: %return.param_patt: %const.1 = out_param_pattern %return.patt, runtime_param1
// CHECK:STDOUT: } {
// CHECK:STDOUT: %int_32.loc12_47: Core.IntLiteral = int_value 32 [template = constants.%int_32]
// CHECK:STDOUT: %i32.loc12_47: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
// CHECK:STDOUT: %const.loc12_41: type = const_type %i32 [template = constants.%const.1]
// CHECK:STDOUT: %p.param: %const.3 = value_param runtime_param0
// CHECK:STDOUT: %.loc12: type = splice_block %const.loc12_9 [template = constants.%const.3] {
// CHECK:STDOUT: %int_32.loc12_29: Core.IntLiteral = int_value 32 [template = constants.%int_32]
// CHECK:STDOUT: %i32.loc12_29: type = class_type @Int, @Int(constants.%int_32) [template = constants.%i32]
// CHECK:STDOUT: %const.loc12_23: type = const_type %i32 [template = constants.%const.1]
// CHECK:STDOUT: %ptr.loc12_32: type = ptr_type %const.1 [template = constants.%ptr.1]
// CHECK:STDOUT: %const.loc12_16: type = const_type %ptr.1 [template = constants.%const.2]
// CHECK:STDOUT: %ptr.loc12_34: type = ptr_type %const.2 [template = constants.%ptr.2]
// CHECK:STDOUT: %const.loc12_9: type = const_type %ptr.2 [template = constants.%const.3]
// CHECK:STDOUT: }
// CHECK:STDOUT: %p: %const.3 = bind_name p, %p.param
// CHECK:STDOUT: %return.param: ref %const.1 = out_param runtime_param1
// CHECK:STDOUT: %return: ref %const.1 = return_slot %return.param
// CHECK:STDOUT: }
// CHECK:STDOUT: }
// CHECK:STDOUT:
// CHECK:STDOUT: fn @F(%p.param_patt: %const.3) -> %const.1 {
// CHECK:STDOUT: !entry:
// CHECK:STDOUT: %p.ref: %const.3 = name_ref p, %p
// CHECK:STDOUT: %.loc13_11.1: ref %const.2 = deref %p.ref
// CHECK:STDOUT: %.loc13_11.2: %const.2 = bind_value %.loc13_11.1
// CHECK:STDOUT: %.loc13_10.1: ref %const.1 = deref %.loc13_11.2
// CHECK:STDOUT: %.loc13_10.2: %const.1 = bind_value %.loc13_10.1
// CHECK:STDOUT: return %.loc13_10.2
// CHECK:STDOUT: }
// CHECK:STDOUT: