Merged revisions 7797-7917 via svnmerge from
[cacao.git] / src / vm / jit / i386 / darwin / md-os.c
1 /* src/vm/jit/i386/darwin/md-os.c - machine dependent i386 Darwin 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: md-os.c 5074 2006-07-04 16:05:35Z twisti $
32
33 */
34
35
36 #include "config.h"
37
38 #include <assert.h>
39 #include <signal.h>
40 #include <ucontext.h>
41
42 #include "vm/types.h"
43
44 #include "vm/jit/i386/codegen.h"
45
46 #include "threads/threads-common.h"
47
48 #include "vm/exceptions.h"
49 #include "vm/global.h"
50 #include "vm/signallocal.h"
51 #include "vm/stringlocal.h"
52 #include "vm/jit/asmpart.h"
53 #include "vm/jit/stacktrace.h"
54
55 #include "vm/jit/i386/codegen.h"
56
57
58 /* md_signal_handler_sigsegv ***************************************************
59
60    Signal handler for hardware exceptions.
61
62 *******************************************************************************/
63
64 void md_signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
65 {
66         ucontext_t          *_uc;
67         mcontext_t           _mc;
68         u1                  *pv;
69         i386_thread_state_t *_ss;
70         u1                  *sp;
71         u1                  *ra;
72         u1                  *xpc;
73     u1                   opc;
74     u1                   mod;
75     u1                   rm;
76     s4                   d;
77     s4                   disp;
78     ptrint               val;
79     s4                   type;
80     java_objectheader   *o;
81
82         _uc = (ucontext_t *) _p;
83         _mc = _uc->uc_mcontext;
84         _ss = &_mc->ss;
85
86     pv  = NULL;                 /* is resolved during stackframeinfo creation */
87         sp  = (u1 *) _ss->esp;
88         xpc = (u1 *) _ss->eip;
89     ra  = xpc;                              /* return address is equal to XPC */
90
91     /* get exception-throwing instruction */
92
93     opc = M_ALD_MEM_GET_OPC(xpc);
94     mod = M_ALD_MEM_GET_MOD(xpc);
95     rm  = M_ALD_MEM_GET_RM(xpc);
96
97     /* for values see emit_mov_mem_reg and emit_mem */
98
99     if ((opc == 0x8b) && (mod == 0) && (rm == 5)) {
100         /* this was a hardware-exception */
101
102         d    = M_ALD_MEM_GET_REG(xpc);
103         disp = M_ALD_MEM_GET_DISP(xpc);
104
105         /* we use the exception type as load displacement */
106
107         type = disp;
108
109         val = (d == 0) ? _ss->eax :
110             ((d == 1) ? _ss->ecx :
111             ((d == 2) ? _ss->edx :
112             ((d == 3) ? _ss->ebx :
113             ((d == 4) ? _ss->esp :
114             ((d == 5) ? _ss->ebp :
115             ((d == 6) ? _ss->esi : _ss->edi))))));
116     }
117     else {
118         /* this was a normal NPE */
119
120         type = EXCEPTION_HARDWARE_NULLPOINTER;
121     }
122
123     /* generate appropriate exception */
124
125     o = exceptions_new_hardware_exception(pv, sp, ra, xpc, type, val);
126
127     /* set registers */
128
129     _ss->eax = (ptrint) o;
130         _ss->ecx = (ptrint) xpc;
131         _ss->eip = (ptrint) asm_handle_exception;
132 }
133
134
135 /* md_signal_handler_sigfpe ****************************************************
136
137    ArithmeticException signal handler for hardware divide by zero
138    check.
139
140 *******************************************************************************/
141
142 void md_signal_handler_sigfpe(int sig, siginfo_t *siginfo, void *_p)
143 {
144         ucontext_t          *_uc;
145         mcontext_t           _mc;
146     u1                  *pv;
147         i386_thread_state_t *_ss;
148         u1                  *sp;
149         u1                  *ra;
150         u1                  *xpc;
151     s4                   type;
152     ptrint               val;
153     java_objectheader   *o;
154
155
156         _uc = (ucontext_t *) _p;
157         _mc = _uc->uc_mcontext;
158         _ss = &_mc->ss;
159
160     pv  = NULL;                 /* is resolved during stackframeinfo creation */
161         sp  = (u1 *) _ss->esp;
162         xpc = (u1 *) _ss->eip;
163         ra  = xpc;                          /* return address is equal to xpc     */
164
165     /* this is an ArithmeticException */
166
167     type = EXCEPTION_HARDWARE_ARITHMETIC;
168     val  = 0;
169
170     /* generate appropriate exception */
171
172     o = exceptions_new_hardware_exception(pv, sp, ra, xpc, type, val);
173
174     _ss->eax = (ptrint) o;
175         _ss->ecx = (ptrint) xpc;
176         _ss->eip = (ptrint) asm_handle_exception;
177 }
178
179
180 /* md_signal_handler_sigusr2 ***************************************************
181
182    Signal handler for profiling sampling.
183
184 *******************************************************************************/
185
186 void md_signal_handler_sigusr2(int sig, siginfo_t *siginfo, void *_p)
187 {
188         threadobject        *t;
189         ucontext_t          *_uc;
190         mcontext_t           _mc;
191         i386_thread_state_t *_ss;
192         u1                  *pc;
193
194         t = THREADOBJECT;
195
196         _uc = (ucontext_t *) _p;
197         _mc = _uc->uc_mcontext;
198         _ss = &_mc->ss;
199
200         pc = (u1 *) _ss->eip;
201
202         t->pc = pc;
203 }
204
205
206 #if defined(ENABLE_THREADS)
207 void thread_restartcriticalsection(ucontext_t *_uc)
208 {
209         mcontext_t           _mc;
210         i386_thread_state_t *_ss;
211         u1                  *pc;
212         void                *rpc;
213
214         _mc = _uc->uc_mcontext;
215         _ss = &_mc->ss;
216
217         pc = (u1 *) _ss->eip;
218
219         rpc = critical_find_restart_point(pc);
220
221         if (rpc != NULL)
222                 _ss->eip = (ptrint) rpc;
223 }
224 #endif
225
226
227 /*
228  * These are local overrides for various environment variables in Emacs.
229  * Please do not remove this and leave it at the end of the file, where
230  * Emacs will automagically detect them.
231  * ---------------------------------------------------------------------
232  * Local variables:
233  * mode: c
234  * indent-tabs-mode: t
235  * c-basic-offset: 4
236  * tab-width: 4
237  * End:
238  */