f8b0930e90e65004ff8350633ecac82a5470e9fe
[cacao.git] / src / vm / jit / alpha / linux / md-os.c
1 /* src/vm/jit/alpha/linux/md.c - machine dependent Alpha 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 <assert.h>
39 #include <ucontext.h>
40
41 #include "vm/types.h"
42
43 #include "vm/jit/alpha/md-abi.h"
44
45 #include "vm/exceptions.h"
46 #include "vm/signallocal.h"
47 #include "vm/stringlocal.h"
48 #include "vm/jit/asmpart.h"
49 #include "vm/jit/stacktrace.h"
50
51
52 /* md_signal_handler_sigsegv ***************************************************
53
54    NullPointerException signal handler for hardware null pointer
55    check.
56
57 *******************************************************************************/
58
59 void md_signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
60 {
61         ucontext_t  *_uc;
62         mcontext_t  *_mc;
63         u4           instr;
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;
72
73         instr = *((s4 *) (_mc->sc_pc));
74         addr = _mc->sc_regs[(instr >> 16) & 0x1f];
75
76         if (addr == 0) {
77                 pv  = (u1 *) _mc->sc_regs[REG_PV];
78                 sp  = (u1 *) _mc->sc_regs[REG_SP];
79                 ra  = (u1 *) _mc->sc_regs[REG_RA];       /* this is correct for leafs */
80                 xpc = (u1 *) _mc->sc_pc;
81
82                 _mc->sc_regs[REG_ITMP1_XPTR] =
83                         (ptrint) stacktrace_hardware_nullpointerexception(pv, sp, ra, xpc);
84
85                 _mc->sc_regs[REG_ITMP2_XPC] = (ptrint) xpc;
86                 _mc->sc_pc = (ptrint) asm_handle_exception;
87
88         } else {
89                 addr += (long) ((instr << 16) >> 16);
90
91                 throw_cacao_exception_exit(string_java_lang_InternalError,
92                                                                    "Segmentation fault: 0x%016lx at 0x%016lx\n",
93                                                                    addr, _mc->sc_pc);
94         }
95 }
96
97
98 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
99 void thread_restartcriticalsection(ucontext_t *_uc)
100 {
101         mcontext_t *_mc;
102         void       *critical;
103
104         _mc = &_uc->uc_mcontext;
105
106         critical = thread_checkcritical((void *) _mc->sc_pc);
107
108         if (critical)
109                 _mc->sc_pc = (ptrint) critical;
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  */