svn merge -r102224:107263 svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-3_4-branch
[official-gcc.git] / gcc / testsuite / gcc.dg / cleanup-11.c
blobe989409649158ca8e8003afc8df896abbbb0520b
1 /* { dg-do run { target i?86-*-linux* x86_64-*-linux* ia64-*-linux* alpha*-*-linux* powerpc*-*-linux* s390*-*-linux* sparc*-*-linux* mips*-*-linux* } } */
2 /* { dg-options "-fexceptions -fnon-call-exceptions -O2" } */
3 /* Verify that cleanups work with exception handling through realtime signal
4 frames on alternate stack. */
6 #include <unwind.h>
7 #include <stdlib.h>
8 #include <signal.h>
9 #include <unistd.h>
11 static _Unwind_Reason_Code
12 force_unwind_stop (int version, _Unwind_Action actions,
13 _Unwind_Exception_Class exc_class,
14 struct _Unwind_Exception *exc_obj,
15 struct _Unwind_Context *context,
16 void *stop_parameter)
18 if (actions & _UA_END_OF_STACK)
19 abort ();
20 return _URC_NO_REASON;
23 static void force_unwind ()
25 struct _Unwind_Exception *exc = malloc (sizeof (*exc));
26 exc->exception_class = 0;
27 exc->exception_cleanup = 0;
29 #ifndef __USING_SJLJ_EXCEPTIONS__
30 _Unwind_ForcedUnwind (exc, force_unwind_stop, 0);
31 #else
32 _Unwind_SjLj_ForcedUnwind (exc, force_unwind_stop, 0);
33 #endif
35 abort ();
38 int count;
39 char *null;
41 static void counter (void *p __attribute__((unused)))
43 ++count;
46 static void handler (void *p __attribute__((unused)))
48 if (count != 2)
49 abort ();
50 exit (0);
53 static int __attribute__((noinline)) fn5 ()
55 char dummy __attribute__((cleanup (counter)));
56 force_unwind ();
57 return 0;
60 static void fn4 (int sig, siginfo_t *info, void *ctx)
62 char dummy __attribute__((cleanup (counter)));
63 fn5 ();
64 null = NULL;
67 static void fn3 ()
69 abort ();
72 static int __attribute__((noinline)) fn2 ()
74 *null = 0;
75 fn3 ();
76 return 0;
79 static int __attribute__((noinline)) fn1 ()
81 stack_t ss;
82 struct sigaction s;
84 ss.ss_size = 4 * sysconf (_SC_PAGESIZE);
85 if (ss.ss_size < SIGSTKSZ)
86 ss.ss_size = SIGSTKSZ;
87 ss.ss_sp = malloc (ss.ss_size);
88 if (ss.ss_sp == NULL)
89 exit (1);
90 ss.ss_flags = 0;
91 if (sigaltstack (&ss, NULL) < 0)
92 exit (1);
94 sigemptyset (&s.sa_mask);
95 s.sa_sigaction = fn4;
96 s.sa_flags = SA_ONESHOT | SA_ONSTACK | SA_SIGINFO;
97 sigaction (SIGSEGV, &s, NULL);
98 fn2 ();
99 return 0;
102 static int __attribute__((noinline)) fn0 ()
104 char dummy __attribute__((cleanup (handler)));
105 fn1 ();
106 null = 0;
107 return 0;
110 int main()
112 fn0 ();
113 abort ();