Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Explicit Module Builds][Target Variant] Refactor build planning to allow for a second, separate emit-module task for the target variant #1856

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

artemcm
Copy link
Contributor

@artemcm artemcm commented Mar 28, 2025

This change allows builds that specify a variant triple and which must emit a target variant module to do so from within a single swiftc invocation when using Explicit Module Builds.

This is an extensive refactor of the build planning procedure with respect to Explicit Module Builds:

  • Remove ExplicitDependencyBuildPlanner global state from the Driver instance
  • Instantiate a ExplicitDependencyBuildPlanner instance at the beginning if build planning and propagate/thread this instance to all the required compilation task creation routines, all the way to addCommonFrontendOptions
  • For -target-variant builds which emit a variant triple module, instantiate a whole separate explicit build planner, including performing a secondary dependency scan using the variant triple. Using this information:
    • Schedule variant triple module pre-compile dependency tasks
    • Schedule a variant triple PCH compilation task, if necessary
    • Schedule the variant emit-module task
    • Schedule the variant textual module verification task, if necessary

@artemcm
Copy link
Contributor Author

artemcm commented Mar 28, 2025

@swift-ci test

@artemcm artemcm force-pushed the VariantEmitModule branch from 6d351de to 95c6c6d Compare April 1, 2025 21:12
@artemcm
Copy link
Contributor Author

artemcm commented Apr 1, 2025

@swift-ci test

@artemcm artemcm force-pushed the VariantEmitModule branch from 95c6c6d to e1c9db6 Compare April 1, 2025 22:21
@artemcm
Copy link
Contributor Author

artemcm commented Apr 1, 2025

@swift-ci test

…llow for a second, separte emit-module task for the target variant

This change allows builds that specify a variant triple and which must emit a target variant module to do so from within a single `swiftc` invocation when using Explicit Module Builds.

This is an extensive refactor of the build planning procedure with respect to Explicit Module Builds:
- Remove 'ExplicitDependencyBuildPlanner' global state from the 'Driver' instance
- Instantiate a 'ExplicitDependencyBuildPlanner' instance at the beginning if build planning and propagate/thread this instance to all the required compilation task creation routines, all the way to 'addCommonFrontendOptions'
- For '-target-variant' builds which emit a variant triple module, instantiate a whole separate explicit build planner, including performing a secondary dependency scan using the variant triple. Using this information:
  - Schedule variant triple module pre-compile dependency tasks
  - Schedule a variant triple PCH compilation task, if necessary
  - Schedule the variant emit-module task
  - Schedule the variant textual module verification task, if necessary
@artemcm artemcm force-pushed the VariantEmitModule branch from e1c9db6 to 16688ae Compare April 1, 2025 22:38
@artemcm
Copy link
Contributor Author

artemcm commented Apr 1, 2025

@swift-ci test

@artemcm
Copy link
Contributor Author

artemcm commented Apr 1, 2025

@swift-ci test Windows platform

1 similar comment
@artemcm
Copy link
Contributor Author

artemcm commented Apr 2, 2025

@swift-ci test Windows platform

throws -> (VirtualPath.Handle?, VirtualPath.Handle?) {
let contextHash = try? explicitModulePlanner?.getMainModuleContextHash()
let chainedBridgingHeader = explicitModulePlanner?.chainedBridgingHeaderFile
let importedObjCHeader = try computeImportedObjCHeader(&parsedOptions, compilerMode: compilerMode,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

computeImportedObjCHeader current does a file write to create the header. We don't want to write header every time we call this function.

Alternative is to have a new type that is similar to temporaryWithKnownContents but it is not a temporary.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants