* src/vm/jit/i386/codegen.h (vm/jit/i386/emit.h): Added.
[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, 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 5069 2006-07-03 13:45:15Z 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 /* md_signal_handler_sigusr2 ***************************************************
99
100    Signal handler for profiling sampling.
101
102 *******************************************************************************/
103
104 void md_signal_handler_sigusr2(int sig, siginfo_t *siginfo, void *_p)
105 {
106         threadobject *tobj;
107         ucontext_t   *_uc;
108         mcontext_t   *_mc;
109         u1           *pc;
110
111         tobj = THREADOBJECT;
112
113         _uc = (ucontext_t *) _p;
114         _mc = &_uc->uc_mcontext;
115
116         pc = (u1 *) _mc->sc_pc;
117
118         tobj->pc = pc;
119 }
120
121
122 #if defined(ENABLE_THREADS)
123 void thread_restartcriticalsection(ucontext_t *_uc)
124 {
125         mcontext_t *_mc;
126         u1         *pc;
127         u1         *npc;
128
129         _mc = &_uc->uc_mcontext;
130
131         pc = (u1 *) _mc->sc_pc;
132
133         npc = critical_find_restart_point(pc);
134
135         if (npc != NULL)
136                 _mc->sc_pc = (ptrint) npc;
137 }
138 #endif
139
140
141 /*
142  * These are local overrides for various environment variables in Emacs.
143  * Please do not remove this and leave it at the end of the file, where
144  * Emacs will automagically detect them.
145  * ---------------------------------------------------------------------
146  * Local variables:
147  * mode: c
148  * indent-tabs-mode: t
149  * c-basic-offset: 4
150  * tab-width: 4
151  * End:
152  */