[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGenCXX / clang-abi-compat.cpp
blob4d518116f0a70cfc9a39abf3429b80cc85179680
1 // RUN: %clang_cc1 -std=c++98 -triple x86_64-linux-gnu -fenable-matrix -fclang-abi-compat=3.0 %s -emit-llvm -o - -Wno-c++11-extensions \
2 // RUN: | FileCheck --check-prefixes=CHECK,PRE39,PRE5,PRE12,PRE15 %s
3 // RUN: %clang_cc1 -std=c++17 -triple x86_64-linux-gnu -fenable-matrix -fclang-abi-compat=3.0 %s -emit-llvm -o - \
4 // RUN: | FileCheck --check-prefixes=CHECK,PRE39,PRE5,PRE12,PRE15 %s
5 // RUN: %clang_cc1 -std=c++17 -triple x86_64-linux-gnu -fenable-matrix -fclang-abi-compat=3.8 %s -emit-llvm -o - \
6 // RUN: | FileCheck --check-prefixes=CHECK,PRE39,PRE5,PRE12,PRE15 %s
7 // RUN: %clang_cc1 -std=c++17 -triple x86_64-linux-gnu -fenable-matrix -fclang-abi-compat=3.9 %s -emit-llvm -o - \
8 // RUN: | FileCheck --check-prefixes=CHECK,V39,PRE5,PRE12,PRE15 %s
9 // RUN: %clang_cc1 -std=c++17 -triple x86_64-linux-gnu -fenable-matrix -fclang-abi-compat=4.0 %s -emit-llvm -o - \
10 // RUN: | FileCheck --check-prefixes=CHECK,V39,PRE5,PRE12,PRE15 %s
11 // RUN: %clang_cc1 -std=c++17 -triple x86_64-linux-gnu -fenable-matrix -fclang-abi-compat=5 %s -emit-llvm -o - \
12 // RUN: | FileCheck --check-prefixes=CHECK,V39,V5,PRE12,PRE12-CXX17,PRE15 %s
13 // RUN: %clang_cc1 -std=c++17 -triple x86_64-linux-gnu -fenable-matrix -fclang-abi-compat=11 %s -emit-llvm -o - \
14 // RUN: | FileCheck --check-prefixes=CHECK,V39,V5,PRE12,PRE12-CXX17,PRE15 %s
15 // RUN: %clang_cc1 -std=c++20 -triple x86_64-linux-gnu -fenable-matrix -fclang-abi-compat=11 %s -emit-llvm -o - \
16 // RUN: | FileCheck --check-prefixes=CHECK,V39,V5,PRE12,PRE12-CXX17,PRE12-CXX20,PRE13-CXX20,PRE15 %s
17 // RUN: %clang_cc1 -std=c++20 -triple x86_64-linux-gnu -fenable-matrix -fclang-abi-compat=12 %s -emit-llvm -o - \
18 // RUN: | FileCheck --check-prefixes=CHECK,V39,V5,V12,V12-CXX17,V12-CXX20,PRE13-CXX20,PRE15 %s
19 // RUN: %clang_cc1 -std=c++20 -triple x86_64-linux-gnu -fenable-matrix -fclang-abi-compat=14 %s -emit-llvm -o - \
20 // RUN: | FileCheck --check-prefixes=CHECK,V39,V5,V12,V12-CXX17,V12-CXX20,V13-CXX20,PRE15 %s
21 // RUN: %clang_cc1 -std=c++98 -triple x86_64-linux-gnu -fenable-matrix -fclang-abi-compat=latest %s -emit-llvm -o - -Wno-c++11-extensions \
22 // RUN: | FileCheck --check-prefixes=CHECK,V39,V5,V12,V15 %s
23 // RUN: %clang_cc1 -std=c++20 -triple x86_64-linux-gnu -fenable-matrix -fclang-abi-compat=latest %s -emit-llvm -o - \
24 // RUN: | FileCheck --check-prefixes=CHECK,V39,V5,V12,V12-CXX17,V12-CXX20,V13-CXX20,V15 %s
26 typedef __attribute__((vector_size(8))) long long v1xi64;
27 void clang39(v1xi64) {}
28 // PRE39: @_Z7clang39Dv1_x(i64
29 // V39: @_Z7clang39Dv1_x(double
31 struct A {
32 A(const A&) = default;
33 A(A&&);
35 void clang5(A) {}
36 // PRE5: @_Z6clang51A()
37 // V5: @_Z6clang51A(ptr
39 namespace mangle_template_prefix {
40 // PRE12: @_ZN22mangle_template_prefix1fINS_1TEEEvNT_1UIiE1VIiEENS4_S5_IfEE(
41 // V12: @_ZN22mangle_template_prefix1fINS_1TEEEvNT_1UIiE1VIiEENS5_IfEE(
42 template<typename T> void f(typename T::template U<int>::template V<int>, typename T::template U<int>::template V<float>);
43 struct T { template<typename I> struct U { template<typename J> using V = int; }; };
44 void g() { f<T>(1, 2); }
47 int arg;
48 template<const int *> struct clang12_unchanged {};
49 // CHECK: @_Z4test17clang12_unchangedIXadL_Z3argEEE
50 void test(clang12_unchanged<&arg>) {}
52 #if __cplusplus >= 201703L
53 // PRE12-CXX17: @_Z4test15clang12_changedIXadL_Z3argEEE
54 // V12-CXX17: @_Z4test15clang12_changedIXcvPKiadL_Z3argEEE
55 template<auto> struct clang12_changed {};
56 void test(clang12_changed<(const int*)&arg>) {}
57 #endif
59 // PRE12: @_Z9clang12_aIXadL_Z3argEEEvv
60 // V12: @_Z9clang12_aIXcvPKiadL_Z3argEEEvv
61 template<const int *> void clang12_a() {}
62 template void clang12_a<&arg>();
64 // PRE12: @_Z9clang12_bIXadL_Z3arrEEEvv
65 // V12: @_Z9clang12_bIXadsoKcL_Z3arrEEEEvv
66 extern const char arr[6] = "hello";
67 template<const char *> void clang12_b() {}
68 template void clang12_b<arr>();
70 // CHECK: @_Z9clang12_cIXadL_Z3arrEEEvv
71 template<const char (*)[6]> void clang12_c() {}
72 template void clang12_c<&arr>();
75 /// Tests for <template-arg> <expr-primary> changes in clang12:
76 namespace expr_primary {
77 struct A {
78 template<int N> struct Int {};
79 template<int& N> struct Ref {};
82 /// Check various DeclRefExpr manglings
84 // PRE12: @_ZN12expr_primary5test1INS_1AEEEvNT_3IntIXLi1EEEE
85 // V12: @_ZN12expr_primary5test1INS_1AEEEvNT_3IntILi1EEE
86 template <typename T> void test1(typename T::template Int<1> a) {}
87 template void test1<A>(typename A::template Int<1> a);
89 enum Enum { EnumVal = 4 };
90 int Global;
92 // PRE12: @_ZN12expr_primary5test2INS_1AEEEvNT_3IntIXLNS_4EnumE4EEEE
93 // V12: @_ZN12expr_primary5test2INS_1AEEEvNT_3IntILNS_4EnumE4EEE
94 template <typename T> void test2(typename T::template Int<EnumVal> a) {}
95 template void test2<A>(typename A::template Int<4> a);
97 // CHECK: @_ZN12expr_primary5test3ILi3EEEvNS_1A3IntIXT_EEE
98 template <int X> void test3(typename A::template Int<X> a) {}
99 template void test3<3>(A::Int<3> a);
101 #if __cplusplus >= 202002L
102 // CHECK-CXX20: @_ZN12expr_primary5test4INS_1AEEEvNT_3RefIL_ZNS_6GlobalEEEE
103 template <typename T> void test4(typename T::template Ref<(Global)> a) {}
104 template void test4<A>(typename A::template Ref<Global> a);
106 struct B {
107 struct X {
108 constexpr X(double) {}
109 constexpr X(int&) {}
111 template<X> struct Y {};
114 // PRE12-CXX20: _ZN12expr_primary5test5INS_1BEEEvNT_1YIXLd3ff0000000000000EEEE
115 // V12-CXX20: _ZN12expr_primary5test5INS_1BEEEvNT_1YILd3ff0000000000000EEE
116 template<typename T> void test5(typename T::template Y<1.0>) { }
117 template void test5<B>(typename B::Y<1.0>);
119 // PRE12-CXX20: @_ZN12expr_primary5test6INS_1BEEENT_1YIL_ZZNS_5test6EiE1bEEEi
120 // V12-CXX20: @_ZN12expr_primary5test6INS_1BEEENT_1YIXfp_EEEi
121 template<typename T> auto test6(int b) -> typename T::template Y<b> { return {}; }
122 template auto test6<B>(int b) -> B::Y<b>;
123 #endif
125 /// Verify non-dependent type-traits within a dependent template arg.
127 // PRE12: @_ZN12expr_primary5test7INS_1AEEEvNT_3IntIXLm1EEEE
128 // V12: @_ZN12expr_primary5test7INS_1AEEEvNT_3IntILm1EEE
129 template <class T> void test7(typename T::template Int<sizeof(char)> a) {}
130 template void test7<A>(A::Int<1>);
132 // PRE12: @_ZN12expr_primary5test8ILi2EEEvu11matrix_typeIXLi1EEXT_EiE
133 // V12: @_ZN12expr_primary5test8ILi2EEEvu11matrix_typeILi1EXT_EiE
134 template<int N> using matrix1xN = int __attribute__((matrix_type(1, N)));
135 template<int N> void test8(matrix1xN<N> a) {}
136 template void test8<2>(matrix1xN<2> a);
138 // PRE12: @_ZN12expr_primary5test9EUa9enable_ifIXLi1EEEv
139 // V12: @_ZN12expr_primary5test9EUa9enable_ifILi1EEv
140 void test9(void) __attribute__((enable_if(1, ""))) {}
144 #if __cplusplus >= 202002L
145 // PRE13-CXX20: @_Z15observe_lambdasI17inline_var_lambdaMUlvE_17inline_var_lambdaMUlvE0_PiS2_S0_S1_EiT_T0_T1_T2_
146 // V13-CXX20: @_Z15observe_lambdasIN17inline_var_lambdaMUlvE_ENS0_UlvE0_EPiS3_S1_S2_EiT_T0_T1_T2_
147 template <typename T, typename U, typename V, typename W, typename = T, typename = U>
148 int observe_lambdas(T, U, V, W) { return 0; }
149 inline auto inline_var_lambda = observe_lambdas([]{}, []{}, (int*)0, (int*)0);
150 int use_inline_var_lambda() { return inline_var_lambda; }
151 #endif
153 struct X {
154 struct Y {
155 using a = int;
156 using b = int;
159 template <typename T> void test10(typename T::Y::a, typename T::Y::b, float*, float*) {}
160 // PRE15: @_Z6test10I1XEvNT_1Y1aENS1_1Y1bEPfS4_
161 // V15: @_Z6test10I1XEvNT_1Y1aENS2_1bEPfS5_
162 template void test10<X>(int, int, float*, float*);