Merged revisions 7501-7598 via svnmerge from
[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 7601 2007-03-28 23:02:50Z michi $
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 #if defined(ENABLE_GC_CACAO)
39 # include "mm/cacao-gc/gc.h"
40 #endif
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 #include "vm/jit/i386/codegen.h"
50
51
52 /* md_signal_handler_sigsegv ***************************************************
53
54    Signal handler for hardware exceptions.
55
56 *******************************************************************************/
57
58 void md_signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
59 {
60         ucontext_t        *_uc;
61         mcontext_t        *_mc;
62         u1                *pv;
63         u1                *sp;
64         u1                *ra;
65         u1                *xpc;
66         u1                 opc;
67         u1                 mod;
68         u1                 rm;
69         s4                 d;
70         s4                 disp;
71         ptrint             val;
72         s4                 type;
73         java_objectheader *e;
74
75         _uc = (ucontext_t *) _p;
76         _mc = &_uc->uc_mcontext;
77
78         pv  = NULL;                 /* is resolved during stackframeinfo creation */
79         sp  = (u1 *) _mc->gregs[REG_ESP];
80         xpc = (u1 *) _mc->gregs[REG_EIP];
81         ra  = xpc;                              /* return address is equal to XPC */
82
83         /* get exception-throwing instruction */
84
85         opc = M_ALD_MEM_GET_OPC(xpc);
86         mod = M_ALD_MEM_GET_MOD(xpc);
87         rm  = M_ALD_MEM_GET_RM(xpc);
88
89         /* for values see emit_mov_mem_reg and emit_mem */
90
91         if ((opc == 0x8b) && (mod == 0) && (rm == 5)) {
92                 /* this was a hardware-exception */
93
94                 d    = M_ALD_MEM_GET_REG(xpc);
95                 disp = M_ALD_MEM_GET_DISP(xpc);
96
97                 /* we use the exception type as load displacement */
98
99                 type = disp;
100
101                 /* ATTENTION: The _mc->gregs layout is completely crazy!  The
102                    registers are reversed starting with number 4 for REG_EDI
103                    (see /usr/include/sys/ucontext.h).  We have to convert that
104                    here. */
105
106                 val = _mc->gregs[REG_EAX - d];
107         }
108         else {
109                 /* this was a normal NPE */
110
111                 type = EXCEPTION_HARDWARE_NULLPOINTER;
112         }
113
114         /* generate appropriate exception */
115
116         e = exceptions_new_hardware_exception(pv, sp, ra, xpc, type, val);
117
118         /* set registers */
119
120         _mc->gregs[REG_EAX] = (ptrint) e;
121         _mc->gregs[REG_ECX] = (ptrint) xpc;                      /* REG_ITMP2_XPC */
122         _mc->gregs[REG_EIP] = (ptrint) asm_handle_exception;
123 }
124
125
126 /* md_signal_handler_sigfpe ****************************************************
127
128    ArithmeticException signal handler for hardware divide by zero
129    check.
130
131 *******************************************************************************/
132
133 void md_signal_handler_sigfpe(int sig, siginfo_t *siginfo, void *_p)
134 {
135         ucontext_t *_uc;
136         mcontext_t *_mc;
137         u1         *sp;
138         u1         *ra;
139         u1         *xpc;
140
141         _uc = (ucontext_t *) _p;
142         _mc = &_uc->uc_mcontext;
143
144         sp  = (u1 *) _mc->gregs[REG_ESP];
145         xpc = (u1 *) _mc->gregs[REG_EIP];
146         ra  = xpc;                          /* return address is equal to xpc     */
147
148         _mc->gregs[REG_EAX] =
149                 (ptrint) stacktrace_hardware_arithmeticexception(NULL, sp, ra, xpc);
150
151         _mc->gregs[REG_ECX] = (ptrint) xpc;                      /* REG_ITMP2_XPC */
152         _mc->gregs[REG_EIP] = (ptrint) asm_handle_exception;
153 }
154
155
156 /* md_signal_handler_sigusr1 ***************************************************
157
158    Signal handler for suspending threads.
159
160 *******************************************************************************/
161
162 #if defined(ENABLE_THREADS) && defined(ENABLE_GC_CACAO)
163 void md_signal_handler_sigusr1(int sig, siginfo_t *siginfo, void *_p)
164 {
165         ucontext_t *_uc;
166         mcontext_t *_mc;
167         u1         *pc;
168         u1         *sp;
169
170         _uc = (ucontext_t *) _p;
171         _mc = &_uc->uc_mcontext;
172
173         /* assume there is a GC pending */
174         assert(gc_pending);
175
176         /* get the PC and SP for this thread */
177         pc = (u1 *) _mc->gregs[REG_EIP];
178         sp = (u1 *) _mc->gregs[REG_ESP];
179
180         /* now suspend the current thread */
181         threads_suspend_ack(pc, sp);
182 }
183 #endif
184
185
186 /* md_signal_handler_sigusr2 ***************************************************
187
188    Signal handler for profiling sampling.
189
190 *******************************************************************************/
191
192 #if defined(ENABLE_THREADS)
193 void md_signal_handler_sigusr2(int sig, siginfo_t *siginfo, void *_p)
194 {
195         threadobject *t;
196         ucontext_t   *_uc;
197         mcontext_t   *_mc;
198         u1           *pc;
199
200         t = THREADOBJECT;
201
202         _uc = (ucontext_t *) _p;
203         _mc = &_uc->uc_mcontext;
204
205         pc = (u1 *) _mc->gregs[REG_EIP];
206
207         t->pc = pc;
208 }
209 #endif
210
211
212 #if defined(ENABLE_THREADS)
213 void thread_restartcriticalsection(ucontext_t *uc)
214 {
215         void *critical;
216
217         critical = critical_find_restart_point((void *) uc->uc_mcontext.gregs[REG_EIP]);
218
219         if (critical)
220                 uc->uc_mcontext.gregs[REG_EIP] = (ptrint) critical;
221 }
222 #endif
223
224
225 /*
226  * These are local overrides for various environment variables in Emacs.
227  * Please do not remove this and leave it at the end of the file, where
228  * Emacs will automagically detect them.
229  * ---------------------------------------------------------------------
230  * Local variables:
231  * mode: c
232  * indent-tabs-mode: t
233  * c-basic-offset: 4
234  * tab-width: 4
235  * End:
236  */