mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
* rename the CrossModuleSerializationSetup pass to simply CrossModuleOptimization * remove the CMO specific serializer pass. Instead run the CrossModuleSerializationSetup pass directly before the standard serializer pass. * correctly handle shared functions (e.g. specializations) * refactoring
37 lines
1.4 KiB
Swift
37 lines
1.4 KiB
Swift
// First test: functional correctness
|
|
|
|
// RUN: %empty-directory(%t)
|
|
// RUN: %target-build-swift -O -wmo -parse-as-library -cross-module-optimization -emit-module -emit-module-path=%t/Test.swiftmodule -module-name=Test -I%t %S/Inputs/cross-module/cross-module-objc.swift -c -o %t/test.o
|
|
// RUN: %target-build-swift -O -wmo -module-name=Main -I%t %s -c -o %t/main.o
|
|
// RUN: %target-swiftc_driver %t/main.o %t/test.o -o %t/a.out
|
|
// RUN: %target-codesign %t/a.out
|
|
// RUN: %target-run %t/a.out | %FileCheck %s -check-prefix=CHECK-OUTPUT
|
|
|
|
// Check if it also works if the main module is compiled with -Onone:
|
|
|
|
// RUN: %target-build-swift -Onone -wmo -module-name=Main -I%t %s -c -o %t/main-onone.o
|
|
// RUN: %target-swiftc_driver %t/main-onone.o %t/test.o -o %t/a.out
|
|
// RUN: %target-codesign %t/a.out
|
|
// RUN: %target-run %t/a.out | %FileCheck %s -check-prefix=CHECK-OUTPUT
|
|
|
|
// REQUIRES: executable_test
|
|
// REQUIRES: objc_interop
|
|
|
|
// Second test: check if CMO really imports the SIL of functions in other modules.
|
|
|
|
// RUN: %target-build-swift -O -wmo -module-name=Main -I%t %s -Xllvm -sil-disable-pass=FunctionSignatureOpts -emit-sil | %FileCheck %s -check-prefix=CHECK-SIL
|
|
|
|
|
|
import Test
|
|
|
|
func testClass() {
|
|
// CHECK-OUTPUT: 127
|
|
|
|
// We don't support serializing ObjC calls yet.
|
|
// CHECK-SIL: function_ref @$s4Test19callObjcClassMemberySixlF :
|
|
print(callObjcClassMember(0))
|
|
}
|
|
|
|
testClass()
|
|
|