09befa5b8a44dc6423f6b3892a144773ea859bd7
[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 4326 2006-01-20 13:25:24Z 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/signallocal.h"
48 #include "vm/stringlocal.h"
49 #include "vm/jit/asmpart.h"
50 #include "vm/jit/stacktrace.h"
51
52
53 /* md_signal_handler_sigsegv ***************************************************
54
55    NullPointerException signal handler for hardware null pointer
56    check.
57
58 *******************************************************************************/
59
60 void md_signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
61 {
62         ucontext_t         *_uc;
63         mcontext_t          _mc;
64         ppc_thread_state_t *_ss;
65         ptrint             *gregs;
66         u4                  instr;
67         s4                  reg;
68         ptrint              addr;
69         u1                 *pv;
70         u1                 *sp;
71         u1                 *ra;
72         u1                 *xpc;
73
74         _uc = (ucontext_t *) _p;
75         _mc = _uc->uc_mcontext;
76         _ss = &_mc->ss;
77
78         /* check for NullPointerException */
79
80         gregs = &_ss->r0;
81
82         instr = *((u4 *) _ss->srr0);
83         reg = (instr >> 16) & 31;
84         addr = gregs[reg];
85
86         if (addr == 0) {
87                 pv  = (u1 *) _ss->r13;
88                 sp  = (u1 *) _ss->r1;
89                 ra  = (u1 *) _ss->lr;              /* this is correct for leafs */
90                 xpc = (u1 *) _ss->srr0;
91
92                 _ss->r11 =
93                         (ptrint) stacktrace_hardware_nullpointerexception(pv, sp, ra, xpc);
94
95                 _ss->r12 = (ptrint) xpc;
96                 _ss->srr0 = (ptrint) asm_handle_exception;
97
98         } else {
99                 throw_cacao_exception_exit(string_java_lang_InternalError,
100                                            "Segmentation fault: 0x%08lx at 0x%08lx",
101                                            addr, _ss->srr0);
102         }
103 }
104
105
106 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
107 void thread_restartcriticalsection(ucontext_t *uc)
108 {
109         /* XXX set pc to restart address */
110 }
111 #endif
112
113
114 /*
115  * These are local overrides for various environment variables in Emacs.
116  * Please do not remove this and leave it at the end of the file, where
117  * Emacs will automagically detect them.
118  * ---------------------------------------------------------------------
119  * Local variables:
120  * mode: c
121  * indent-tabs-mode: t
122  * c-basic-offset: 4
123  * tab-width: 4
124  * End:
125  */