* src/vm/jit/i386/linux/md-os.c (md_signal_handler_sigsegv): Set PV
[cacao.git] / src / vm / jit / i386 / linux / md-os.c
1 /* src/vm/jit/i386/linux/md-os.c - machine dependent i386 Linux functions
2
3    Copyright (C) 1996-2005, 2006, 2007 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 */
26
27
28 #define _GNU_SOURCE                   /* include REG_ defines from ucontext.h */
29
30 #include "config.h"
31
32 #include <stdint.h>
33 #include <ucontext.h>
34
35 #include "vm/types.h"
36
37 #include "vm/jit/i386/codegen.h"
38
39 #include "threads/threads-common.h"
40
41 #include "vm/exceptions.h"
42 #include "vm/signallocal.h"
43 #include "vm/stringlocal.h"
44
45 #include "vm/jit/asmpart.h"
46 #include "vm/jit/stacktrace.h"
47
48
49 /* md_signal_handler_sigsegv ***************************************************
50
51    Signal handler for hardware exceptions.
52
53 *******************************************************************************/
54
55 void md_signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
56 {
57         ucontext_t     *_uc;
58         mcontext_t     *_mc;
59         u1             *pv;
60         u1             *sp;
61         u1             *ra;
62         u1             *xpc;
63         u1              opc;
64         u1              mod;
65         u1              rm;
66         s4              d;
67         s4              disp;
68         ptrint          val;
69         s4              type;
70         void           *p;
71         java_object_t  *o;
72
73         _uc = (ucontext_t *) _p;
74         _mc = &_uc->uc_mcontext;
75
76         pv  = NULL;                 /* is resolved during stackframeinfo creation */
77         sp  = (u1 *) _mc->gregs[REG_ESP];
78         xpc = (u1 *) _mc->gregs[REG_EIP];
79         ra  = xpc;                              /* return address is equal to XPC */
80
81         /* get exception-throwing instruction */
82
83         opc = M_ALD_MEM_GET_OPC(xpc);
84         mod = M_ALD_MEM_GET_MOD(xpc);
85         rm  = M_ALD_MEM_GET_RM(xpc);
86
87         /* for values see emit_mov_mem_reg and emit_mem */
88
89         if ((opc == 0x8b) && (mod == 0) && (rm == 5)) {
90                 /* this was a hardware-exception */
91
92                 d    = M_ALD_MEM_GET_REG(xpc);
93                 disp = M_ALD_MEM_GET_DISP(xpc);
94
95                 /* we use the exception type as load displacement */
96
97                 type = disp;
98
99                 /* ATTENTION: The _mc->gregs layout is completely crazy!  The
100                    registers are reversed starting with number 4 for REG_EDI
101                    (see /usr/include/sys/ucontext.h).  We have to convert that
102                    here. */
103
104                 val = _mc->gregs[REG_EAX - d];
105
106                 if (type == EXCEPTION_HARDWARE_COMPILER) {
107                         /* The PV from the compiler stub is equal to the XPC. */
108
109                         pv = xpc;
110
111                         /* We use a framesize of zero here because the call pushed
112                            the return addres onto the stack. */
113
114                         ra = md_stacktrace_get_returnaddress(sp, 0);
115
116                         /* Skip the RA on the stack. */
117
118                         sp = sp + 1 * SIZEOF_VOID_P;
119
120                         /* The XPC is the RA minus 2, because the RA points to the
121                            instruction after the call. */
122
123                         xpc = ra - 2;
124                 }
125         }
126         else {
127                 /* this was a normal NPE */
128
129                 type = EXCEPTION_HARDWARE_NULLPOINTER;
130                 val  = 0;
131         }
132
133         /* Handle the type. */
134
135         p = signal_handle(type, val, pv, sp, ra, xpc, _p);
136
137         /* Set registers. */
138
139         if (type == EXCEPTION_HARDWARE_COMPILER) {
140                 if (p == NULL) {
141                         o = exceptions_get_and_clear_exception();
142
143                         _mc->gregs[REG_ESP] = (uintptr_t) sp;    /* Remove RA from stack. */
144
145                         _mc->gregs[REG_EAX] = (uintptr_t) o;
146                         _mc->gregs[REG_ECX] = (uintptr_t) xpc;           /* REG_ITMP2_XPC */
147                         _mc->gregs[REG_EIP] = (uintptr_t) asm_handle_exception;
148                 }
149                 else {
150                         _mc->gregs[REG_EIP] = (uintptr_t) p;
151                 }
152         }
153         else {
154                 _mc->gregs[REG_EAX] = (intptr_t) p;
155                 _mc->gregs[REG_ECX] = (intptr_t) xpc;                /* REG_ITMP2_XPC */
156                 _mc->gregs[REG_EIP] = (intptr_t) asm_handle_exception;
157         }
158 }
159
160
161 /* md_signal_handler_sigfpe ****************************************************
162
163    ArithmeticException signal handler for hardware divide by zero
164    check.
165
166 *******************************************************************************/
167
168 void md_signal_handler_sigfpe(int sig, siginfo_t *siginfo, void *_p)
169 {
170         ucontext_t     *_uc;
171         mcontext_t     *_mc;
172         u1             *pv;
173         u1             *sp;
174         u1             *ra;
175         u1             *xpc;
176         s4              type;
177         ptrint          val;
178         void           *p;
179
180         _uc = (ucontext_t *) _p;
181         _mc = &_uc->uc_mcontext;
182
183         pv  = NULL;                 /* is resolved during stackframeinfo creation */
184         sp  = (u1 *) _mc->gregs[REG_ESP];
185         xpc = (u1 *) _mc->gregs[REG_EIP];
186         ra  = xpc;                          /* return address is equal to xpc     */
187
188         /* this is an ArithmeticException */
189
190         type = EXCEPTION_HARDWARE_ARITHMETIC;
191         val  = 0;
192
193         /* Handle the type. */
194
195         p = signal_handle(type, val, pv, sp, ra, xpc, _p);
196
197         /* set registers */
198
199         _mc->gregs[REG_EAX] = (intptr_t) p;
200         _mc->gregs[REG_ECX] = (intptr_t) xpc;                    /* REG_ITMP2_XPC */
201         _mc->gregs[REG_EIP] = (intptr_t) asm_handle_exception;
202 }
203
204
205 /* md_signal_handler_sigill ****************************************************
206
207    Signal handler for hardware patcher traps (ud2).
208
209 *******************************************************************************/
210
211 void md_signal_handler_sigill(int sig, siginfo_t *siginfo, void *_p)
212 {
213         ucontext_t        *_uc;
214         mcontext_t        *_mc;
215         u1                *pv;
216         u1                *sp;
217         u1                *ra;
218         u1                *xpc;
219         s4                 type;
220         ptrint             val;
221         void              *p;
222
223         _uc = (ucontext_t *) _p;
224         _mc = &_uc->uc_mcontext;
225
226         pv  = NULL;                 /* is resolved during stackframeinfo creation */
227         sp  = (u1 *) _mc->gregs[REG_ESP];
228         xpc = (u1 *) _mc->gregs[REG_EIP];
229         ra  = xpc;                            /* return address is equal to xpc   */
230
231         /* this is an ArithmeticException */
232
233         type = EXCEPTION_HARDWARE_PATCHER;
234         val  = 0;
235
236         /* generate appropriate exception */
237
238         p = signal_handle(type, val, pv, sp, ra, xpc, _p);
239
240         /* set registers (only if exception object ready) */
241
242         if (p != NULL) {
243                 _mc->gregs[REG_EAX] = (ptrint) p;
244                 _mc->gregs[REG_ECX] = (ptrint) xpc;                      /* REG_ITMP2_XPC */
245                 _mc->gregs[REG_EIP] = (ptrint) asm_handle_exception;
246         }
247 }
248
249
250 /* md_signal_handler_sigusr1 ***************************************************
251
252    Signal handler for suspending threads.
253
254 *******************************************************************************/
255
256 #if defined(ENABLE_THREADS) && defined(ENABLE_GC_CACAO)
257 void md_signal_handler_sigusr1(int sig, siginfo_t *siginfo, void *_p)
258 {
259         ucontext_t *_uc;
260         mcontext_t *_mc;
261         u1         *pc;
262         u1         *sp;
263
264         _uc = (ucontext_t *) _p;
265         _mc = &_uc->uc_mcontext;
266
267         /* get the PC and SP for this thread */
268         pc = (u1 *) _mc->gregs[REG_EIP];
269         sp = (u1 *) _mc->gregs[REG_ESP];
270
271         /* now suspend the current thread */
272         threads_suspend_ack(pc, sp);
273 }
274 #endif
275
276
277 /* md_signal_handler_sigusr2 ***************************************************
278
279    Signal handler for profiling sampling.
280
281 *******************************************************************************/
282
283 #if defined(ENABLE_THREADS)
284 void md_signal_handler_sigusr2(int sig, siginfo_t *siginfo, void *_p)
285 {
286         threadobject *t;
287         ucontext_t   *_uc;
288         mcontext_t   *_mc;
289         u1           *pc;
290
291         t = THREADOBJECT;
292
293         _uc = (ucontext_t *) _p;
294         _mc = &_uc->uc_mcontext;
295
296         pc = (u1 *) _mc->gregs[REG_EIP];
297
298         t->pc = pc;
299 }
300 #endif
301
302
303 /* md_critical_section_restart *************************************************
304
305    Search the critical sections tree for a matching section and set
306    the PC to the restart point, if necessary.
307
308 *******************************************************************************/
309
310 #if defined(ENABLE_THREADS)
311 void md_critical_section_restart(ucontext_t *_uc)
312 {
313         mcontext_t *_mc;
314         u1         *pc;
315         u1         *npc;
316
317         _mc = &_uc->uc_mcontext;
318
319         pc = (u1 *) _mc->gregs[REG_EIP];
320
321         npc = critical_find_restart_point(pc);
322
323         if (npc != NULL)
324                 _mc->gregs[REG_EIP] = (ptrint) npc;
325 }
326 #endif
327
328
329 /*
330  * These are local overrides for various environment variables in Emacs.
331  * Please do not remove this and leave it at the end of the file, where
332  * Emacs will automagically detect them.
333  * ---------------------------------------------------------------------
334  * Local variables:
335  * mode: c
336  * indent-tabs-mode: t
337  * c-basic-offset: 4
338  * tab-width: 4
339  * End:
340  */