-
Notifications
You must be signed in to change notification settings - Fork 197
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
base: main
Are you sure you want to change the base?
Conversation
@swift-ci test |
6d351de
to
95c6c6d
Compare
@swift-ci test |
95c6c6d
to
e1c9db6
Compare
@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
e1c9db6
to
16688ae
Compare
@swift-ci test |
@swift-ci test Windows platform |
1 similar comment
@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, |
There was a problem hiding this comment.
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.
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:
ExplicitDependencyBuildPlanner
global state from theDriver
instanceExplicitDependencyBuildPlanner
instance at the beginning if build planning and propagate/thread this instance to all the required compilation task creation routines, all the way toaddCommonFrontendOptions
-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: