* src/vm/jit/powerpc/linux/md-os.c (thread_restartcriticalsection):
[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, 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 4966 2006-05-26 12:58:40Z 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/powerpc/darwin/md-abi.h"
45
46 #include "vm/exceptions.h"
47 #include "vm/global.h"
48 #include "vm/signallocal.h"
49 #include "vm/stringlocal.h"
50 #include "vm/jit/asmpart.h"
51 #include "vm/jit/stacktrace.h"
52
53
54 /* md_signal_handler_sigsegv ***************************************************
55
56    NullPointerException signal handler for hardware null pointer
57    check.
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         ppc_thread_state_t *_ss;
66         ptrint             *gregs;
67         u4                  instr;
68         s4                  reg;
69         ptrint              addr;
70         u1                 *pv;
71         u1                 *sp;
72         u1                 *ra;
73         u1                 *xpc;
74
75         _uc = (ucontext_t *) _p;
76         _mc = _uc->uc_mcontext;
77         _ss = &_mc->ss;
78
79         /* check for NullPointerException */
80
81         gregs = &_ss->r0;
82
83         instr = *((u4 *) _ss->srr0);
84         reg = (instr >> 16) & 31;
85         addr = gregs[reg];
86
87         if (addr == 0) {
88                 pv  = (u1 *) _ss->r13;
89                 sp  = (u1 *) _ss->r1;
90                 ra  = (u1 *) _ss->lr;              /* this is correct for leafs */
91                 xpc = (u1 *) _ss->srr0;
92
93                 _ss->r11 =
94                         (ptrint) stacktrace_hardware_nullpointerexception(pv, sp, ra, xpc);
95
96                 _ss->r12 = (ptrint) xpc;
97                 _ss->srr0 = (ptrint) asm_handle_exception;
98
99         } else {
100                 throw_cacao_exception_exit(string_java_lang_InternalError,
101                                            "Segmentation fault: 0x%08lx at 0x%08lx",
102                                            addr, _ss->srr0);
103         }
104 }
105
106
107 #if defined(ENABLE_THREADS)
108 void thread_restartcriticalsection(ucontext_t *_uc)
109 {
110         mcontext_t          _mc;
111         ppc_thread_state_t *_ss;
112         void               *critical;
113
114         _mc = _uc->uc_mcontext;
115         _ss = &_mc->ss;
116
117         critical = critical_find_restart_point((void *) _ss->srr0);
118
119         if (critical)
120                 _ss->srr0 = (ptrint) critical;
121 }
122 #endif
123
124
125 /*
126  * These are local overrides for various environment variables in Emacs.
127  * Please do not remove this and leave it at the end of the file, where
128  * Emacs will automagically detect them.
129  * ---------------------------------------------------------------------
130  * Local variables:
131  * mode: c
132  * indent-tabs-mode: t
133  * c-basic-offset: 4
134  * tab-width: 4
135  * End:
136  */