ab4583ef290d0f2c635747492a032c47ec357362
[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 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 <ucontext.h>
39
40 #include "vm/types.h"
41
42 #include "vm/jit/powerpc/linux/md-abi.h"
43
44 #include "vm/exceptions.h"
45 #include "vm/signallocal.h"
46 #include "vm/stringlocal.h"
47 #include "vm/jit/asmpart.h"
48 #include "vm/jit/stacktrace.h"
49
50
51 /* md_signal_handle_sigsegv ****************************************************
52
53    NullPointerException signal handler for hardware null pointer
54    check.
55
56 *******************************************************************************/
57
58 void md_signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
59 {
60         ucontext_t  *_uc;
61         mcontext_t  *_mc;
62         u4           instr;
63         s4           reg;
64         ptrint       addr;
65         u1          *pv;
66         u1          *sp;
67         u1          *ra;
68         u1          *xpc;
69
70         _uc = (ucontext_t *) _p;
71         _mc = _uc->uc_mcontext.uc_regs;
72
73         instr = *((u4 *) _mc->gregs[PT_NIP]);
74         reg = (instr >> 16) & 0x1f;
75         addr = _mc->gregs[reg];
76
77         if (addr == 0) {
78                 pv  = (u1 *) _mc->gregs[REG_PV];
79                 sp  = (u1 *) _mc->gregs[REG_SP];
80                 ra  = (u1 *) _mc->gregs[PT_LNK];         /* this is correct for leafs */
81                 xpc = (u1 *) _mc->gregs[PT_NIP];
82
83                 _mc->gregs[REG_ITMP1_XPTR] =
84                         (ptrint) stacktrace_hardware_nullpointerexception(pv, sp, ra, xpc);
85
86                 _mc->gregs[REG_ITMP2_XPC] = (ptrint) xpc;
87                 _mc->gregs[PT_NIP] = (ptrint) asm_handle_exception;
88
89         } else {
90                 throw_cacao_exception_exit(string_java_lang_InternalError,
91                                                                    "Segmentation fault: 0x%08lx at 0x%08lx",
92                                                                    addr, _mc->gregs[PT_NIP]);
93         }               
94 }
95
96
97 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
98 void thread_restartcriticalsection(ucontext_t *uc)
99 {
100         /* XXX set pc to restart address */
101 }
102 #endif
103
104
105 /*
106  * These are local overrides for various environment variables in Emacs.
107  * Please do not remove this and leave it at the end of the file, where
108  * Emacs will automagically detect them.
109  * ---------------------------------------------------------------------
110  * Local variables:
111  * mode: c
112  * indent-tabs-mode: t
113  * c-basic-offset: 4
114  * tab-width: 4
115  * End:
116  */