Merge pull request #69414 from apple/es-tbd

Emit default arg for a package func during silgen
This commit is contained in:
Ellie Shin
2023-10-27 12:14:24 -07:00
committed by GitHub
2 changed files with 67 additions and 3 deletions

View File

@@ -420,9 +420,14 @@ public:
void visitDefaultArguments(ValueDecl *VD, ParameterList *PL) { void visitDefaultArguments(ValueDecl *VD, ParameterList *PL) {
auto moduleDecl = VD->getModuleContext(); auto moduleDecl = VD->getModuleContext();
auto publicDefaultArgGenerators = moduleDecl->isTestingEnabled() || // Check if symbols should be more visible than their declared access level.
moduleDecl->arePrivateImportsEnabled(); // In case of `package` access level, the symbol should be visible by an
if (Ctx.getOpts().PublicSymbolsOnly && !publicDefaultArgGenerators) // external module in the same package, thus the default argument should be
// generated and its linkage emitted.
auto shouldGenerateDefaultArgs = moduleDecl->isTestingEnabled() ||
moduleDecl->arePrivateImportsEnabled() ||
VD->getFormalAccess() == AccessLevel::Package;
if (Ctx.getOpts().PublicSymbolsOnly && !shouldGenerateDefaultArgs)
return; return;
// In Swift 3 (or under -enable-testing), default arguments (of public // In Swift 3 (or under -enable-testing), default arguments (of public

View File

@@ -0,0 +1,59 @@
// RUN: %empty-directory(%t)
// RUN: split-file %s %t
// RUN: %target-build-swift-dylib(%t/%target-library-name(Utils)) %t/Utils.swift \
// RUN: -module-name Utils -package-name mypkg \
// RUN: -emit-module -emit-module-path %t/Utils.swiftmodule \
// RUN: -emit-tbd -emit-tbd-path %t/libUtils.tbd -Xfrontend -tbd-install_name=%t/libUtils.dylib -Xfrontend -validate-tbd-against-ir=all
// RUN: %FileCheck %s --check-prefix CHECK-TBD < %t/libUtils.tbd
// CHECK-TBD-NOT: $s5Utils6pubBar3argS2i_tFfA_
// CHECK-TBD-NOT: $s5Utils11internalBar3argS2i_tF
// CHECK-TBD-NOT: $s5Utils11internalBar3argS2i_tFfA_
// CHECK-TBD-NOT: $s5Utils11internalFoo3argS2i_tF
// CHECK-TBD: $s5Utils6pkgBar3argS2i_tF
// CHECK-TBD: $s5Utils6pkgBar3argS2i_tFfA_
// CHECK-TBD: $s5Utils6pkgFoo3argS2i_tF
// CHECK-TBD: $s5Utils6pubBar3argS2i_tF
// CHECK-TBD: $s5Utils6pubFoo3argS2i_tF
// RUN: %target-build-swift-dylib(%t/%target-library-name(UtilsForTesting)) %t/Utils.swift \
// RUN: -module-name UtilsForTesting -package-name testpkg \
// RUN: -emit-module -emit-module-path %t/UtilsForTesting.swiftmodule \
// RUN: -emit-tbd -emit-tbd-path %t/libUtilsForTesting.tbd -Xfrontend -tbd-install_name=%t/libUtilsForTesting.dylib \
// RUN: -enable-testing -Xfrontend -validate-tbd-against-ir=all
// RUN: %FileCheck %s --check-prefix CHECK-TEST < %t/libUtilsForTesting.tbd
// CHECK-TEST-NOT: $s15UtilsForTesting6pubBar3argS2i_tFfA_
// CHECK-TEST: $s15UtilsForTesting11internalBar3argS2i_tF
// CHECK-TEST: $s15UtilsForTesting11internalBar3argS2i_tFfA_
// CHECK-TEST: $s15UtilsForTesting11internalFoo3argS2i_tF
// CHECK-TEST: $s15UtilsForTesting6pkgBar3argS2i_tF
// CHECK-TEST: $s15UtilsForTesting6pkgBar3argS2i_tFfA_
// CHECK-TEST: $s15UtilsForTesting6pkgFoo3argS2i_tF
// CHECK-TEST: $s15UtilsForTesting6pubBar3argS2i_tF
// CHECK-TEST: $s15UtilsForTesting6pubFoo3argS2i_tF
// RUN: %target-swift-frontend -typecheck %t/main.swift -I %t -L %t -lUtils -package-name mypkg -verify
//--- Utils.swift
public func pubBar(arg: Int = 1) -> Int { return arg + 11 }
package func pkgBar(arg: Int = 1) -> Int { return arg + 12 }
func internalBar(arg: Int = 1) -> Int { return arg + 13 }
public func pubFoo(arg: Int) -> Int { return arg + 1 }
package func pkgFoo(arg: Int) -> Int { return arg + 2 }
func internalFoo(arg: Int) -> Int { return arg + 3 }
//--- main.swift
import Utils
let a = pubBar()
let b = pkgBar()
let c = pubFoo(arg: 3)
let d = pkgFoo(arg: 5)
print(a, b, c, d)