src/vm/jit/powerpc64/linux/md-os.c: Ported signal handlers to ppc64 ucontext.
[cacao.git] / src / vm / jit / powerpc64 / linux / md-os.c
1 /* src/vm/jit/powerpc64/linux/md-os.c - machine dependent PowerPC64 Linux 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 5249 2006-08-18 10:22:17Z tbfg $
32
33 */
34
35
36 #include "config.h"
37
38 #include <assert.h>
39 #include <ucontext.h>
40
41 #include "vm/types.h"
42
43 #include "vm/jit/powerpc64/linux/md-abi.h"
44
45 #if defined(ENABLE_THREADS)
46 # include "threads/native/threads.h"
47 #endif
48
49 #include "vm/exceptions.h"
50 #include "vm/signallocal.h"
51 #include "vm/stringlocal.h"
52 #include "vm/jit/asmpart.h"
53
54 #if defined(ENABLE_PROFILING)
55 # include "vm/jit/profile/profile.h"
56 #endif
57
58 #include "vm/jit/stacktrace.h"
59
60
61 /* md_signal_handler_sigsegv ***************************************************
62
63    NullPointerException signal handler for hardware null pointer
64    check.
65
66 *******************************************************************************/
67
68 void md_signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
69 {
70         ucontext_t  *_uc;
71         mcontext_t  *_mc;
72         u4           instr;
73         s4           reg;
74         ptrint       addr;
75         u1          *pv;
76         u1          *sp;
77         u1          *ra;
78         u1          *xpc;
79
80         _uc = (ucontext_t *) _p;
81         _mc = &(_uc->uc_mcontext);
82         
83
84         instr = *((u4 *) _mc->gp_regs[PT_NIP]);
85         reg = (instr >> 16) & 0x1f;
86         addr = _mc->gp_regs[reg];
87
88         if (addr == 0) {
89                 pv  = (u1 *) _mc->gp_regs[REG_PV];
90                 sp  = (u1 *) _mc->gp_regs[REG_SP];
91                 ra  = (u1 *) _mc->gp_regs[PT_LNK];         /* this is correct for leafs */
92                 xpc = (u1 *) _mc->gp_regs[PT_NIP];
93
94                 _mc->gp_regs[REG_ITMP1_XPTR] =
95                         (ptrint) stacktrace_hardware_nullpointerexception(pv, sp, ra, xpc);
96
97                 _mc->gp_regs[REG_ITMP2_XPC] = (ptrint) xpc;
98                 _mc->gp_regs[PT_NIP] = (ptrint) asm_handle_exception;
99
100         } else {
101                 throw_cacao_exception_exit(string_java_lang_InternalError,
102                                                                    "Segmentation fault: 0x%08lx at 0x%08lx",
103                                                                    addr, _mc->gp_regs[PT_NIP]);
104         }               
105 }
106
107
108 /* md_signal_handler_sigusr2 ***************************************************
109
110    Signal handler for profiling sampling.
111
112 *******************************************************************************/
113
114 void md_signal_handler_sigusr2(int sig, siginfo_t *siginfo, void *_p)
115 {
116         threadobject *tobj;
117         ucontext_t   *_uc;
118         mcontext_t   *_mc;
119         u1           *pc;
120
121         tobj = THREADOBJECT;
122
123         _uc = (ucontext_t *) _p;
124         _mc = &(_uc->uc_mcontext);
125
126         pc = (u1 *) _mc->gp_regs[PT_NIP];
127
128         tobj->pc = pc;
129 }
130
131
132 #if defined(ENABLE_THREADS)
133 void thread_restartcriticalsection(ucontext_t *_uc)
134 {
135         mcontext_t *_mc;
136         u1         *pc;
137         void       *critical;
138
139         _mc = &(_uc->uc_mcontext);
140
141         pc = (u1 *) _mc->gp_regs[PT_NIP];
142
143         critical = critical_find_restart_point(pc);
144
145         if (critical)
146                 _mc->gp_regs[PT_NIP] = (ptrint) critical;
147 }
148 #endif
149
150
151 /*
152  * These are local overrides for various environment variables in Emacs.
153  * Please do not remove this and leave it at the end of the file, where
154  * Emacs will automagically detect them.
155  * ---------------------------------------------------------------------
156  * Local variables:
157  * mode: c
158  * indent-tabs-mode: t
159  * c-basic-offset: 4
160  * tab-width: 4
161  * End:
162  */