forked from swiftlang/swift
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmultithread_module.swift
65 lines (48 loc) · 1.75 KB
/
multithread_module.swift
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
// RUN: rm -rf %t && mkdir -p %t
// RUN: %target-swift-frontend %S/Inputs/multithread_module/main.swift -emit-ir -o %t/main.ll %s -o %t/mt_module.ll -num-threads 2 -O -g -module-name test
// RUN: FileCheck --check-prefix=CHECK-MAINLL %s <%t/main.ll
// RUN: FileCheck --check-prefix=CHECK-MODULELL %s <%t/mt_module.ll
// RUN: %target-swift-frontend -c %S/Inputs/multithread_module/main.swift -o %t/main.o %s -o %t/mt_module.o -num-threads 2 -O -g -module-name test
// RUN: %target-build-swift %t/main.o %t/mt_module.o -o %t/a.out
// RUN: %target-run %t/a.out | FileCheck %s
// REQUIRES: executable_test
// Test compilation of a module in multi-threaded compilation.
// The main purpose of the test is to check that the generated LLVM modules are not corrupt
// and that linking succeeds.
// CHECK: 28
// CHECK: 125
// CHECK: 42
// CHECK: 237
public func testit(x: Int) -> Int {
return incrementit(x)
}
public class Base {
func memberfunc(x: Int) -> Int {
return x + 1
}
}
public var g2 = 123
@inline(never)
func callmember(b: Base) -> Int {
return b.memberfunc(g2)
}
@inline(never)
private func privateInc(x: Int) -> Int {
return x + 3
}
func callPrivInc(x: Int) -> Int {
return privateInc(x)
}
protocol MyProto {
func protofunc() -> Int
}
@inline(never)
func callproto(p: MyProto) {
print(p.protofunc())
}
// Check the llvm IR files:
// Check if the DI filename is correct and not "<unknown>".
// CHECK-MAINLL: DICompileUnit(language: DW_LANG_Swift, file: [[F:![0-9]+]]
// CHECK-MAINLL: [[F]] = !DIFile(filename: "{{.*}}IRGen/Inputs/multithread_module/main.swift", directory: "{{.*}}")
// CHECK-MODULELL: DICompileUnit(language: DW_LANG_Swift, file: [[F:![0-9]+]]
// CHECK-MODULELL: [[F]] = !DIFile(filename: "{{.*}}IRGen/multithread_module.swift", directory: "{{.*}}")