343a5b666360f2cafd54f6d3cbb25c0535d30804
[cacao.git] / src / vm / jit / i386 / linux / md-os.c
1 /* src/vm/jit/i386/linux/md-os.c - machine dependent i386 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 3759 2005-11-23 00:47:27Z twisti $
32
33 */
34
35
36 #define _GNU_SOURCE                   /* include REG_ defines from ucontext.h */
37
38 #include <ucontext.h>
39
40 #include "config.h"
41 #include "vm/types.h"
42
43 #include "vm/exceptions.h"
44 #include "vm/options.h"
45 #include "vm/stringlocal.h"
46 #include "vm/jit/asmpart.h"
47 #include "vm/jit/stacktrace.h"
48
49
50 /* signal_handler_sigsegv ******************************************************
51
52    NullPointerException signal handler for hardware null pointer check.
53
54 *******************************************************************************/
55
56 void signal_handler_sigsegv(int sig, siginfo_t *siginfo, void *_p)
57 {
58         ucontext_t *_uc;
59         mcontext_t *_mc;
60         u1         *sp;
61         u1         *ra;
62         u1         *xpc;
63
64         _uc = (ucontext_t *) _p;
65         _mc = &_uc->uc_mcontext;
66
67         sp  = (u1 *) _mc->gregs[REG_ESP];
68         xpc = (u1 *) _mc->gregs[REG_EIP];
69         ra  = xpc;                          /* return address is equal to xpc     */
70
71         _mc->gregs[REG_EAX] =
72                 (ptrint) stacktrace_hardware_nullpointerexception(NULL, sp, ra, xpc);
73
74         _mc->gregs[REG_ECX] = (ptrint) xpc;                      /* REG_ITMP2_XPC */
75         _mc->gregs[REG_EIP] = (ptrint) asm_handle_exception;
76 }
77
78
79 /* signal_handler_sigfpe *******************************************************
80
81    ArithmeticException signal handler for hardware divide by zero check.
82
83 *******************************************************************************/
84
85 void signal_handler_sigfpe(int sig, siginfo_t *siginfo, void *_p)
86 {
87         ucontext_t *_uc;
88         mcontext_t *_mc;
89         u1         *sp;
90         u1         *ra;
91         u1         *xpc;
92
93         _uc = (ucontext_t *) _p;
94         _mc = &_uc->uc_mcontext;
95
96         sp  = (u1 *) _mc->gregs[REG_ESP];
97         xpc = (u1 *) _mc->gregs[REG_EIP];
98         ra  = xpc;                          /* return address is equal to xpc     */
99
100         _mc->gregs[REG_EAX] =
101                 (ptrint) stacktrace_hardware_arithmeticexception(NULL, sp, ra, xpc);
102
103         _mc->gregs[REG_ECX] = (ptrint) xpc;                      /* REG_ITMP2_XPC */
104         _mc->gregs[REG_EIP] = (ptrint) asm_handle_exception;
105 }
106
107
108 #if defined(USE_THREADS) && defined(NATIVE_THREADS)
109 void thread_restartcriticalsection(ucontext_t *uc)
110 {
111         void *critical;
112
113         critical = thread_checkcritical((void *) uc->uc_mcontext.gregs[REG_EIP]);
114
115         if (critical)
116                 uc->uc_mcontext.gregs[REG_EIP] = (ptrint) critical;
117 }
118 #endif
119
120
121 /*
122  * These are local overrides for various environment variables in Emacs.
123  * Please do not remove this and leave it at the end of the file, where
124  * Emacs will automagically detect them.
125  * ---------------------------------------------------------------------
126  * Local variables:
127  * mode: c
128  * indent-tabs-mode: t
129  * c-basic-offset: 4
130  * tab-width: 4
131  * End:
132  */