* src/vm/jit/methodheader.h (MethodPointer): Removed.
[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    Changes:
30
31    $Id: signal.c 5038 2006-06-19 22:22:34Z twisti $
32
33 */
34
35
36 #include "config.h"
37
38 #include <signal.h>
39 #include <stdlib.h>
40
41 #include "vm/types.h"
42
43 #if defined(ENABLE_THREADS)
44 # include "threads/native/threads.h"
45 #endif
46
47 #include "vm/signallocal.h"
48 #include "vm/options.h"
49 #include "vm/vm.h"
50 #include "vm/jit/stacktrace.h"
51
52
53 /* function prototypes ********************************************************/
54
55 void signal_handler_sigquit(int sig, siginfo_t *siginfo, void *_p);
56 void signal_handler_sigint(int sig, siginfo_t *siginfo, void *_p);
57 void signal_handler_sigusr1(int sig, siginfo_t *siginfo, void *_p);
58
59
60 /* signal_init *****************************************************************
61
62    Initializes the signal subsystem and installs the signal handler.
63
64 *******************************************************************************/
65
66 void signal_init(void)
67 {
68         struct sigaction act;
69
70         /* install signal handlers we need to convert to exceptions */
71
72         sigemptyset(&act.sa_mask);
73
74
75 #if defined(ENABLE_JIT)
76 # if defined(ENABLE_INTRP)
77         if (!opt_intrp) {
78 # endif
79                 /* catch NullPointerException/StackOverFlowException */
80
81                 if (!checknull) {
82                         act.sa_sigaction = md_signal_handler_sigsegv;
83                         act.sa_flags = SA_NODEFER | SA_SIGINFO;
84
85 #if defined(SIGSEGV)
86                         sigaction(SIGSEGV, &act, NULL);
87 #endif
88
89 #if defined(SIGBUS)
90                         sigaction(SIGBUS, &act, NULL);
91 #endif
92                 }
93
94
95                 /* catch ArithmeticException */
96
97 #if defined(__I386__) || defined(__X86_64__)
98                 act.sa_sigaction = md_signal_handler_sigfpe;
99                 act.sa_flags = SA_NODEFER | SA_SIGINFO;
100                 sigaction(SIGFPE, &act, NULL);
101 #endif
102 # if defined(ENABLE_INTRP)
103         }
104 # endif
105 #endif /* !defined(ENABLE_INTRP) */
106
107
108         /* catch SIGINT for exiting properly on <ctrl>-c */
109
110         act.sa_sigaction = signal_handler_sigint;
111         act.sa_flags = SA_NODEFER | SA_SIGINFO;
112         sigaction(SIGINT, &act, NULL);
113
114
115         /* catch SIGQUIT for thread dump */
116
117 #if defined(ENABLE_THREADS)
118 #if !defined(__FREEBSD__)
119         act.sa_sigaction = signal_handler_sigquit;
120         act.sa_flags = SA_SIGINFO;
121         sigaction(SIGQUIT, &act, NULL);
122
123         /* XXX boehm uses SIGUSR1 for suspend on freebsd */
124
125         act.sa_sigaction = signal_handler_sigusr1;
126         act.sa_flags = SA_SIGINFO;
127         sigaction(SIGUSR1, &act, NULL);
128 #endif
129 #endif
130
131 #if defined(ENABLE_THREADS) && defined(ENABLE_PROFILING)
132         /* install signal handler for profiling sampling */
133
134         act.sa_sigaction = md_signal_handler_sigusr2;
135         act.sa_flags = SA_SIGINFO;
136         sigaction(SIGUSR2, &act, NULL);
137 #endif
138 }
139
140
141 /* signal_handler_sigquit ******************************************************
142
143    XXX
144
145 *******************************************************************************/
146
147 #if defined(ENABLE_THREADS)
148 void signal_handler_sigquit(int sig, siginfo_t *siginfo, void *_p)
149 {
150         /* do thread dump */
151
152         threads_dump();
153 }
154 #endif
155
156
157 /* signal_handler_sigint *******************************************************
158
159    Handler for SIGINT (<ctrl>-c) which shuts down CACAO properly with
160    Runtime.exit(I)V.
161
162 *******************************************************************************/
163
164 void signal_handler_sigint(int sig, siginfo_t *siginfo, void *_p)
165 {
166         /* if we are already in Runtime.exit(), just do it hardcore */
167
168         if (vm_exiting) {
169                 fprintf(stderr, "Caught SIGINT while already shutting down. Shutdown aborted...\n");
170                 exit(0);
171         }
172
173         /* exit the vm properly */
174
175         vm_exit(0);
176 }
177
178
179 /* signal_handler_sigusr1 ******************************************************
180
181    XXX
182
183 *******************************************************************************/
184
185 #if defined(ENABLE_THREADS)
186 void signal_handler_sigusr1(int sig, siginfo_t *siginfo, void *_p)
187 {
188         /* call stacktrace function */
189
190         stacktrace_dump_trace();
191 }
192 #endif
193
194
195 /*
196  * These are local overrides for various environment variables in Emacs.
197  * Please do not remove this and leave it at the end of the file, where
198  * Emacs will automagically detect them.
199  * ---------------------------------------------------------------------
200  * Local variables:
201  * mode: c
202  * indent-tabs-mode: t
203  * c-basic-offset: 4
204  * tab-width: 4
205  * End:
206  */