* src/vm/jit/i386/linux/md-os.c (md_signal_handler_sigsegv): Fixed
[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    $Id: md-os.c 7964 2007-05-24 10:23:42Z twisti $
26
27 */
28
29
30 #define _GNU_SOURCE                   /* include REG_ defines from ucontext.h */
31
32 #include "config.h"
33
34 #include <ucontext.h>
35
36 #include "vm/types.h"
37
38 #include "vm/jit/i386/codegen.h"
39
40 #include "threads/threads-common.h"
41
42 #include "vm/exceptions.h"
43 #include "vm/signallocal.h"
44 #include "vm/stringlocal.h"
45
46 #include "vm/jit/asmpart.h"
47 #include "vm/jit/stacktrace.h"
48
49
50 /* md_signal_handler_sigsegv ***************************************************
51
52    Signal handler for hardware exceptions.
53
54 *******************************************************************************/
55
56 void md_signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
57 {
58         ucontext_t        *_uc;
59         mcontext_t        *_mc;
60         u1                *pv;
61         u1                *sp;
62         u1                *ra;
63         u1                *xpc;
64         u1                 opc;
65         u1                 mod;
66         u1                 rm;
67         s4                 d;
68         s4                 disp;
69         ptrint             val;
70         s4                 type;
71         java_objectheader *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         else {
107                 /* this was a normal NPE */
108
109                 type = EXCEPTION_HARDWARE_NULLPOINTER;
110                 val  = 0;
111         }
112
113         /* generate appropriate exception */
114
115         o = exceptions_new_hardware_exception(pv, sp, ra, xpc, type, val);
116
117         /* set registers */
118
119         _mc->gregs[REG_EAX] = (ptrint) o;
120         _mc->gregs[REG_ECX] = (ptrint) xpc;                      /* REG_ITMP2_XPC */
121         _mc->gregs[REG_EIP] = (ptrint) asm_handle_exception;
122 }
123
124
125 /* md_signal_handler_sigfpe ****************************************************
126
127    ArithmeticException signal handler for hardware divide by zero
128    check.
129
130 *******************************************************************************/
131
132 void md_signal_handler_sigfpe(int sig, siginfo_t *siginfo, void *_p)
133 {
134         ucontext_t        *_uc;
135         mcontext_t        *_mc;
136         u1                *pv;
137         u1                *sp;
138         u1                *ra;
139         u1                *xpc;
140         s4                 type;
141         ptrint             val;
142         java_objectheader *o;
143
144         _uc = (ucontext_t *) _p;
145         _mc = &_uc->uc_mcontext;
146
147         pv  = NULL;                 /* is resolved during stackframeinfo creation */
148         sp  = (u1 *) _mc->gregs[REG_ESP];
149         xpc = (u1 *) _mc->gregs[REG_EIP];
150         ra  = xpc;                          /* return address is equal to xpc     */
151
152         /* this is an ArithmeticException */
153
154         type = EXCEPTION_HARDWARE_ARITHMETIC;
155         val  = 0;
156
157         /* generate appropriate exception */
158
159         o = exceptions_new_hardware_exception(pv, sp, ra, xpc, type, val);
160
161         _mc->gregs[REG_EAX] = (ptrint) o;
162         _mc->gregs[REG_ECX] = (ptrint) xpc;                      /* REG_ITMP2_XPC */
163         _mc->gregs[REG_EIP] = (ptrint) asm_handle_exception;
164 }
165
166
167 /* md_signal_handler_sigusr2 ***************************************************
168
169    Signal handler for profiling sampling.
170
171 *******************************************************************************/
172
173 #if defined(ENABLE_THREADS)
174 void md_signal_handler_sigusr2(int sig, siginfo_t *siginfo, void *_p)
175 {
176         threadobject *t;
177         ucontext_t   *_uc;
178         mcontext_t   *_mc;
179         u1           *pc;
180
181         t = THREADOBJECT;
182
183         _uc = (ucontext_t *) _p;
184         _mc = &_uc->uc_mcontext;
185
186         pc = (u1 *) _mc->gregs[REG_EIP];
187
188         t->pc = pc;
189 }
190 #endif
191
192
193 /* md_critical_section_restart *************************************************
194
195    Search the critical sections tree for a matching section and set
196    the PC to the restart point, if necessary.
197
198 *******************************************************************************/
199
200 #if defined(ENABLE_THREADS)
201 void md_critical_section_restart(ucontext_t *_uc)
202 {
203         mcontext_t *_mc;
204         u1         *pc;
205         u1         *npc;
206
207         _mc = &_uc->uc_mcontext;
208
209         pc = (u1 *) _mc->gregs[REG_EIP];
210
211         npc = critical_find_restart_point(pc);
212
213         if (npc != NULL)
214                 _mc->gregs[REG_EIP] = (ptrint) npc;
215 }
216 #endif
217
218
219 /*
220  * These are local overrides for various environment variables in Emacs.
221  * Please do not remove this and leave it at the end of the file, where
222  * Emacs will automagically detect them.
223  * ---------------------------------------------------------------------
224  * Local variables:
225  * mode: c
226  * indent-tabs-mode: t
227  * c-basic-offset: 4
228  * tab-width: 4
229  * End:
230  */