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