1*d51e9933SAlexey Bataev // RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -fsyntax-only -verify %s
2*d51e9933SAlexey Bataev // RUN: %clang_cc1 -triple i386-unknown-linux-gnu -fsyntax-only -verify %s
3*d51e9933SAlexey Bataev // RUN: %clang_cc1 -triple x86_64-pc-win32 -fsyntax-only -verify %s
4*d51e9933SAlexey Bataev // RUN: %clang_cc1 -triple i386-pc-win32 -fsyntax-only -verify %s
5*d51e9933SAlexey Bataev // RUN: %clang_cc1 -triple x86_64-unknown-linux-gnux32 -fsyntax-only -verify %s
6*d51e9933SAlexey Bataev
7*d51e9933SAlexey Bataev struct a {
8*d51e9933SAlexey Bataev int b;
fooa9*d51e9933SAlexey Bataev static void foo(int *a) __attribute__((interrupt)) {}
operator newa10*d51e9933SAlexey Bataev void *operator new(__SIZE_TYPE__) throw() __attribute__((interrupt)) { return 0; } // expected-warning {{'interrupt' attribute only applies to non-K&R-style functions}}
11*d51e9933SAlexey Bataev };
12*d51e9933SAlexey Bataev
13*d51e9933SAlexey Bataev struct a test __attribute__((interrupt)); // expected-warning {{'interrupt' attribute only applies to non-K&R-style functions}}
14*d51e9933SAlexey Bataev
foo1(void)15*d51e9933SAlexey Bataev __attribute__((interrupt)) int foo1(void) { return 0; } // expected-error-re {{{{(x86|x86-64)}} 'interrupt' attribute only applies to functions that have a 'void' return type}}
foo2(void)16*d51e9933SAlexey Bataev __attribute__((interrupt)) void foo2(void) {} // expected-error-re {{{{(x86|x86-64)}} 'interrupt' attribute only applies to functions that have only a pointer parameter optionally followed by an integer parameter}}
foo3(void * a,unsigned b,int c)17*d51e9933SAlexey Bataev __attribute__((interrupt)) void foo3(void *a, unsigned b, int c) {} // expected-error-re {{{{(x86|x86-64)}} 'interrupt' attribute only applies to functions that have only a pointer parameter optionally followed by an integer parameter}}
foo4(int a)18*d51e9933SAlexey Bataev __attribute__((interrupt)) void foo4(int a) {} // expected-error-re {{{{(x86|x86-64)}} 'interrupt' attribute only applies to functions that have a pointer as the first parameter}}
19*d51e9933SAlexey Bataev #ifdef _LP64
20*d51e9933SAlexey Bataev // expected-error-re@+6 {{{{(x86|x86-64)}} 'interrupt' attribute only applies to functions that have a 'unsigned long' type as the second parameter}}
21*d51e9933SAlexey Bataev #elif defined(__x86_64__)
22*d51e9933SAlexey Bataev // expected-error-re@+4 {{{{(x86|x86-64)}} 'interrupt' attribute only applies to functions that have a 'unsigned long long' type as the second parameter}}
23*d51e9933SAlexey Bataev #else
24*d51e9933SAlexey Bataev // expected-error-re@+2 {{{{(x86|x86-64)}} 'interrupt' attribute only applies to functions that have a 'unsigned int' type as the second parameter}}
25*d51e9933SAlexey Bataev #endif
foo5(void * a,float b)26*d51e9933SAlexey Bataev __attribute__((interrupt)) void foo5(void *a, float b) {}
27*d51e9933SAlexey Bataev #ifdef _LP64
28*d51e9933SAlexey Bataev // expected-error-re@+6 {{{{(x86|x86-64)}} 'interrupt' attribute only applies to functions that have a 'unsigned long' type as the second parameter}}
29*d51e9933SAlexey Bataev #elif defined(__x86_64__)
30*d51e9933SAlexey Bataev // expected-error-re@+4 {{{{(x86|x86-64)}} 'interrupt' attribute only applies to functions that have a 'unsigned long long' type as the second parameter}}
31*d51e9933SAlexey Bataev #else
32*d51e9933SAlexey Bataev // expected-error-re@+2 {{{{(x86|x86-64)}} 'interrupt' attribute only applies to functions that have a 'unsigned int' type as the second parameter}}
33*d51e9933SAlexey Bataev #endif
foo6(float * a,int b)34*d51e9933SAlexey Bataev __attribute__((interrupt)) void foo6(float *a, int b) {}
35*d51e9933SAlexey Bataev
36*d51e9933SAlexey Bataev #ifdef _LP64
37*d51e9933SAlexey Bataev // expected-error-re@+4 {{{{(x86|x86-64)}} 'interrupt' attribute only applies to functions that have a 'unsigned long' type as the second parameter}}
38*d51e9933SAlexey Bataev #elif defined(__x86_64__)
39*d51e9933SAlexey Bataev // expected-error-re@+2 {{{{(x86|x86-64)}} 'interrupt' attribute only applies to functions that have a 'unsigned long long' type as the second parameter}}
40*d51e9933SAlexey Bataev #endif
foo7(int * a,unsigned b)41*d51e9933SAlexey Bataev __attribute__((interrupt)) void foo7(int *a, unsigned b) {}
foo8(int * a)42*d51e9933SAlexey Bataev __attribute__((interrupt)) void foo8(int *a) {}
43*d51e9933SAlexey Bataev template<typename T>
foo9(T * a)44*d51e9933SAlexey Bataev __attribute__((interrupt)) void foo9(T *a) {}
45*d51e9933SAlexey Bataev
46*d51e9933SAlexey Bataev template <typename T>
bar(T * a)47*d51e9933SAlexey Bataev void bar(T *a) {
48*d51e9933SAlexey Bataev foo9(a); // expected-error {{interrupt service routine cannot be called directly}}
49*d51e9933SAlexey Bataev }
50*d51e9933SAlexey Bataev
51*d51e9933SAlexey Bataev template <typename Fn>
bar1(Fn F)52*d51e9933SAlexey Bataev void bar1(Fn F) {
53*d51e9933SAlexey Bataev F(0);
54*d51e9933SAlexey Bataev }
foo(int *)55*d51e9933SAlexey Bataev __attribute__((interrupt)) void foo(int *) {}
56*d51e9933SAlexey Bataev
57*d51e9933SAlexey Bataev void g(void (*fp)(int *));
main(int argc,char ** argv)58*d51e9933SAlexey Bataev int main(int argc, char **argv) {
59*d51e9933SAlexey Bataev void *ptr = (void *)&foo7;
60*d51e9933SAlexey Bataev g(foo8);
61*d51e9933SAlexey Bataev (void)ptr;
62*d51e9933SAlexey Bataev a::foo(ptr); // expected-error {{interrupt service routine cannot be called directly}}
63*d51e9933SAlexey Bataev bar1(foo);
64*d51e9933SAlexey Bataev #ifndef __x86_64__
65*d51e9933SAlexey Bataev // expected-error@+2 {{interrupt service routine cannot be called directly}}
66*d51e9933SAlexey Bataev #endif
67*d51e9933SAlexey Bataev foo7((int *)argv, argc);
68*d51e9933SAlexey Bataev foo8((int *)argv); // expected-error {{interrupt service routine cannot be called directly}}
69*d51e9933SAlexey Bataev bar(argv); // expected-note {{in instantiation of function template specialization 'bar<char *>' requested here}}
70*d51e9933SAlexey Bataev return 0;
71*d51e9933SAlexey Bataev }
72*d51e9933SAlexey Bataev
73