* src/vm/signal.c (signal_init): Use SUPPORT_HARDWARE_DIVIDE_BY_ZERO.
[cacao.git] / src / vm / signal.c
1 /* src/vm/signal.c - machine independent signal functions
2
3    Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
4    C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5    E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6    J. Wenninger, Institut f. Computersprachen - TU Wien
7
8    This file is part of CACAO.
9
10    This program is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License as
12    published by the Free Software Foundation; either version 2, or (at
13    your option) any later version.
14
15    This program is distributed in the hope that it will be useful, but
16    WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program; if not, write to the Free Software
22    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23    02110-1301, USA.
24
25    Contact: cacao@cacaojvm.org
26
27    Authors: Christian Thalinger
28
29    $Id: signal.c 6172 2006-12-11 19:43:41Z twisti $
30
31 */
32
33
34 #include "config.h"
35
36 #include <signal.h>
37 #include <stdlib.h>
38
39 #include "vm/types.h"
40
41 #if defined(ENABLE_THREADS)
42 # include "threads/native/threads.h"
43 #endif
44
45 #include "mm/memory.h"
46 #include "vm/signallocal.h"
47 #include "vm/options.h"
48 #include "vm/vm.h"
49 #include "vm/jit/stacktrace.h"
50
51
52 /* function prototypes ********************************************************/
53
54 void signal_handler_sighup(int sig, siginfo_t *siginfo, void *_p);
55 void signal_handler_sigint(int sig, siginfo_t *siginfo, void *_p);
56 void signal_handler_sigquit(int sig, siginfo_t *siginfo, void *_p);
57
58
59 /* signal_init *****************************************************************
60
61    Initializes the signal subsystem and installs the signal handler.
62
63 *******************************************************************************/
64
65 void signal_init(void)
66 {
67 #if !defined(__CYGWIN__)
68         struct sigaction act;
69
70         /* Allocate something so the garbage collector's signal handlers
71            are installed. */
72
73 #if defined(ENABLE_GC_BOEHM)
74         (void) GCNEW(u1);
75 #endif
76
77         /* install signal handlers we need to convert to exceptions */
78
79         sigemptyset(&act.sa_mask);
80
81 #if defined(ENABLE_JIT)
82 # if defined(ENABLE_INTRP)
83         if (!opt_intrp) {
84 # endif
85                 /* catch NullPointerException/StackOverFlowException */
86
87                 act.sa_sigaction = md_signal_handler_sigsegv;
88                 act.sa_flags     = SA_NODEFER | SA_SIGINFO;
89
90 #if defined(SIGSEGV)
91                 sigaction(SIGSEGV, &act, NULL);
92 #endif
93
94 #if defined(SIGBUS)
95                 sigaction(SIGBUS, &act, NULL);
96 #endif
97
98                 /* catch ArithmeticException */
99
100 #if SUPPORT_HARDWARE_DIVIDE_BY_ZERO
101                 act.sa_sigaction = md_signal_handler_sigfpe;
102                 act.sa_flags     = SA_NODEFER | SA_SIGINFO;
103                 sigaction(SIGFPE, &act, NULL);
104 #endif
105 # if defined(ENABLE_INTRP)
106         }
107 # endif
108 #endif /* !defined(ENABLE_INTRP) */
109
110 #if defined(ENABLE_THREADS)
111         /* catch SIGHUP for threads_thread_interrupt */
112
113         act.sa_sigaction = signal_handler_sighup;
114         act.sa_flags     = 0;
115         sigaction(SIGHUP, &act, NULL);
116 #endif
117
118         /* catch SIGINT for exiting properly on <ctrl>-c */
119
120         act.sa_sigaction = signal_handler_sigint;
121         act.sa_flags     = SA_NODEFER | SA_SIGINFO;
122         sigaction(SIGINT, &act, NULL);
123
124 #if defined(ENABLE_THREADS)
125         /* catch SIGQUIT for thread dump */
126
127 # if !defined(__FREEBSD__)
128         act.sa_sigaction = signal_handler_sigquit;
129         act.sa_flags     = SA_SIGINFO;
130         sigaction(SIGQUIT, &act, NULL);
131 # endif
132 #endif
133
134 #if defined(ENABLE_THREADS) && defined(ENABLE_PROFILING)
135         /* install signal handler for profiling sampling */
136
137         act.sa_sigaction = md_signal_handler_sigusr2;
138         act.sa_flags     = SA_SIGINFO;
139         sigaction(SIGUSR2, &act, NULL);
140 #endif
141
142 #endif /* !defined(__CYGWIN__) */
143 }
144
145
146 /* signal_handler_sighup *******************************************************
147
148    This handler is required by threads_thread_interrupt and does
149    nothing.
150
151 *******************************************************************************/
152
153 #if defined(ENABLE_THREADS)
154 void signal_handler_sighup(int sig, siginfo_t *siginfo, void *_p)
155 {
156         /* do nothing */
157 }
158 #endif
159
160
161 /* signal_handler_sigquit ******************************************************
162
163    Handle for SIGQUIT (<ctrl>-\) which print a stacktrace for every
164    running thread.
165
166 *******************************************************************************/
167
168 #if defined(ENABLE_THREADS)
169 void signal_handler_sigquit(int sig, siginfo_t *siginfo, void *_p)
170 {
171         /* do thread dump */
172
173         threads_dump();
174 }
175 #endif
176
177
178 /* signal_handler_sigint *******************************************************
179
180    Handler for SIGINT (<ctrl>-c) which shuts down CACAO properly with
181    Runtime.exit(I)V.
182
183 *******************************************************************************/
184
185 void signal_handler_sigint(int sig, siginfo_t *siginfo, void *_p)
186 {
187         /* if we are already in Runtime.exit(), just do it hardcore */
188
189         if (vm_exiting) {
190                 fprintf(stderr, "Caught SIGINT while already shutting down. Shutdown aborted...\n");
191                 exit(0);
192         }
193
194         /* exit the vm properly */
195
196         vm_exit(0);
197 }
198
199
200 /*
201  * These are local overrides for various environment variables in Emacs.
202  * Please do not remove this and leave it at the end of the file, where
203  * Emacs will automagically detect them.
204  * ---------------------------------------------------------------------
205  * Local variables:
206  * mode: c
207  * indent-tabs-mode: t
208  * c-basic-offset: 4
209  * tab-width: 4
210  * End:
211  */