Files
carbon-lang/toolchain/check/testdata/const/basic.carbon
T
Richard Smith 797b14eb8e Import ImplWitnessTable into the imports block instead of the constants block. (#5374)
Don't import `ImplWitnessTable` into the `constants` block, because we
generally don't put `Unique` constants there. This matches the handling
of the other kinds of `Unique` constants. In order to keep the
instruction visible in formatted SemIR, add it to the `imports` block
instead.

Also fix a bug in the instruction formatter that resulted in
instructions in the `imports` block being omitted from the output if
they were only referenced by earlier instructions in the `imports` block
and by instructions in the `constants` block. This was already resulting
in some referenced instructions being omitted from the output, but also
occurred frequently for `impl_witness_table` instructions after this
change because it is common for the only reference to those instructions
to be from `impl_witness` instructions in the `constants` block.
2025-05-01 00:08:43 +00:00

113 lines
6.4 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/const/basic.carbon
// TIP: To dump output, run:
// TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/const/basic.carbon
fn A(p: const i32**) -> const i32** {
return p;
}
fn B(p: const (i32*)) -> const (i32*) {
return p;
}
// CHECK:STDOUT: --- basic.carbon
// CHECK:STDOUT:
// CHECK:STDOUT: constants {
// CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
// CHECK:STDOUT: %Int.type: type = generic_class_type @Int [concrete]
// CHECK:STDOUT: %Int.generic: %Int.type = struct_value () [concrete]
// CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
// CHECK:STDOUT: %const.20a: type = const_type %i32 [concrete]
// CHECK:STDOUT: %ptr.36b: type = ptr_type %const.20a [concrete]
// CHECK:STDOUT: %ptr.3bc: type = ptr_type %ptr.36b [concrete]
// CHECK:STDOUT: %pattern_type.1d4: type = pattern_type %ptr.3bc [concrete]
// CHECK:STDOUT: %A.type: type = fn_type @A [concrete]
// CHECK:STDOUT: %A: %A.type = struct_value () [concrete]
// CHECK:STDOUT: %ptr.235: type = ptr_type %i32 [concrete]
// CHECK:STDOUT: %const.12f: type = const_type %ptr.235 [concrete]
// CHECK:STDOUT: %pattern_type.63b: type = pattern_type %const.12f [concrete]
// CHECK:STDOUT: %B.type: type = fn_type @B [concrete]
// CHECK:STDOUT: %B: %B.type = struct_value () [concrete]
// CHECK:STDOUT: }
// CHECK:STDOUT:
// CHECK:STDOUT: imports {
// CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
// CHECK:STDOUT: .Int = %Core.Int
// CHECK:STDOUT: import Core//prelude
// CHECK:STDOUT: import Core//prelude/...
// CHECK:STDOUT: }
// CHECK:STDOUT: %Core.Int: %Int.type = import_ref Core//prelude/types/int, Int, loaded [concrete = constants.%Int.generic]
// CHECK:STDOUT: }
// CHECK:STDOUT:
// CHECK:STDOUT: file {
// CHECK:STDOUT: package: <namespace> = namespace [concrete] {
// CHECK:STDOUT: .Core = imports.%Core
// CHECK:STDOUT: .A = %A.decl
// CHECK:STDOUT: .B = %B.decl
// CHECK:STDOUT: }
// CHECK:STDOUT: %Core.import = import Core
// CHECK:STDOUT: %A.decl: %A.type = fn_decl @A [concrete = constants.%A] {
// CHECK:STDOUT: %p.patt: %pattern_type.1d4 = binding_pattern p [concrete]
// CHECK:STDOUT: %p.param_patt: %pattern_type.1d4 = value_param_pattern %p.patt, call_param0 [concrete]
// CHECK:STDOUT: %return.patt: %pattern_type.1d4 = return_slot_pattern [concrete]
// CHECK:STDOUT: %return.param_patt: %pattern_type.1d4 = out_param_pattern %return.patt, call_param1 [concrete]
// CHECK:STDOUT: } {
// CHECK:STDOUT: %int_32.loc11_31: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
// CHECK:STDOUT: %i32.loc11_31: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
// CHECK:STDOUT: %const.loc11_25: type = const_type %i32.loc11_31 [concrete = constants.%const.20a]
// CHECK:STDOUT: %ptr.loc11_34: type = ptr_type %const.loc11_25 [concrete = constants.%ptr.36b]
// CHECK:STDOUT: %ptr.loc11_35: type = ptr_type %ptr.loc11_34 [concrete = constants.%ptr.3bc]
// CHECK:STDOUT: %p.param: %ptr.3bc = value_param call_param0
// CHECK:STDOUT: %.loc11: type = splice_block %ptr.loc11_19 [concrete = constants.%ptr.3bc] {
// CHECK:STDOUT: %int_32.loc11_15: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
// CHECK:STDOUT: %i32.loc11_15: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
// CHECK:STDOUT: %const.loc11_9: type = const_type %i32.loc11_15 [concrete = constants.%const.20a]
// CHECK:STDOUT: %ptr.loc11_18: type = ptr_type %const.loc11_9 [concrete = constants.%ptr.36b]
// CHECK:STDOUT: %ptr.loc11_19: type = ptr_type %ptr.loc11_18 [concrete = constants.%ptr.3bc]
// CHECK:STDOUT: }
// CHECK:STDOUT: %p: %ptr.3bc = bind_name p, %p.param
// CHECK:STDOUT: %return.param: ref %ptr.3bc = out_param call_param1
// CHECK:STDOUT: %return: ref %ptr.3bc = return_slot %return.param
// CHECK:STDOUT: }
// CHECK:STDOUT: %B.decl: %B.type = fn_decl @B [concrete = constants.%B] {
// CHECK:STDOUT: %p.patt: %pattern_type.63b = binding_pattern p [concrete]
// CHECK:STDOUT: %p.param_patt: %pattern_type.63b = value_param_pattern %p.patt, call_param0 [concrete]
// CHECK:STDOUT: %return.patt: %pattern_type.63b = return_slot_pattern [concrete]
// CHECK:STDOUT: %return.param_patt: %pattern_type.63b = out_param_pattern %return.patt, call_param1 [concrete]
// CHECK:STDOUT: } {
// CHECK:STDOUT: %int_32.loc15_33: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
// CHECK:STDOUT: %i32.loc15_33: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
// CHECK:STDOUT: %ptr.loc15_36: type = ptr_type %i32.loc15_33 [concrete = constants.%ptr.235]
// CHECK:STDOUT: %const.loc15_26: type = const_type %ptr.loc15_36 [concrete = constants.%const.12f]
// CHECK:STDOUT: %p.param: %const.12f = value_param call_param0
// CHECK:STDOUT: %.loc15: type = splice_block %const.loc15_9 [concrete = constants.%const.12f] {
// CHECK:STDOUT: %int_32.loc15_16: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
// CHECK:STDOUT: %i32.loc15_16: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
// CHECK:STDOUT: %ptr.loc15_19: type = ptr_type %i32.loc15_16 [concrete = constants.%ptr.235]
// CHECK:STDOUT: %const.loc15_9: type = const_type %ptr.loc15_19 [concrete = constants.%const.12f]
// CHECK:STDOUT: }
// CHECK:STDOUT: %p: %const.12f = bind_name p, %p.param
// CHECK:STDOUT: %return.param: ref %const.12f = out_param call_param1
// CHECK:STDOUT: %return: ref %const.12f = return_slot %return.param
// CHECK:STDOUT: }
// CHECK:STDOUT: }
// CHECK:STDOUT:
// CHECK:STDOUT: fn @A(%p.param: %ptr.3bc) -> %ptr.3bc {
// CHECK:STDOUT: !entry:
// CHECK:STDOUT: %p.ref: %ptr.3bc = name_ref p, %p
// CHECK:STDOUT: return %p.ref
// CHECK:STDOUT: }
// CHECK:STDOUT:
// CHECK:STDOUT: fn @B(%p.param: %const.12f) -> %const.12f {
// CHECK:STDOUT: !entry:
// CHECK:STDOUT: %p.ref: %const.12f = name_ref p, %p
// CHECK:STDOUT: return %p.ref
// CHECK:STDOUT: }
// CHECK:STDOUT: