-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Import support for array types. (#4675)
- Loading branch information
Showing
2 changed files
with
160 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
// 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/array/import.carbon | ||
// TIP: To dump output, run: | ||
// TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/array/import.carbon | ||
|
||
// --- library.carbon | ||
|
||
library "[[@TEST_NAME]]"; | ||
|
||
fn F() -> [i32; 42]; | ||
|
||
// --- user.carbon | ||
|
||
import library "library"; | ||
|
||
fn G(n: i32) -> i32 { | ||
return F()[n]; | ||
} | ||
|
||
// CHECK:STDOUT: --- library.carbon | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: constants { | ||
// CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template] | ||
// CHECK:STDOUT: %Int.type: type = fn_type @Int [template] | ||
// CHECK:STDOUT: %Int: %Int.type = struct_value () [template] | ||
// CHECK:STDOUT: %i32: type = int_type signed, %int_32 [template] | ||
// CHECK:STDOUT: %int_42: Core.IntLiteral = int_value 42 [template] | ||
// CHECK:STDOUT: %array_type: type = array_type %int_42, %i32 [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 | ||
// 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: %return.patt: %array_type = return_slot_pattern | ||
// CHECK:STDOUT: %return.param_patt: %array_type = out_param_pattern %return.patt, runtime_param0 | ||
// CHECK:STDOUT: } { | ||
// CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template = constants.%int_32] | ||
// CHECK:STDOUT: %int.make_type_signed: init type = call constants.%Int(%int_32) [template = constants.%i32] | ||
// CHECK:STDOUT: %int_42: Core.IntLiteral = int_value 42 [template = constants.%int_42] | ||
// CHECK:STDOUT: %.loc4_12.1: type = value_of_initializer %int.make_type_signed [template = constants.%i32] | ||
// CHECK:STDOUT: %.loc4_12.2: type = converted %int.make_type_signed, %.loc4_12.1 [template = constants.%i32] | ||
// CHECK:STDOUT: %array_type: type = array_type %int_42, %i32 [template = constants.%array_type] | ||
// CHECK:STDOUT: %return.param: ref %array_type = out_param runtime_param0 | ||
// CHECK:STDOUT: %return: ref %array_type = return_slot %return.param | ||
// CHECK:STDOUT: } | ||
// CHECK:STDOUT: } | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: fn @F() -> %array_type; | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: --- user.carbon | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: constants { | ||
// CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [template] | ||
// CHECK:STDOUT: %Int.type: type = fn_type @Int [template] | ||
// CHECK:STDOUT: %Int: %Int.type = struct_value () [template] | ||
// CHECK:STDOUT: %i32: type = int_type signed, %int_32 [template] | ||
// CHECK:STDOUT: %G.type: type = fn_type @G [template] | ||
// CHECK:STDOUT: %G: %G.type = struct_value () [template] | ||
// CHECK:STDOUT: %F.type: type = fn_type @F [template] | ||
// CHECK:STDOUT: %F: %F.type = struct_value () [template] | ||
// CHECK:STDOUT: %int_42: Core.IntLiteral = int_value 42 [template] | ||
// CHECK:STDOUT: %array_type: type = array_type %int_42, %i32 [template] | ||
// CHECK:STDOUT: } | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: imports { | ||
// CHECK:STDOUT: %import_ref.1: %F.type = import_ref Main//library, F, loaded [template = constants.%F] | ||
// CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] { | ||
// CHECK:STDOUT: .Int = %import_ref.2 | ||
// 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: .F = imports.%import_ref.1 | ||
// CHECK:STDOUT: .Core = imports.%Core | ||
// CHECK:STDOUT: .G = %G.decl | ||
// CHECK:STDOUT: } | ||
// CHECK:STDOUT: %Core.import = import Core | ||
// CHECK:STDOUT: %default.import = import <invalid> | ||
// CHECK:STDOUT: %G.decl: %G.type = fn_decl @G [template = constants.%G] { | ||
// CHECK:STDOUT: %n.patt: %i32 = binding_pattern n | ||
// CHECK:STDOUT: %n.param_patt: %i32 = value_param_pattern %n.patt, runtime_param0 | ||
// CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern | ||
// CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param1 | ||
// CHECK:STDOUT: } { | ||
// CHECK:STDOUT: %int_32.loc4_9: Core.IntLiteral = int_value 32 [template = constants.%int_32] | ||
// CHECK:STDOUT: %int.make_type_signed.loc4_9: init type = call constants.%Int(%int_32.loc4_9) [template = constants.%i32] | ||
// CHECK:STDOUT: %.loc4_9.1: type = value_of_initializer %int.make_type_signed.loc4_9 [template = constants.%i32] | ||
// CHECK:STDOUT: %.loc4_9.2: type = converted %int.make_type_signed.loc4_9, %.loc4_9.1 [template = constants.%i32] | ||
// CHECK:STDOUT: %int_32.loc4_17: Core.IntLiteral = int_value 32 [template = constants.%int_32] | ||
// CHECK:STDOUT: %int.make_type_signed.loc4_17: init type = call constants.%Int(%int_32.loc4_17) [template = constants.%i32] | ||
// CHECK:STDOUT: %.loc4_17.1: type = value_of_initializer %int.make_type_signed.loc4_17 [template = constants.%i32] | ||
// CHECK:STDOUT: %.loc4_17.2: type = converted %int.make_type_signed.loc4_17, %.loc4_17.1 [template = constants.%i32] | ||
// CHECK:STDOUT: %n.param: %i32 = value_param runtime_param0 | ||
// CHECK:STDOUT: %n: %i32 = bind_name n, %n.param | ||
// CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param1 | ||
// CHECK:STDOUT: %return: ref %i32 = return_slot %return.param | ||
// CHECK:STDOUT: } | ||
// CHECK:STDOUT: } | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: fn @G(%n.param_patt: %i32) -> %i32 { | ||
// CHECK:STDOUT: !entry: | ||
// CHECK:STDOUT: %F.ref: %F.type = name_ref F, imports.%import_ref.1 [template = constants.%F] | ||
// CHECK:STDOUT: %.loc5_12.1: ref %array_type = temporary_storage | ||
// CHECK:STDOUT: %F.call: init %array_type = call %F.ref() to %.loc5_12.1 | ||
// CHECK:STDOUT: %n.ref: %i32 = name_ref n, %n | ||
// CHECK:STDOUT: %.loc5_12.2: ref %array_type = temporary %.loc5_12.1, %F.call | ||
// CHECK:STDOUT: %int_32.loc5: Core.IntLiteral = int_value 32 [template = constants.%int_32] | ||
// CHECK:STDOUT: %int.make_type_signed.loc5: init type = call constants.%Int(%int_32.loc5) [template = constants.%i32] | ||
// CHECK:STDOUT: %.loc5_15.1: type = value_of_initializer %int.make_type_signed.loc5 [template = constants.%i32] | ||
// CHECK:STDOUT: %.loc5_15.2: type = converted %int.make_type_signed.loc5, %.loc5_15.1 [template = constants.%i32] | ||
// CHECK:STDOUT: %.loc5_15.3: ref %i32 = array_index %.loc5_12.2, %n.ref | ||
// CHECK:STDOUT: %.loc5_15.4: %i32 = bind_value %.loc5_15.3 | ||
// CHECK:STDOUT: return %.loc5_15.4 | ||
// CHECK:STDOUT: } | ||
// CHECK:STDOUT: | ||
// CHECK:STDOUT: fn @F() -> %array_type [from "library.carbon"]; | ||
// CHECK:STDOUT: |