1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928
|
//===--------------- FrontendJobHelpers.swift - Swift Frontend Job Common -===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2019 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import SwiftOptions
import class TSCBasic.LocalFileOutputByteStream
import class TSCBasic.TerminalController
import struct TSCBasic.RelativePath
import struct TSCBasic.AbsolutePath
import var TSCBasic.stderrStream
/// Whether we should produce color diagnostics by default.
fileprivate func shouldColorDiagnostics() -> Bool {
guard let stderrStream = stderrStream.stream as? LocalFileOutputByteStream else {
return false
}
return TerminalController.isTTY(stderrStream)
}
extension Driver {
/// How the bridging header should be handled.
enum BridgingHeaderHandling {
/// Ignore the bridging header entirely.
case ignored
/// Parse the bridging header, even if other jobs will use a precompiled
/// bridging header.
///
/// This is typically used only when precompiling the bridging header.
case parsed
/// Use the precompiled bridging header.
case precompiled
}
/// Whether the driver has already constructed a module dependency graph or is in the process
/// of doing so
enum ModuleDependencyGraphUse {
/// Even though the driver may be in ExplicitModuleBuild mode, the dependency graph has not yet
/// been constructed, omit processing module dependencies
case dependencyScan
/// If the driver is in Explicit Module Build mode, the dependency graph has been computed
case computed
}
/// Add frontend options that are common to different frontend invocations.
mutating func addCommonFrontendOptions(
commandLine: inout [Job.ArgTemplate],
inputs: inout [TypedVirtualPath],
kind: Job.Kind,
bridgingHeaderHandling: BridgingHeaderHandling = .precompiled,
moduleDependencyGraphUse: ModuleDependencyGraphUse = .computed
) throws {
// Only pass -target to the REPL or immediate modes if it was explicitly
// specified on the command line.
switch compilerMode {
case .standardCompile, .singleCompile, .batchCompile, .compilePCM, .dumpPCM:
commandLine.appendFlag(.target)
commandLine.appendFlag(targetTriple.triple)
case .repl, .immediate:
if parsedOptions.hasArgument(.target) {
commandLine.appendFlag(.target)
commandLine.appendFlag(targetTriple.triple)
}
case .intro:
break
}
let jobNeedPathRemap: Bool
// If in ExplicitModuleBuild mode and the dependency graph has been computed, add module
// dependencies.
// May also be used for generation of the dependency graph itself in ExplicitModuleBuild mode.
if (parsedOptions.contains(.driverExplicitModuleBuild) &&
moduleDependencyGraphUse == .computed) {
switch kind {
case .generatePCH:
try addExplicitPCHBuildArguments(inputs: &inputs, commandLine: &commandLine)
jobNeedPathRemap = true
case .compile, .emitModule, .interpret, .verifyModuleInterface:
try addExplicitModuleBuildArguments(inputs: &inputs, commandLine: &commandLine)
jobNeedPathRemap = true
case .backend, .mergeModule, .compileModuleFromInterface,
.generatePCM, .dumpPCM, .repl, .printTargetInfo,
.versionRequest, .autolinkExtract, .generateDSYM,
.help, .link, .verifyDebugInfo, .scanDependencies,
.emitSupportedFeatures, .moduleWrap,
.generateAPIBaseline, .generateABIBaseline, .compareAPIBaseline,
.compareABIBaseline:
jobNeedPathRemap = false
}
} else {
jobNeedPathRemap = false
}
// Check if dependency scanner has put the job into direct clang cc1 mode.
// If dependency scanner put us into direct cc1 mode, avoid adding `-Xcc` options, since
// dependency scanner already adds needed flags and -Xcc options known by swift-driver are
// clang driver flags but not it requires cc1 flags.
let directModuleCC1Mode = commandLine.contains(Job.ArgTemplate.flag("-direct-clang-cc1-module-build"))
func appendXccFlag(_ flag: String) {
guard !directModuleCC1Mode else { return }
commandLine.appendFlag(.Xcc)
commandLine.appendFlag(flag)
}
if let variant = parsedOptions.getLastArgument(.targetVariant)?.asSingle {
commandLine.appendFlag(.targetVariant)
commandLine.appendFlag(Triple(variant, normalizing: true).triple)
}
// Enable address top-byte ignored in the ARM64 backend.
if targetTriple.arch == .aarch64 {
commandLine.appendFlag(.Xllvm)
commandLine.appendFlag("-aarch64-use-tbi")
}
let isEmbeddedEnabled = parsedOptions.isEmbeddedEnabled
// Enable or disable ObjC interop appropriately for the platform
if targetTriple.isDarwin && !isEmbeddedEnabled {
commandLine.appendFlag(.enableObjcInterop)
} else {
commandLine.appendFlag(.disableObjcInterop)
}
// Add flags for C++ interop
try commandLine.appendLast(.enableExperimentalCxxInterop, from: &parsedOptions)
try commandLine.appendLast(.cxxInteroperabilityMode, from: &parsedOptions)
if let stdlibVariant = parsedOptions.getLastArgument(.experimentalCxxStdlib)?.asSingle {
appendXccFlag("-stdlib=\(stdlibVariant)")
}
if isEmbeddedEnabled && parsedOptions.hasArgument(.enableLibraryEvolution) {
diagnosticEngine.emit(.error_no_library_evolution_embedded)
throw ErrorDiagnostics.emitted
}
// Building embedded Swift requires WMO, unless we're not generating SIL. This allows modes like -index-file to work the same way they do when not using embedded Swift
if isEmbeddedEnabled && compilerOutputType?.requiresSILGen == true &&
(!parsedOptions.hasArgument(.wmo) || !parsedOptions.hasArgument(.wholeModuleOptimization)) {
diagnosticEngine.emit(.error_need_wmo_embedded)
throw ErrorDiagnostics.emitted
}
if isEmbeddedEnabled && parsedOptions.hasArgument(.enableObjcInterop) {
diagnosticEngine.emit(.error_no_objc_interop_embedded)
throw ErrorDiagnostics.emitted
}
// Handle the CPU and its preferences.
try commandLine.appendLast(.targetCpu, from: &parsedOptions)
if let sdkPath = frontendTargetInfo.sdkPath?.path {
try addPathOption(option: .sdk, path: VirtualPath.lookup(sdkPath), to: &commandLine, remap: jobNeedPathRemap)
}
for args: (Option, Option) in [
(.visualcToolsRoot, .visualcToolsVersion),
(.windowsSdkRoot, .windowsSdkVersion)
] {
let (rootOpt, versionOpt) = args
if let rootArg = parsedOptions.last(for: rootOpt),
isFrontendArgSupported(rootOpt) {
try addPathOption(rootArg, to: &commandLine, remap: jobNeedPathRemap)
}
if let value = parsedOptions.getLastArgument(versionOpt)?.asSingle,
isFrontendArgSupported(versionOpt) {
commandLine.appendFlags(versionOpt.spelling, value)
}
}
try commandLine.appendAll(.I, from: &parsedOptions)
try commandLine.appendAll(.F, .Fsystem, from: &parsedOptions)
try commandLine.appendAll(.vfsoverlay, from: &parsedOptions)
if let gccToolchain = parsedOptions.getLastArgument(.gccToolchain) {
appendXccFlag("--gcc-toolchain=\(gccToolchain.asSingle)")
}
try commandLine.appendLast(.AssertConfig, from: &parsedOptions)
try commandLine.appendLast(.autolinkForceLoad, from: &parsedOptions)
if let colorOption = parsedOptions.last(for: .colorDiagnostics, .noColorDiagnostics) {
commandLine.appendFlag(colorOption.option)
} else if shouldColorDiagnostics() {
commandLine.appendFlag(.colorDiagnostics)
}
try commandLine.appendLast(.fixitAll, from: &parsedOptions)
try commandLine.appendLast(.warnSwift3ObjcInferenceMinimal, .warnSwift3ObjcInferenceComplete, from: &parsedOptions)
try commandLine.appendLast(.warnImplicitOverrides, from: &parsedOptions)
try commandLine.appendLast(.typoCorrectionLimit, from: &parsedOptions)
try commandLine.appendLast(.enableAppExtension, from: &parsedOptions)
try commandLine.appendLast(.enableLibraryEvolution, from: &parsedOptions)
try commandLine.appendLast(.enableTesting, from: &parsedOptions)
try commandLine.appendLast(.enablePrivateImports, from: &parsedOptions)
try commandLine.appendLast(in: .g, from: &parsedOptions)
if debugInfo.level != nil {
commandLine.appendFlag("-debug-info-format=\(debugInfo.format.rawValue)")
if isFrontendArgSupported(.dwarfVersion) {
commandLine.appendFlag("-dwarf-version=\(debugInfo.dwarfVersion)")
}
}
try commandLine.appendLast(.importUnderlyingModule, from: &parsedOptions)
try commandLine.appendLast(.moduleCachePath, from: &parsedOptions)
try commandLine.appendLast(.moduleLinkName, from: &parsedOptions)
try commandLine.appendLast(.nostdimport, from: &parsedOptions)
try commandLine.appendLast(.parseStdlib, from: &parsedOptions)
try commandLine.appendLast(.solverMemoryThreshold, from: &parsedOptions)
try commandLine.appendLast(.valueRecursionThreshold, from: &parsedOptions)
try commandLine.appendLast(.warnSwift3ObjcInference, from: &parsedOptions)
try commandLine.appendLast(.remarkLoadingModule, from: &parsedOptions)
try commandLine.appendLast(.RpassEQ, from: &parsedOptions)
try commandLine.appendLast(.RpassMissedEQ, from: &parsedOptions)
try commandLine.appendLast(.suppressWarnings, from: &parsedOptions)
try commandLine.appendLast(.profileGenerate, from: &parsedOptions)
try commandLine.appendLast(.profileUse, from: &parsedOptions)
try commandLine.appendLast(.profileCoverageMapping, from: &parsedOptions)
try commandLine.appendLast(.warningsAsErrors, .noWarningsAsErrors, from: &parsedOptions)
try commandLine.appendLast(.sanitizeEQ, from: &parsedOptions)
try commandLine.appendLast(.sanitizeRecoverEQ, from: &parsedOptions)
try commandLine.appendLast(.sanitizeAddressUseOdrIndicator, from: &parsedOptions)
if isFrontendArgSupported(.sanitizeStableAbiEQ) {
try commandLine.appendLast(.sanitizeStableAbiEQ, from: &parsedOptions)
}
try commandLine.appendLast(.sanitizeCoverageEQ, from: &parsedOptions)
try commandLine.appendLast(.static, from: &parsedOptions)
try commandLine.appendLast(.swiftVersion, from: &parsedOptions)
try commandLine.appendLast(.enforceExclusivityEQ, from: &parsedOptions)
try commandLine.appendLast(.statsOutputDir, from: &parsedOptions)
try commandLine.appendLast(.traceStatsEvents, from: &parsedOptions)
try commandLine.appendLast(.profileStatsEvents, from: &parsedOptions)
try commandLine.appendLast(.profileStatsEntities, from: &parsedOptions)
try commandLine.appendLast(.solverShrinkUnsolvedThreshold, from: &parsedOptions)
try commandLine.appendLast(in: .O, from: &parsedOptions)
try commandLine.appendLast(.RemoveRuntimeAsserts, from: &parsedOptions)
try commandLine.appendLast(.AssumeSingleThreaded, from: &parsedOptions)
try commandLine.appendLast(.packageDescriptionVersion, from: &parsedOptions)
try commandLine.appendLast(.serializeDiagnosticsPath, from: &parsedOptions)
try commandLine.appendLast(.debugDiagnosticNames, from: &parsedOptions)
try commandLine.appendLast(.scanDependencies, from: &parsedOptions)
try commandLine.appendLast(.enableExperimentalConcisePoundFile, from: &parsedOptions)
try commandLine.appendLast(.experimentalPackageInterfaceLoad, from: &parsedOptions)
try commandLine.appendLast(.printEducationalNotes, from: &parsedOptions)
try commandLine.appendLast(.diagnosticStyle, from: &parsedOptions)
try commandLine.appendLast(.locale, from: &parsedOptions)
try commandLine.appendLast(.localizationPath, from: &parsedOptions)
try commandLine.appendLast(.requireExplicitAvailability, from: &parsedOptions)
try commandLine.appendLast(.requireExplicitAvailabilityTarget, from: &parsedOptions)
try commandLine.appendLast(.libraryLevel, from: &parsedOptions)
try commandLine.appendLast(.lto, from: &parsedOptions)
try commandLine.appendLast(.accessNotesPath, from: &parsedOptions)
try commandLine.appendLast(.enableActorDataRaceChecks, .disableActorDataRaceChecks, from: &parsedOptions)
try commandLine.appendAll(.D, from: &parsedOptions)
try commandLine.appendAll(.debugPrefixMap, .coveragePrefixMap, .filePrefixMap, from: &parsedOptions)
try commandLine.appendAllArguments(.Xfrontend, from: &parsedOptions)
try commandLine.appendLast(.warnConcurrency, from: &parsedOptions)
if isFrontendArgSupported(.noAllocations) {
try commandLine.appendLast(.noAllocations, from: &parsedOptions)
}
if isFrontendArgSupported(.enableExperimentalFeature) {
try commandLine.appendAll(
.enableExperimentalFeature, from: &parsedOptions)
}
if isFrontendArgSupported(.enableUpcomingFeature) {
try commandLine.appendAll(
.enableUpcomingFeature, from: &parsedOptions)
}
try commandLine.appendAll(.moduleAlias, from: &parsedOptions)
if isFrontendArgSupported(.enableBareSlashRegex) {
try commandLine.appendLast(.enableBareSlashRegex, from: &parsedOptions)
}
if isFrontendArgSupported(.strictConcurrency) {
try commandLine.appendLast(.strictConcurrency, from: &parsedOptions)
}
if kind == .scanDependencies,
isFrontendArgSupported(.experimentalClangImporterDirectCc1Scan) {
try commandLine.appendAll(
.experimentalClangImporterDirectCc1Scan, from: &parsedOptions)
}
// Expand the -experimental-hermetic-seal-at-link flag
if parsedOptions.hasArgument(.experimentalHermeticSealAtLink) {
commandLine.appendFlag("-enable-llvm-vfe")
commandLine.appendFlag("-enable-llvm-wme")
commandLine.appendFlag("-conditional-runtime-records")
commandLine.appendFlag("-internalize-at-link")
}
// ABI descriptors are mostly for modules with -enable-library-evolution.
// We should also be able to emit ABI descriptor for modules without evolution.
// However, doing so leads us to deserialize more contents from binary modules,
// exposing more deserialization issues as a result.
if !parsedOptions.hasArgument(.enableLibraryEvolution) &&
isFrontendArgSupported(.emptyAbiDescriptor) {
commandLine.appendFlag(.emptyAbiDescriptor)
}
if isFrontendArgSupported(.emitMacroExpansionFiles) {
try commandLine.appendLast(.emitMacroExpansionFiles, from: &parsedOptions)
}
// Emit user-provided plugin paths, in order.
if isFrontendArgSupported(.externalPluginPath) {
try commandLine.appendAll(.pluginPath, .externalPluginPath, .loadPluginLibrary, .loadPluginExecutable, from: &parsedOptions)
} else if isFrontendArgSupported(.pluginPath) {
try commandLine.appendAll(.pluginPath, .loadPluginLibrary, from: &parsedOptions)
}
if isFrontendArgSupported(.blockListFile) {
try Driver.findBlocklists(RelativeTo: try toolchain.executableDir).forEach {
commandLine.appendFlag(.blockListFile)
commandLine.appendPath($0)
}
}
// Pass down -user-module-version if we are working with a compiler that
// supports it.
if let ver = parsedOptions.getLastArgument(.userModuleVersion)?.asSingle,
isFrontendArgSupported(.userModuleVersion) {
commandLine.appendFlag(.userModuleVersion)
commandLine.appendFlag(ver)
}
// Pass down -validate-clang-modules-once if we are working with a compiler that
// supports it.
if isFrontendArgSupported(.validateClangModulesOnce),
isFrontendArgSupported(.clangBuildSessionFile) {
try commandLine.appendLast(.validateClangModulesOnce, from: &parsedOptions)
try commandLine.appendLast(.clangBuildSessionFile, from: &parsedOptions)
}
if isFrontendArgSupported(.enableBuiltinModule) {
try commandLine.appendLast(.enableBuiltinModule, from: &parsedOptions)
}
if isFrontendArgSupported(.disableSandbox) {
try commandLine.appendLast(.disableSandbox, from: &parsedOptions)
}
if !directModuleCC1Mode, let workingDirectory = workingDirectory {
// Add -Xcc -working-directory before any other -Xcc options to ensure it is
// overridden by an explicit -Xcc -working-directory, although having a
// different working directory is probably incorrect.
commandLine.appendFlag(.Xcc)
commandLine.appendFlag(.workingDirectory)
commandLine.appendFlag(.Xcc)
try addPathArgument(.absolute(workingDirectory), to: &commandLine, remap: jobNeedPathRemap)
}
// Resource directory.
try addPathOption(option: .resourceDir,
path: VirtualPath.lookup(frontendTargetInfo.runtimeResourcePath.path),
to: &commandLine,
remap: jobNeedPathRemap)
if self.useStaticResourceDir {
commandLine.appendFlag("-use-static-resource-dir")
}
// -g implies -enable-anonymous-context-mangled-names, because the extra
// metadata aids debugging.
if parsedOptions.getLast(in: .g) != nil {
// But don't add the option in optimized builds: it would prevent dead code
// stripping of unused metadata.
let shouldSupportAnonymousContextMangledNames: Bool
if let opt = parsedOptions.getLast(in: .O), opt.option != .Onone {
shouldSupportAnonymousContextMangledNames = false
} else {
shouldSupportAnonymousContextMangledNames = true
}
if shouldSupportAnonymousContextMangledNames {
commandLine.appendFlag(.enableAnonymousContextMangledNames)
}
// Always try to append -file-compilation-dir when debug info is used.
// TODO: Should we support -fcoverage-compilation-dir?
commandLine.appendFlag(.fileCompilationDir)
if let compilationDir = parsedOptions.getLastArgument(.fileCompilationDir)?.asSingle {
let compDirPath = try VirtualPath.intern(path: compilationDir)
try addPathArgument(VirtualPath.lookup(compDirPath), to:&commandLine, remap: jobNeedPathRemap)
} else if let cwd = workingDirectory ?? fileSystem.currentWorkingDirectory {
let compDirPath = VirtualPath.absolute(cwd)
try addPathArgument(compDirPath, to:&commandLine, remap: jobNeedPathRemap)
}
}
// CAS related options.
if isCachingEnabled {
commandLine.appendFlag(.cacheCompileJob)
if let casPath = try getOnDiskCASPath() {
commandLine.appendFlag(.casPath)
commandLine.appendFlag(casPath.pathString)
}
if let pluginPath = try getCASPluginPath() {
commandLine.appendFlag(.casPluginPath)
commandLine.appendFlag(pluginPath.pathString)
}
try commandLine.appendAll(.casPluginOption, from: &parsedOptions)
try commandLine.appendLast(.cacheRemarks, from: &parsedOptions)
if !useClangIncludeTree {
commandLine.appendFlag(.noClangIncludeTree)
}
}
addCacheReplayMapping(to: &commandLine)
// Pass through any subsystem flags.
try commandLine.appendAll(.Xllvm, from: &parsedOptions)
// Pass through all -Xcc flags if not under directModuleCC1Mode.
if !directModuleCC1Mode {
try commandLine.appendAll(.Xcc, from: &parsedOptions)
}
if let importedObjCHeader = importedObjCHeader,
bridgingHeaderHandling != .ignored {
commandLine.appendFlag(.importObjcHeader)
if bridgingHeaderHandling == .precompiled,
let pch = bridgingPrecompiledHeader {
// For explicit module build, we directly pass the compiled pch as
// `-import-objc-header`, rather than rely on swift-frontend to locate
// the pch in the pchOutputDir and can start an implicit build in case
// of a lookup failure.
if parsedOptions.contains(.pchOutputDir) &&
!parsedOptions.contains(.driverExplicitModuleBuild) {
try addPathArgument(VirtualPath.lookup(importedObjCHeader), to:&commandLine, remap: jobNeedPathRemap)
try commandLine.appendLast(.pchOutputDir, from: &parsedOptions)
if !compilerMode.isSingleCompilation {
commandLine.appendFlag(.pchDisableValidation)
}
} else {
try addPathArgument(VirtualPath.lookup(pch), to:&commandLine, remap: jobNeedPathRemap)
}
} else {
try addPathArgument(VirtualPath.lookup(importedObjCHeader), to:&commandLine, remap: jobNeedPathRemap)
}
}
// Pass along -no-verify-emitted-module-interface only if it's effective.
// Assume verification by default as we want to know only when the user skips
// the verification.
if isFrontendArgSupported(.noVerifyEmittedModuleInterface) &&
!parsedOptions.hasFlag(positive: .verifyEmittedModuleInterface,
negative: .noVerifyEmittedModuleInterface,
default: true) {
commandLine.appendFlag("-no-verify-emitted-module-interface")
}
// Repl Jobs shouldn't include -module-name.
if compilerMode != .repl && compilerMode != .intro {
commandLine.appendFlags("-module-name", moduleOutputInfo.name)
}
if let packageName = packageName {
commandLine.appendFlags("-package-name", packageName)
}
// Enable frontend Parseable-output, if needed.
if parsedOptions.contains(.useFrontendParseableOutput) {
commandLine.appendFlag("-frontend-parseable-output")
}
savedUnknownDriverFlagsForSwiftFrontend.forEach {
commandLine.appendFlag($0)
}
let toolchainStdlibPath = VirtualPath.lookup(frontendTargetInfo.runtimeResourcePath.path)
.appending(components: frontendTargetInfo.target.triple.platformName() ?? "", "Swift.swiftmodule")
let hasToolchainStdlib = try fileSystem.exists(toolchainStdlibPath)
// If the resource directory has the standard library, prefer the toolchain's plugins
// to the platform SDK plugins.
if hasToolchainStdlib {
try addPluginPathArguments(commandLine: &commandLine)
}
try toolchain.addPlatformSpecificCommonFrontendOptions(commandLine: &commandLine,
inputs: &inputs,
frontendTargetInfo: frontendTargetInfo,
driver: &self)
// Otherwise, prefer the platform's plugins.
if !hasToolchainStdlib {
try addPluginPathArguments(commandLine: &commandLine)
}
}
mutating func addBridgingHeaderPCHCacheKeyArguments(commandLine: inout [Job.ArgTemplate],
pchCompileJob: Job?) throws {
guard let pchJob = pchCompileJob, isCachingEnabled else { return }
assert(pchJob.outputCacheKeys.count == 1, "Expect one and only one cache key from pch job")
guard let bridgingHeaderCacheKey = pchJob.outputCacheKeys.first?.value else {
fatalError("pch job doesn't have an associated cache key")
}
commandLine.appendFlag("-bridging-header-pch-key")
commandLine.appendFlag(bridgingHeaderCacheKey)
}
mutating func addFrontendSupplementaryOutputArguments(commandLine: inout [Job.ArgTemplate],
primaryInputs: [TypedVirtualPath],
inputsGeneratingCodeCount: Int,
inputOutputMap: inout [TypedVirtualPath: [TypedVirtualPath]],
includeModuleTracePath: Bool,
indexFilePath: TypedVirtualPath?) throws -> [TypedVirtualPath] {
var flaggedInputOutputPairs: [(flag: String, input: TypedVirtualPath?, output: TypedVirtualPath)] = []
/// Add output of a particular type, if needed.
func addOutputOfType(
outputType: FileType,
finalOutputPath: VirtualPath.Handle?,
input: TypedVirtualPath?,
flag: String
) throws {
// If there is no final output, there's nothing to do.
guard let finalOutputPath = finalOutputPath else { return }
// If the whole of the compiler output is this type, there's nothing to
// do.
if outputType == compilerOutputType { return }
// Compute the output path based on the input path (if there is one), or
// use the final output.
let outputPath: VirtualPath.Handle
if let input = input {
if let outputFileMapPath = try outputFileMap?.existingOutput(inputFile: input.fileHandle, outputType: outputType) {
outputPath = outputFileMapPath
} else if let output = inputOutputMap[input]?.first, output.file != .standardOutput, compilerOutputType != nil {
// Alongside primary output
outputPath = try output.file.replacingExtension(with: outputType).intern()
} else {
outputPath = try VirtualPath.createUniqueTemporaryFile(RelativePath(validating: input.file.basenameWithoutExt.appendingFileTypeExtension(outputType))).intern()
}
// Update the input-output file map.
let output = TypedVirtualPath(file: outputPath, type: outputType)
if inputOutputMap[input] != nil {
inputOutputMap[input]!.append(output)
} else {
inputOutputMap[input] = [output]
}
} else {
outputPath = finalOutputPath
}
flaggedInputOutputPairs.append((flag: flag, input: input, output: TypedVirtualPath(file: outputPath, type: outputType)))
}
/// Add all of the outputs needed for a given input.
func addAllOutputsFor(input: TypedVirtualPath?) throws {
if !emitModuleSeparately {
// Generate the module files with the main job.
try addOutputOfType(
outputType: .swiftModule,
finalOutputPath: moduleOutputInfo.output?.outputPath,
input: input,
flag: "-emit-module-path")
try addOutputOfType(
outputType: .swiftDocumentation,
finalOutputPath: moduleDocOutputPath,
input: input,
flag: "-emit-module-doc-path")
try addOutputOfType(
outputType: .swiftSourceInfoFile,
finalOutputPath: moduleSourceInfoPath,
input: input,
flag: "-emit-module-source-info-path")
}
try addOutputOfType(
outputType: .dependencies,
finalOutputPath: dependenciesFilePath,
input: input,
flag: "-emit-dependencies-path")
try addOutputOfType(
outputType: .swiftConstValues,
finalOutputPath: constValuesFilePath,
input: input,
flag: "-emit-const-values-path")
try addOutputOfType(
outputType: .swiftDeps,
finalOutputPath: referenceDependenciesPath,
input: input,
flag: "-emit-reference-dependencies-path")
try addOutputOfType(
outputType: self.optimizationRecordFileType ?? .yamlOptimizationRecord,
finalOutputPath: optimizationRecordPath,
input: input,
flag: "-save-optimization-record-path")
try addOutputOfType(
outputType: .diagnostics,
finalOutputPath: serializedDiagnosticsFilePath,
input: input,
flag: "-serialize-diagnostics-path")
}
if compilerMode.usesPrimaryFileInputs {
for input in primaryInputs {
try addAllOutputsFor(input: input)
}
} else {
try addAllOutputsFor(input: nil)
if !emitModuleSeparately {
// Outputs that only make sense when the whole module is processed
// together.
try addOutputOfType(
outputType: .objcHeader,
finalOutputPath: objcGeneratedHeaderPath,
input: nil,
flag: "-emit-objc-header-path")
try addOutputOfType(
outputType: .swiftInterface,
finalOutputPath: swiftInterfacePath,
input: nil,
flag: "-emit-module-interface-path")
try addOutputOfType(
outputType: .privateSwiftInterface,
finalOutputPath: swiftPrivateInterfacePath,
input: nil,
flag: "-emit-private-module-interface-path")
if let pkgName = packageName, !pkgName.isEmpty {
try addOutputOfType(
outputType: .packageSwiftInterface,
finalOutputPath: swiftPackageInterfacePath,
input: nil,
flag: "-emit-package-module-interface-path")
}
try addOutputOfType(
outputType: .tbd,
finalOutputPath: tbdPath,
input: nil,
flag: "-emit-tbd-path")
if let abiDescriptorPath = abiDescriptorPath {
try addOutputOfType(outputType: .jsonABIBaseline,
finalOutputPath: abiDescriptorPath.fileHandle,
input: nil,
flag: "-emit-abi-descriptor-path")
}
try addOutputOfType(
outputType: .jsonAPIDescriptor,
finalOutputPath: apiDescriptorFilePath,
input: nil,
flag: "-emit-api-descriptor-path")
}
}
if parsedOptions.hasArgument(.updateCode) {
guard compilerMode == .standardCompile else {
diagnosticEngine.emit(.error_update_code_not_supported(in: compilerMode))
throw ErrorDiagnostics.emitted
}
assert(primaryInputs.count == 1, "Standard compile job had more than one primary input")
let input = primaryInputs[0]
let remapOutputPath: VirtualPath
if let outputFileMapPath = try outputFileMap?.existingOutput(inputFile: input.fileHandle, outputType: .remap) {
remapOutputPath = VirtualPath.lookup(outputFileMapPath)
} else if let output = inputOutputMap[input]?.first, output.file != .standardOutput {
// Alongside primary output
remapOutputPath = try output.file.replacingExtension(with: .remap)
} else {
remapOutputPath =
try VirtualPath.createUniqueTemporaryFile(RelativePath(validating: input.file.basenameWithoutExt.appendingFileTypeExtension(.remap)))
}
flaggedInputOutputPairs.append((flag: "-emit-remap-file-path",
input: input,
output: TypedVirtualPath(file: remapOutputPath.intern(), type: .remap)))
}
if includeModuleTracePath, let tracePath = loadedModuleTracePath {
flaggedInputOutputPairs.append((flag: "-emit-loaded-module-trace-path",
input: nil,
output: TypedVirtualPath(file: tracePath, type: .moduleTrace)))
}
if inputsGeneratingCodeCount * FileType.allCases.count > fileListThreshold {
var entries = [VirtualPath.Handle: [FileType: VirtualPath.Handle]]()
for input in primaryInputs {
if let output = inputOutputMap[input]?.first {
try addEntry(&entries, input: input, output: output)
} else {
// Primary inputs are expected to appear in the output file map even
// if they have no corresponding outputs.
entries[input.fileHandle] = [:]
}
}
if primaryInputs.isEmpty {
// To match the legacy driver behavior, make sure we add the first input file
// to the output file map if compiling without primary inputs (WMO), even
// if there aren't any corresponding outputs.
guard let firstSourceInputHandle = inputFiles.first(where:{ $0.type == .swift })?.fileHandle else {
fatalError("Formulating swift-frontend invocation without any input .swift files")
}
entries[firstSourceInputHandle] = [:]
}
for flaggedPair in flaggedInputOutputPairs {
try addEntry(&entries, input: flaggedPair.input, output: flaggedPair.output)
}
// To match the legacy driver behavior, make sure we add an entry for the
// file under indexing and the primary output file path.
if let indexFilePath = indexFilePath, let idxOutput = inputOutputMap[indexFilePath]?.first {
entries[indexFilePath.fileHandle] = [.indexData: idxOutput.fileHandle]
}
let outputFileMap = OutputFileMap(entries: entries)
let fileList = try VirtualPath.createUniqueFilelist(RelativePath(validating: "supplementaryOutputs"),
.outputFileMap(outputFileMap))
commandLine.appendFlag(.supplementaryOutputFileMap)
commandLine.appendPath(fileList)
} else {
for flaggedPair in flaggedInputOutputPairs {
// Add the appropriate flag.
commandLine.appendFlag(flaggedPair.flag)
commandLine.appendPath(flaggedPair.output.file)
}
}
return flaggedInputOutputPairs.map { $0.output }
}
mutating func addCommonSymbolGraphOptions(commandLine: inout [Job.ArgTemplate],
includeGraph: Bool = true) throws {
if includeGraph {
try commandLine.appendLast(.emitSymbolGraph, from: &parsedOptions)
try commandLine.appendLast(.emitSymbolGraphDir, from: &parsedOptions)
}
try commandLine.appendLast(.includeSpiSymbols, from: &parsedOptions)
try commandLine.appendLast(.emitExtensionBlockSymbols, .omitExtensionBlockSymbols, from: &parsedOptions)
try commandLine.appendLast(.symbolGraphMinimumAccessLevel, from: &parsedOptions)
}
mutating func addEntry(_ entries: inout [VirtualPath.Handle: [FileType: VirtualPath.Handle]], input: TypedVirtualPath?, output: TypedVirtualPath) throws {
let entryInput: VirtualPath.Handle
if let input = input?.fileHandle, input != OutputFileMap.singleInputKey {
entryInput = input
} else {
guard let firstSourceInputHandle = inputFiles.first(where:{ $0.type == .swift })?.fileHandle else {
fatalError("Formulating swift-frontend invocation without any input .swift files")
}
entryInput = firstSourceInputHandle
}
let inputEntry = isCachingEnabled ? remapPath(VirtualPath.lookup(entryInput)).intern() : entryInput
entries[inputEntry, default: [:]][output.type] = output.fileHandle
}
/// Adds all dependencies required for an explicit module build
/// to inputs and command line arguments of a compile job.
mutating func addExplicitModuleBuildArguments(inputs: inout [TypedVirtualPath],
commandLine: inout [Job.ArgTemplate]) throws {
try explicitDependencyBuildPlanner?.resolveMainModuleDependencies(inputs: &inputs, commandLine: &commandLine)
}
/// Adds all dependencies required for an explicit module build of the bridging header
/// to inputs and command line arguments of a compile job.
mutating func addExplicitPCHBuildArguments(inputs: inout [TypedVirtualPath],
commandLine: inout [Job.ArgTemplate]) throws {
try explicitDependencyBuildPlanner?.resolveBridgingHeaderDependencies(inputs: &inputs, commandLine: &commandLine)
}
mutating func addPluginPathArguments(commandLine: inout [Job.ArgTemplate]) throws {
guard isFrontendArgSupported(.pluginPath) else {
return
}
// Default paths for compiler plugins found within the toolchain
// (loaded as shared libraries).
let pluginPathRoot = VirtualPath.absolute(try toolchain.executableDir.parentDirectory)
commandLine.appendFlag(.pluginPath)
commandLine.appendPath(pluginPathRoot.pluginPath)
commandLine.appendFlag(.pluginPath)
commandLine.appendPath(pluginPathRoot.localPluginPath)
}
/// If explicit dependency planner supports creating bridging header pch command.
public func supportsBridgingHeaderPCHCommand() throws -> Bool {
return try explicitDependencyBuildPlanner?.supportsBridgingHeaderPCHCommand() ?? false
}
/// In Explicit Module Build mode, distinguish between main module jobs and intermediate dependency build jobs,
/// such as Swift modules built from .swiftmodule files and Clang PCMs.
public func isExplicitMainModuleJob(job: Job) -> Bool {
return job.moduleName == moduleOutputInfo.name
}
}
extension Driver {
private func getAbsolutePathFromVirtualPath(_ path: VirtualPath) -> AbsolutePath? {
guard let cwd = workingDirectory ?? fileSystem.currentWorkingDirectory else {
return nil
}
return path.resolvedRelativePath(base: cwd).absolutePath
}
private mutating func remapPath(absolute path: AbsolutePath) -> AbsolutePath {
guard !prefixMapping.isEmpty else {
return path
}
for (prefix, value) in prefixMapping {
if path.isDescendantOfOrEqual(to: prefix) {
return value.appending(path.relative(to: prefix))
}
}
return path
}
public mutating func remapPath(_ path: VirtualPath) -> VirtualPath {
guard !prefixMapping.isEmpty,
let absPath = getAbsolutePathFromVirtualPath(path) else {
return path
}
let mappedPath = remapPath(absolute: absPath)
return try! VirtualPath(path: mappedPath.pathString)
}
/// Helper function to add path to commandLine. Function will validate the path, and remap the path if needed.
public mutating func addPathArgument(_ path: VirtualPath, to commandLine: inout [Job.ArgTemplate], remap: Bool = true) throws {
guard remap && isCachingEnabled else {
commandLine.appendPath(path)
return
}
let mappedPath = remapPath(path)
commandLine.appendPath(mappedPath)
}
public mutating func addPathOption(_ option: ParsedOption, to commandLine: inout [Job.ArgTemplate], remap: Bool = true) throws {
let path = try VirtualPath(path: option.argument.asSingle)
try addPathOption(option: option.option, path: path, to: &commandLine, remap: remap)
}
public mutating func addPathOption(option: Option, path: VirtualPath, to commandLine: inout [Job.ArgTemplate], remap: Bool = true) throws {
commandLine.appendFlag(option)
let needRemap = remap && option.attributes.contains(.argumentIsPath) &&
!option.attributes.contains(.cacheInvariant)
try addPathArgument(path, to: &commandLine, remap: needRemap)
}
/// Helper function to add last argument with path to command-line.
public mutating func addLastArgumentWithPath(_ options: Option...,
from parsedOptions: inout ParsedOptions,
to commandLine: inout [Job.ArgTemplate],
remap: Bool = true) throws {
guard let parsedOption = parsedOptions.last(for: options) else {
return
}
try addPathOption(parsedOption, to: &commandLine, remap: remap)
}
/// Helper function to add all arguments with path to command-line.
public mutating func addAllArgumentsWithPath(_ options: Option...,
from parsedOptions: inout ParsedOptions,
to commandLine: inout [Job.ArgTemplate],
remap: Bool) throws {
for matching in parsedOptions.arguments(for: options) {
try addPathOption(matching, to: &commandLine, remap: remap)
}
}
public mutating func addCacheReplayMapping(to commandLine: inout [Job.ArgTemplate]) {
if isCachingEnabled && isFrontendArgSupported(.scannerPrefixMap) {
for (key, value) in prefixMapping {
commandLine.appendFlag("-cache-replay-prefix-map")
commandLine.appendFlag(value.pathString + "=" + key.pathString)
}
}
}
}
extension Driver {
public mutating func computeOutputCacheKeyForJob(commandLine: [Job.ArgTemplate],
inputs: [(TypedVirtualPath, Int)]) throws -> [TypedVirtualPath: String] {
// No caching setup, return empty dictionary.
guard let cas = self.cas else {
return [:]
}
// Resolve command-line first.
let resolver = try ArgsResolver(fileSystem: fileSystem)
let arguments: [String] = try resolver.resolveArgumentList(for: commandLine)
return try inputs.reduce(into: [:]) { keys, input in
keys[input.0] = try cas.computeCacheKey(commandLine: arguments, index: input.1)
}
}
public mutating func computeOutputCacheKey(commandLine: [Job.ArgTemplate],
index: Int) throws -> String? {
// No caching setup, return empty dictionary.
guard let cas = self.cas else {
return nil
}
// Resolve command-line first.
let resolver = try ArgsResolver(fileSystem: fileSystem)
let arguments: [String] = try resolver.resolveArgumentList(for: commandLine)
return try cas.computeCacheKey(commandLine: arguments, index: index)
}
}
extension ParsedOptions {
/// Checks whether experimental embedded mode is enabled.
var isEmbeddedEnabled: Bool {
mutating get {
let experimentalFeatures = self.arguments(for: .enableExperimentalFeature)
return experimentalFeatures.map(\.argument).map(\.asSingle).contains("Embedded")
}
}
}
|