mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
If a module was first read using the adjacent swiftmodule and then reloaded using the swiftinterface, we would do an up to date check on the adjacent module but write out the unit using the swiftinterface. This would cause the same modules to be indexed repeatedly for the first invocation using a new SDK. On the next run we would instead raad the swiftmodule from the cache and thus the out of date check would match up. The impact of this varies depending on the size of the module graph in the initial compilation and the number of jobs started at the same time. Each SDK dependency is re-indexed *and* reloaded, which is a drain on both CPU and memory. Thus, if many jobs are initially started and they're all going down this path, it can cause the system to run out of memory very quickly. Resolves rdar://103119964.
28 lines
1.7 KiB
Swift
28 lines
1.7 KiB
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-build-swift -Xfrontend -disable-implicit-concurrency-module-import -Xfrontend -disable-implicit-string-processing-module-import -module-cache-path %t/modulecache -index-file -index-file-path %s %s %S/Inputs/SwiftModuleA.swift -module-name unit_one_test -o %t/00-output_for_index -index-store-path %t/idx
|
|
// RUN: c-index-test core -print-unit %t/idx | %FileCheck %s -implicit-check-not SwiftShims
|
|
|
|
// Remove the index and run again to make sure paths don't change from the module cache
|
|
// RUN: %empty-directory(%t/idx)
|
|
// RUN: %target-build-swift -Xfrontend -disable-implicit-concurrency-module-import -Xfrontend -disable-implicit-string-processing-module-import -module-cache-path %t/modulecache -index-file -index-file-path %s %s %S/Inputs/SwiftModuleA.swift -module-name unit_one_test -o %t/00-output_for_index -index-store-path %t/idx
|
|
// RUN: c-index-test core -print-unit %t/idx | %FileCheck %s -implicit-check-not SwiftShims
|
|
|
|
// The output is sorted by last path component, so make sure the top-level entry
|
|
// gets sorted first by prepending 0s.
|
|
|
|
// CHECK: 00-output_for_index
|
|
// CHECK: DEPEND START
|
|
// CHECK: Unit | system | Swift | [[MODULE:.*[/\\]Swift[.]swiftmodule([/\\].+[.]swiftinterface)?]] | [[SWIFT:.+[.]swiftinterface-[A-Z0-9]*]]
|
|
// CHECK: Record | user | {{.*}}{{/|\\}}unit-one-file-multi-file-invocation.swift |
|
|
// CHECK: DEPEND END (2)
|
|
|
|
// CHECK: [[SWIFT]]
|
|
// CHECK: DEPEND START
|
|
// CHECK: Record | system | Swift.Math.Floating | [[MODULE]] | {{.+}}.swiftinterface_Math_Floating-{{.*}}
|
|
// CHECK: Record | system | Swift.String | [[MODULE]] | {{.+}}.swiftinterface_String-{{.*}}
|
|
// CHECK: DEPEND END
|
|
|
|
func test1() {
|
|
funcSwiftA()
|
|
}
|