* src/vm/signallocal.h (signal_handle): Changed signature.
[cacao.git] / src / vm / jit / powerpc / linux / md-os.c
1 /* src/vm/jit/powerpc/linux/md-os.c - machine dependent PowerPC 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 #include "config.h"
29
30 #include <assert.h>
31 #include <stdint.h>
32 #include <ucontext.h>
33
34 #include "vm/types.h"
35
36 #include "vm/jit/powerpc/codegen.h"
37 #include "vm/jit/powerpc/linux/md-abi.h"
38
39 #if defined(ENABLE_THREADS)
40 # include "threads/native/threads.h"
41 #endif
42
43 #include "vm/exceptions.h"
44 #include "vm/signallocal.h"
45 #include "vm/stringlocal.h"
46 #include "vm/jit/asmpart.h"
47
48 #if defined(ENABLE_PROFILING)
49 # include "vm/jit/optimizing/profile.h"
50 #endif
51
52 #include "vm/jit/stacktrace.h"
53
54
55 /* md_signal_handler_sigsegv ***************************************************
56
57    Signal handler for hardware-exceptions.
58
59 *******************************************************************************/
60
61 void md_signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
62 {
63         ucontext_t     *_uc;
64         mcontext_t     *_mc;
65         unsigned long  *_gregs;
66         u1             *pv;
67         u1             *sp;
68         u1             *ra;
69         u1             *xpc;
70         u4              mcode;
71         int             s1;
72         int16_t         disp;
73         int             d;
74         intptr_t        addr;
75         intptr_t        val;
76         int             type;
77         void           *p;
78
79         _uc = (ucontext_t *) _p;
80
81 #if defined(__UCLIBC__)
82         _mc    = &(_uc->uc_mcontext);
83         _gregs = _mc->regs->gpr;
84 #else
85         _mc    = _uc->uc_mcontext.uc_regs;
86         _gregs = _mc->gregs;
87 #endif
88
89         pv  = (u1 *) _gregs[REG_PV];
90         sp  = (u1 *) _gregs[REG_SP];
91         ra  = (u1 *) _gregs[PT_LNK];                 /* this is correct for leafs */
92         xpc = (u1 *) _gregs[PT_NIP];
93
94         /* get exception-throwing instruction */
95
96         mcode = *((u4 *) xpc);
97
98         s1   = M_INSTR_OP2_IMM_A(mcode);
99         disp = M_INSTR_OP2_IMM_I(mcode);
100         d    = M_INSTR_OP2_IMM_D(mcode);
101
102         val  = _gregs[d];
103
104         /* check for special-load */
105
106         if (s1 == REG_ZERO) {
107                 /* we use the exception type as load displacement */
108
109                 type = disp;
110         }
111         else {
112                 /* This is a normal NPE: addr must be NULL and the NPE-type
113                    define is 0. */
114
115                 addr = _gregs[s1];
116                 type = EXCEPTION_HARDWARE_NULLPOINTER;
117
118                 if (addr != 0)
119                         vm_abort("md_signal_handler_sigsegv: faulting address is not NULL: addr=%p", addr);
120         }
121
122         /* Handle the type. */
123
124         p = signal_handle(type, val, pv, sp, ra, xpc, _p);
125
126         /* set registers (only if exception object ready) */
127
128         if (p != NULL) {
129                 _gregs[REG_ITMP1_XPTR] = (intptr_t) p;
130                 _gregs[REG_ITMP2_XPC]  = (intptr_t) xpc;
131                 _gregs[PT_NIP]         = (intptr_t) asm_handle_exception;
132         }
133 }
134
135
136 /* md_signal_handler_sigtrap ***************************************************
137
138    Signal handler for hardware-traps.
139
140 *******************************************************************************/
141
142 void md_signal_handler_sigtrap(int sig, siginfo_t *siginfo, void *_p)
143 {
144         ucontext_t     *_uc;
145         mcontext_t     *_mc;
146         unsigned long  *_gregs;
147         u1             *pv;
148         u1             *sp;
149         u1             *ra;
150         u1             *xpc;
151         u4              mcode;
152         int             s1;
153         intptr_t        val;
154         int             type;
155         void           *p;
156
157         _uc = (ucontext_t *) _p;
158
159 #if defined(__UCLIBC__)
160         _mc    = &(_uc->uc_mcontext);
161         _gregs = _mc->regs->gpr;
162 #else
163         _mc    = _uc->uc_mcontext.uc_regs;
164         _gregs = _mc->gregs;
165 #endif
166
167         pv  = (u1 *) _gregs[REG_PV];
168         sp  = (u1 *) _gregs[REG_SP];
169         ra  = (u1 *) _gregs[PT_LNK];                 /* this is correct for leafs */
170         xpc = (u1 *) _gregs[PT_NIP];
171
172         /* get exception-throwing instruction */
173
174         mcode = *((u4 *) xpc);
175
176         s1 = M_OP3_GET_A(mcode);
177
178         /* for now we only handle ArrayIndexOutOfBoundsException */
179
180         type = EXCEPTION_HARDWARE_ARRAYINDEXOUTOFBOUNDS;
181         val  = _gregs[s1];
182
183         /* Handle the type. */
184
185         p = signal_handle(type, val, pv, sp, ra, xpc, _p);
186
187         /* set registers */
188
189         _gregs[REG_ITMP1_XPTR] = (intptr_t) p;
190         _gregs[REG_ITMP2_XPC]  = (intptr_t) xpc;
191         _gregs[PT_NIP]         = (intptr_t) asm_handle_exception;
192 }
193
194
195 /* md_signal_handler_sigusr1 ***************************************************
196
197    Signal handler for suspending threads.
198
199 *******************************************************************************/
200
201 #if defined(ENABLE_THREADS) && defined(ENABLE_GC_CACAO)
202 void md_signal_handler_sigusr1(int sig, siginfo_t *siginfo, void *_p)
203 {
204         ucontext_t    *_uc;
205         mcontext_t    *_mc;
206         unsigned long *_gregs;
207         u1            *pc;
208         u1            *sp;
209
210         _uc = (ucontext_t *) _p;
211
212 #if defined(__UCLIBC__)
213         _mc    = &(_uc->uc_mcontext);
214         _gregs = _mc->regs->gpr;
215 #else
216         _mc    = _uc->uc_mcontext.uc_regs;
217         _gregs = _mc->gregs;
218 #endif
219
220         /* get the PC and SP for this thread */
221
222         pc = (u1 *) _gregs[PT_NIP];
223         sp = (u1 *) _gregs[REG_SP];
224
225         /* now suspend the current thread */
226
227         threads_suspend_ack(pc, sp);
228 }
229 #endif
230
231
232 /* md_signal_handler_sigusr2 ***************************************************
233
234    Signal handler for profiling sampling.
235
236 *******************************************************************************/
237
238 #if defined(ENABLE_THREADS)
239 void md_signal_handler_sigusr2(int sig, siginfo_t *siginfo, void *_p)
240 {
241         threadobject  *tobj;
242         ucontext_t    *_uc;
243         mcontext_t    *_mc;
244         unsigned long *_gregs;
245         u1            *pc;
246
247         tobj = THREADOBJECT;
248
249         _uc = (ucontext_t *) _p;
250
251 #if defined(__UCLIBC__)
252         _mc    = &(_uc->uc_mcontext);
253         _gregs = _mc->regs->gpr;
254 #else
255         _mc    = _uc->uc_mcontext.uc_regs;
256         _gregs = _mc->gregs;
257 #endif
258
259         pc = (u1 *) _gregs[PT_NIP];
260
261         tobj->pc = pc;
262 }
263 #endif
264
265
266 /* md_critical_section_restart *************************************************
267
268    Search the critical sections tree for a matching section and set
269    the PC to the restart point, if necessary.
270
271 *******************************************************************************/
272
273 #if defined(ENABLE_THREADS)
274 void md_critical_section_restart(ucontext_t *_uc)
275 {
276         mcontext_t    *_mc;
277         unsigned long *_gregs;
278         u1            *pc;
279         u1            *npc;
280
281 #if defined(__UCLIBC__)
282         _mc    = &(_uc->uc_mcontext);
283         _gregs = _mc->regs->gpr;
284 #else
285         _mc    = _uc->uc_mcontext.uc_regs;
286         _gregs = _mc->gregs;
287 #endif
288
289         pc = (u1 *) _gregs[PT_NIP];
290
291         npc = critical_find_restart_point(pc);
292
293         if (npc != NULL)
294                 _gregs[PT_NIP] = (ptrint) npc;
295 }
296 #endif
297
298
299 /*
300  * These are local overrides for various environment variables in Emacs.
301  * Please do not remove this and leave it at the end of the file, where
302  * Emacs will automagically detect them.
303  * ---------------------------------------------------------------------
304  * Local variables:
305  * mode: c
306  * indent-tabs-mode: t
307  * c-basic-offset: 4
308  * tab-width: 4
309  * End:
310  */