| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- // 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
- //
- // This is testing a facet type that combines two interfaces across multiple
- // import boundaries.
- //
- // INCLUDE-FILE: toolchain/testing/testdata/min_prelude/full.carbon
- //
- // AUTOUPDATE
- // TIP: To test this file alone, run:
- // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/lower/testdata/impl/import_facet.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/lower/testdata/impl/import_facet.carbon
- // --- a.carbon
- library "[[@TEST_NAME]]";
- class C(T:! Core.Copy & Core.Destroy) {
- fn GetC[unused self: Self]() -> T {
- var value: T;
- return value;
- }
- }
- // --- b.carbon
- library "[[@TEST_NAME]]";
- export import library "a";
- interface I {
- let T:! Core.Copy & Core.Destroy;
- fn GetI[unused self: Self]() -> C(T);
- }
- // --- c.carbon
- library "[[@TEST_NAME]]";
- export import library "b";
- class D(T:! type) {
- impl as I where .T = T* {
- fn GetI[unused self: Self]() -> C(T*) {
- return {};
- }
- }
- }
- // --- d.carbon
- library "[[@TEST_NAME]]";
- import library "c";
- fn F(d: D(i32)) -> i32* {
- return d.(I.GetI)().GetC();
- }
- // CHECK:STDOUT: ; ModuleID = 'a.carbon'
- // CHECK:STDOUT: source_filename = "a.carbon"
- // CHECK:STDOUT:
- // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
- // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
- // CHECK:STDOUT:
- // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
- // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
- // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
- // CHECK:STDOUT: !3 = !DIFile(filename: "a.carbon", directory: "")
- // CHECK:STDOUT: ; ModuleID = 'b.carbon'
- // CHECK:STDOUT: source_filename = "b.carbon"
- // CHECK:STDOUT:
- // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
- // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
- // CHECK:STDOUT:
- // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
- // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
- // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
- // CHECK:STDOUT: !3 = !DIFile(filename: "b.carbon", directory: "")
- // CHECK:STDOUT: ; ModuleID = 'c.carbon'
- // CHECK:STDOUT: source_filename = "c.carbon"
- // CHECK:STDOUT:
- // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
- // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
- // CHECK:STDOUT:
- // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
- // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
- // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
- // CHECK:STDOUT: !3 = !DIFile(filename: "c.carbon", directory: "")
- // CHECK:STDOUT: ; ModuleID = 'd.carbon'
- // CHECK:STDOUT: source_filename = "d.carbon"
- // CHECK:STDOUT:
- // CHECK:STDOUT: @C.val.02c.anon = internal constant {} zeroinitializer
- // CHECK:STDOUT:
- // CHECK:STDOUT: ; Function Attrs: nounwind
- // CHECK:STDOUT: define ptr @_CF.Main(ptr %d) #0 !dbg !4 {
- // CHECK:STDOUT: entry:
- // CHECK:STDOUT: %.loc5_21.1.temp = alloca {}, align 8, !dbg !10
- // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %.loc5_21.1.temp), !dbg !10
- // CHECK:STDOUT: call void @"_CGetI.D.eb057aa32837c84e.Main:I.Main.b88d1103f417c6d4"(ptr %.loc5_21.1.temp, ptr %d), !dbg !10
- // CHECK:STDOUT: %C.GetC.call = call ptr @_CGetC.C.Main.8ef080b43913f36e(ptr %.loc5_21.1.temp), !dbg !10
- // CHECK:STDOUT: ret ptr %C.GetC.call, !dbg !11
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: ; Function Attrs: nocallback nofree nosync nounwind willreturn memory(argmem: readwrite)
- // CHECK:STDOUT: declare void @llvm.lifetime.start.p0(ptr captures(none)) #1
- // CHECK:STDOUT:
- // CHECK:STDOUT: ; Function Attrs: nounwind
- // CHECK:STDOUT: define linkonce_odr void @"_CGetI.D.eb057aa32837c84e.Main:I.Main.b88d1103f417c6d4"(ptr sret({}) %return, ptr %self) #0 !dbg !12 {
- // CHECK:STDOUT: call void @llvm.memcpy.p0.p0.i64(ptr align 1 %return, ptr align 1 @C.val.02c.anon, i64 0, i1 false), !dbg !16
- // CHECK:STDOUT: ret void, !dbg !16
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: ; Function Attrs: nounwind
- // CHECK:STDOUT: define linkonce_odr ptr @_CGetC.C.Main.8ef080b43913f36e(ptr %self) #0 !dbg !17 {
- // CHECK:STDOUT: %1 = alloca ptr, align 8, !dbg !21
- // CHECK:STDOUT: call void @llvm.lifetime.start.p0(ptr %1), !dbg !21
- // CHECK:STDOUT: %2 = load ptr, ptr %1, align 8, !dbg !22
- // CHECK:STDOUT: ret ptr %2, !dbg !23
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: ; Function Attrs: nocallback nofree nounwind willreturn memory(argmem: readwrite)
- // CHECK:STDOUT: declare void @llvm.memcpy.p0.p0.i64(ptr noalias writeonly captures(none), ptr noalias readonly captures(none), i64, i1 immarg) #2
- // CHECK:STDOUT:
- // CHECK:STDOUT: attributes #0 = { nounwind }
- // CHECK:STDOUT: attributes #1 = { nocallback nofree nosync nounwind willreturn memory(argmem: readwrite) }
- // CHECK:STDOUT: attributes #2 = { nocallback nofree nounwind willreturn memory(argmem: readwrite) }
- // CHECK:STDOUT:
- // CHECK:STDOUT: !llvm.module.flags = !{!0, !1}
- // CHECK:STDOUT: !llvm.dbg.cu = !{!2}
- // CHECK:STDOUT:
- // CHECK:STDOUT: !0 = !{i32 7, !"Dwarf Version", i32 5}
- // CHECK:STDOUT: !1 = !{i32 2, !"Debug Info Version", i32 3}
- // CHECK:STDOUT: !2 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !3, producer: "carbon", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug)
- // CHECK:STDOUT: !3 = !DIFile(filename: "d.carbon", directory: "")
- // CHECK:STDOUT: !4 = distinct !DISubprogram(name: "F", linkageName: "_CF.Main", scope: null, file: !3, line: 4, type: !5, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !8)
- // CHECK:STDOUT: !5 = !DISubroutineType(types: !6)
- // CHECK:STDOUT: !6 = !{!7, !7}
- // CHECK:STDOUT: !7 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: null, size: 8)
- // CHECK:STDOUT: !8 = !{!9}
- // CHECK:STDOUT: !9 = !DILocalVariable(arg: 1, scope: !4, type: !7)
- // CHECK:STDOUT: !10 = !DILocation(line: 5, column: 10, scope: !4)
- // CHECK:STDOUT: !11 = !DILocation(line: 5, column: 3, scope: !4)
- // CHECK:STDOUT: !12 = distinct !DISubprogram(name: "GetI", linkageName: "_CGetI.D.eb057aa32837c84e.Main:I.Main.b88d1103f417c6d4", scope: null, file: !13, line: 6, type: !5, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !14)
- // CHECK:STDOUT: !13 = !DIFile(filename: "c.carbon", directory: "")
- // CHECK:STDOUT: !14 = !{!15}
- // CHECK:STDOUT: !15 = !DILocalVariable(arg: 1, scope: !12, type: !7)
- // CHECK:STDOUT: !16 = !DILocation(line: 7, column: 7, scope: !12)
- // CHECK:STDOUT: !17 = distinct !DISubprogram(name: "GetC", linkageName: "_CGetC.C.Main.8ef080b43913f36e", scope: null, file: !18, line: 4, type: !5, spFlags: DISPFlagDefinition, unit: !2, retainedNodes: !19)
- // CHECK:STDOUT: !18 = !DIFile(filename: "a.carbon", directory: "")
- // CHECK:STDOUT: !19 = !{!20}
- // CHECK:STDOUT: !20 = !DILocalVariable(arg: 1, scope: !17, type: !7)
- // CHECK:STDOUT: !21 = !DILocation(line: 5, column: 5, scope: !17)
- // CHECK:STDOUT: !22 = !DILocation(line: 6, column: 12, scope: !17)
- // CHECK:STDOUT: !23 = !DILocation(line: 6, column: 5, scope: !17)
|