[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / no-transitive-type-change.cppm
blob9ec72e851b17dc51297cfb747719714409b57f71
1 // Testing that changing a type in an unused module file won't change 
2 // the BMI of the current module file.
3 //
4 // RUN: rm -rf %t
5 // RUN: split-file %s %t
6 //
7 // RUN: %clang_cc1 -std=c++20 %t/m-partA.cppm -emit-reduced-module-interface -o %t/m-partA.pcm
8 // RUN: %clang_cc1 -std=c++20 %t/m-partA.v1.cppm -emit-reduced-module-interface -o \
9 // RUN:     %t/m-partA.v1.pcm
10 // RUN: %clang_cc1 -std=c++20 %t/m-partB.cppm -emit-reduced-module-interface -o %t/m-partB.pcm
11 // RUN: %clang_cc1 -std=c++20 %t/m.cppm -emit-reduced-module-interface -o %t/m.pcm \
12 // RUN:     -fmodule-file=m:partA=%t/m-partA.pcm -fmodule-file=m:partB=%t/m-partB.pcm
13 // RUN: %clang_cc1 -std=c++20 %t/m.cppm -emit-reduced-module-interface -o %t/m.v1.pcm \
14 // RUN:     -fmodule-file=m:partA=%t/m-partA.v1.pcm -fmodule-file=m:partB=%t/m-partB.pcm
16 // RUN: %clang_cc1 -std=c++20 %t/useBOnly.cppm -emit-reduced-module-interface -o %t/useBOnly.pcm \
17 // RUN:     -fmodule-file=m=%t/m.pcm -fmodule-file=m:partA=%t/m-partA.pcm \
18 // RUN:     -fmodule-file=m:partB=%t/m-partB.pcm
19 // RUN: %clang_cc1 -std=c++20 %t/useBOnly.cppm -emit-reduced-module-interface -o %t/useBOnly.v1.pcm \
20 // RUN:     -fmodule-file=m=%t/m.v1.pcm -fmodule-file=m:partA=%t/m-partA.v1.pcm \
21 // RUN:     -fmodule-file=m:partB=%t/m-partB.pcm
22 // Since useBOnly only uses partB from module M, the change in partA shouldn't affect
23 // useBOnly.
24 // RUN: diff %t/useBOnly.pcm %t/useBOnly.v1.pcm &> /dev/null
26 // RUN: %clang_cc1 -std=c++20 %t/useAOnly.cppm -emit-reduced-module-interface -o %t/useAOnly.pcm \
27 // RUN:     -fmodule-file=m=%t/m.pcm -fmodule-file=m:partA=%t/m-partA.pcm \
28 // RUN:     -fmodule-file=m:partB=%t/m-partB.pcm
29 // RUN: %clang_cc1 -std=c++20 %t/useAOnly.cppm -emit-reduced-module-interface -o %t/useAOnly.v1.pcm \
30 // RUN:     -fmodule-file=m=%t/m.v1.pcm -fmodule-file=m:partA=%t/m-partA.v1.pcm \
31 // RUN:     -fmodule-file=m:partB=%t/m-partB.pcm
32 // Since useAOnly uses partA from module M, the change in partA should affect useAOnly.
33 // RUN: not diff %t/useAOnly.pcm %t/useAOnly.v1.pcm &> /dev/null
35 //--- m-partA.cppm
36 export module m:partA;
38 export int getValueFromA() { return 43; }
40 //--- m-partA.v1.cppm
41 export module m:partA;
43 export int getValueFromA() { return 43; }
45 namespace NS {
46     class A {
47         public:
48             int getValue() {
49                 return 43;
50             }
51     };
54 //--- m-partB.cppm
55 export module m:partB;
57 export inline int getB() {
58     return 430;
61 //--- m.cppm
62 export module m;
63 export import :partA;
64 export import :partB;
66 //--- useBOnly.cppm
67 export module useBOnly;
68 import m;
70 export inline int get() {
71     return getB();
74 //--- useAOnly.cppm
75 export module useAOnly;
76 import m;
78 export inline int get() {
79     return getValueFromA();