* signal_handler_sigsegv: Replaced functionptr with u1*.
[cacao.git] / src / vm / jit / powerpc / darwin / md-os.c
1 /* src/vm/jit/powerpc/darwin/md-os.c - machine dependent PowerPC Darwin functions
2
3    Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4    R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5    C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6    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., 59 Temple Place - Suite 330, Boston, MA
23    02111-1307, USA.
24
25    Contact: cacao@complang.tuwien.ac.at
26
27    Authors: Christian Thalinger
28
29    Changes:
30
31    $Id: md-os.c 4076 2006-01-02 16:40:40Z twisti $
32
33 */
34
35
36 #include "config.h"
37
38 #include <signal.h>
39 #include <ucontext.h>
40
41 #include "vm/types.h"
42
43 #include "vm/jit/powerpc/darwin/md-abi.h"
44
45 #include "vm/exceptions.h"
46 #include "vm/global.h"
47 #include "vm/stringlocal.h"
48 #include "vm/jit/asmpart.h"
49 #include "vm/jit/stacktrace.h"
50
51
52 /* signal_handler_sigsegv ******************************************************
53
54    NullPointerException signal handler for hardware null pointer check.
55
56 *******************************************************************************/
57
58 void signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
59 {
60         ucontext_t         *_uc;
61         mcontext_t          _mc;
62         ppc_thread_state_t *_ss;
63         ptrint             *gregs;
64         u4                  instr;
65         s4                  reg;
66         ptrint              addr;
67         u1                 *pv;
68         u1                 *sp;
69         u1                 *ra;
70         u1                 *xpc;
71
72         _uc = (ucontext_t *) _p;
73         _mc = _uc->uc_mcontext;
74         _ss = &_mc->ss;
75
76         /* check for NullPointerException */
77
78         gregs = &_ss->r0;
79
80         instr = *((u4 *) _ss->srr0);
81         reg = (instr >> 16) & 31;
82         addr = gregs[reg];
83
84         if (addr == 0) {
85                 pv  = (u1 *) _ss->r13;
86                 sp  = (u1 *) _ss->r1;
87                 ra  = (u1 *) _ss->lr;              /* this is correct for leafs */
88                 xpc = (u1 *) _ss->srr0;
89
90                 _ss->r11 = (ptrint) stacktrace_hardware_nullpointerexception(pv, sp, ra, xpc);
91
92                 _ss->r12 = (ptrint) xpc;
93                 _ss->srr0 = (ptrint) asm_handle_exception;
94
95         } else {
96                 throw_cacao_exception_exit(string_java_lang_InternalError,
97                                            "Segmentation fault: 0x%08lx at 0x%08lx",
98                                            addr, _ss->srr0);
99         }
100 }
101
102
103 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
104 void thread_restartcriticalsection(ucontext_t *uc)
105 {
106         /* XXX set pc to restart address */
107 }
108 #endif
109
110
111 /*
112  * These are local overrides for various environment variables in Emacs.
113  * Please do not remove this and leave it at the end of the file, where
114  * Emacs will automagically detect them.
115  * ---------------------------------------------------------------------
116  * Local variables:
117  * mode: c
118  * indent-tabs-mode: t
119  * c-basic-offset: 4
120  * tab-width: 4
121  * End:
122  */